/* ===== DESIGN SYSTEM — Páscoa Feliz ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@400;600;700&display=swap');

:root {
    /* Palette */
    --amarelo: #FFE08A;
    --rosa: #F6A6B2;
    --marrom: #5A3825;
    --creme: #FFF6EB;
    --rosa-dark: #e8899a;
    --marrom-light: #7a5640;
    --ouro: #C9A84C;
    --ouro-dark: #A78B3D;
    --branco: #FFFFFF;
    --sombra: rgba(90, 56, 37, .12);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-script: 'Dancing Script', cursive;

    /* Sizing */
    --max-w: 1140px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--marrom);
    background: var(--creme);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ===== UTILITIES ===== */
.container {
    width: 90%;
    max-width: var(--max-w);
    margin: 0 auto;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--amarelo), var(--rosa));
    color: var(--marrom);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 40px;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(246, 166, 178, .25);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--marrom);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--marrom-light);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.highlight {
    color: var(--rosa-dark);
}

.highlight-gold {
    color: var(--ouro);
}

/* ===== CTA BUTTON ===== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--marrom), var(--marrom-light));
    color: var(--amarelo);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 60px;
    letter-spacing: .5px;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 8px 30px rgba(90, 56, 37, .3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 224, 138, .2), transparent);
    transition: left .6s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(90, 56, 37, .35);
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn--rosa {
    background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
    color: var(--branco);
    box-shadow: 0 8px 30px rgba(246, 166, 178, .4);
}

.cta-btn--rosa:hover {
    box-shadow: 0 14px 40px rgba(246, 166, 178, .5);
}

.cta-btn-sub {
    display: block;
    font-size: .75rem;
    font-weight: 400;
    opacity: .85;
    margin-top: 4px;
    letter-spacing: 0;
    text-transform: none;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: all .35s ease;
    background: linear-gradient(135deg, var(--marrom), #3d2518);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid rgba(255, 224, 138, .2);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(90, 56, 37, .4);
    border-bottom-color: rgba(255, 224, 138, .35);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-family: var(--font-script);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--creme);
}

.header-logo span {
    background: linear-gradient(135deg, var(--amarelo), var(--rosa));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-cta {
    background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
    color: var(--branco);
    font-weight: 600;
    font-size: .85rem;
    padding: 10px 24px;
    border-radius: 40px;
    transition: all .3s ease;
    letter-spacing: .3px;
    box-shadow: 0 4px 16px rgba(246, 166, 178, .3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(246, 166, 178, .45);
}

/* ===== HERO ===== */
.hero {
    padding: 130px 0 60px;
    background: linear-gradient(180deg, var(--creme) 0%, rgba(255, 224, 138, .15) 50%, var(--creme) 100%);
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(246, 166, 178, .18), transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 224, 138, .2), transparent 70%);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--branco);
    border: 1.5px solid var(--rosa);
    color: var(--rosa-dark);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(246, 166, 178, .12);
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--rosa-dark), var(--ouro));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-line {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--rosa-dark);
    margin-top: 4px;
    -webkit-text-fill-color: var(--rosa-dark);
    background: none;
}

.hero-desc {
    font-size: 1.08rem;
    color: var(--marrom-light);
    margin-bottom: 32px;
    max-width: 580px;
    line-height: 1.8;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    font-size: .88rem;
    color: var(--marrom-light);
}

.hero-proof-avatars {
    display: flex;
}

.hero-proof-avatars span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--branco);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: var(--branco);
}

.hero-proof-avatars span:nth-child(1) {
    background: var(--rosa);
    margin-left: 0;
}

.hero-proof-avatars span:nth-child(2) {
    background: var(--ouro);
}

.hero-proof-avatars span:nth-child(3) {
    background: var(--marrom);
}

.hero-proof-avatars span:nth-child(4) {
    background: var(--rosa-dark);
}

/* Hero Visual (imagem + selo) */
.hero-visual {
    position: relative;
    animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(90, 56, 37, .18), 0 0 0 3px rgba(246, 166, 178, .15);
    position: relative;
}

.hero-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, transparent 50%, rgba(90, 56, 37, .1));
    pointer-events: none;
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s ease;
}

.hero-img-wrapper:hover img {
    transform: scale(1.03);
}

/* Selo Método LCO */
.hero-selo-lco {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: seloPopIn .6s ease .3s both;
}

@keyframes seloPopIn {
    0% { opacity: 0; transform: translateX(-50%) scale(.7); }
    60% { transform: translateX(-50%) scale(1.08); }
    100% { opacity: 1; transform: translateX(-50%) scale(1); }
}

.selo-lco-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--amarelo), #ffe9a3);
    border: 2.5px solid var(--ouro);
    border-radius: 50px;
    padding: 10px 22px;
    box-shadow: 0 8px 28px rgba(201, 168, 76, .3), 0 0 0 4px rgba(255, 224, 138, .2);
    white-space: nowrap;
}

.selo-lco-icon {
    flex-shrink: 0;
}

.selo-lco-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.selo-lco-text strong {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    color: var(--marrom);
    letter-spacing: .5px;
}

.selo-lco-text span {
    font-size: .68rem;
    font-weight: 600;
    color: var(--marrom-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* VSL Wrapper */
.vsl-section {
    padding: 40px 0 80px;
    background: var(--creme);
}

.vsl-wrapper {
    max-width: 780px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--marrom);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(90, 56, 37, .2);
}

.vsl-placeholder {
    text-align: center;
    color: var(--amarelo);
}

.vsl-play {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: var(--branco);
    box-shadow: 0 8px 30px rgba(246, 166, 178, .4);
    cursor: pointer;
    transition: all .3s ease;
}

.vsl-play:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(246, 166, 178, .5);
}

.vsl-placeholder p {
    font-size: .95rem;
    opacity: .8;
}

/* ===== EXPLICAÇÃO ===== */
.explicacao {
    padding: 100px 0;
    background: var(--branco);
    position: relative;
    overflow: hidden;
}

.explicacao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amarelo), var(--rosa), var(--amarelo));
}

.explicacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Diagramação e Hierarquia: Seção Explicação */
.explicacao-texto .section-badge {
    margin-bottom: 24px;
    display: inline-block;
}

.explicacao-texto .section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 24px;
    text-align: left;
}

.explicacao-texto .section-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 100%;
}


.explicacao-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 50px var(--sombra);
    position: relative;
}

.explicacao-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.explicacao-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(90, 56, 37, .08));
    pointer-events: none;
}

.explicacao-stats {
    display: flex;
    gap: 20px;
    margin-top: 36px;
}

.stat-card {
    flex: 1;
    background: var(--branco);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--amarelo), var(--rosa)) 1;
    border-radius: 0;
    padding: 28px 16px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

/* Use a wrapper approach for rounded border-gradient */
.stat-card {
    border: none;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(var(--branco), var(--branco)) padding-box,
        linear-gradient(135deg, var(--amarelo), var(--rosa)) border-box;
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(90, 56, 37, .08);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amarelo), var(--rosa));
    opacity: 0;
    transition: opacity .4s ease;
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 40px rgba(246, 166, 178, .2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--amarelo), var(--rosa));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-soft 2s ease-in-out infinite;
    box-shadow: 0 4px 14px rgba(246, 166, 178, .25);
}

.stat-card:nth-child(2) .stat-icon {
    animation-delay: .3s;
}

.stat-card:nth-child(3) .stat-icon {
    animation-delay: .6s;
}

@keyframes bounce-soft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--marrom), var(--rosa-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    line-height: 1.1;
}

.stat-card span {
    font-size: .82rem;
    font-weight: 600;
    color: var(--marrom-light);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.explicacao-list {
    margin-top: 28px;
}

.explicacao-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
}

.explicacao-list li .check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--amarelo), var(--rosa));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--marrom);
    margin-top: 2px;
}

.explicacao-list li p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.explicacao-list li p strong {
    color: var(--marrom);
}

/* ===== MÉTODO ===== */
.metodo {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--creme) 0%, rgba(255, 224, 138, .1) 100%);
}

.metodo-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
}

.metodo-steps .step-card {
    flex: 0 1 calc(25% - 12px);
    min-width: 220px;
}

.step-card {
    background: var(--branco);
    border-radius: var(--radius);
    padding: 22px 22px 22px 22px;
    text-align: left;
    box-shadow: 0 4px 20px var(--sombra);
    transition: all .35s ease;
    position: relative;
    border: 1px solid rgba(246, 166, 178, .1);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--amarelo), var(--rosa));
    opacity: 0;
    transition: opacity .35s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(90, 56, 37, .12);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: 12px;
    left: 14px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--amarelo), var(--rosa));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 700;
    color: var(--marrom);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px 40px;
    color: var(--marrom);
    line-height: 1.3;
}

.step-card p {
    font-size: .85rem;
    color: var(--marrom-light);
    line-height: 1.6;
    margin-left: 40px;
}

/* ===== O QUE APRENDE ===== */
.aprende {
    padding: 100px 0;
    background: var(--marrom);
    color: var(--creme);
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.aprende::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 224, 138, .06), transparent 70%);
    border-radius: 50%;
}

.aprende .section-badge {
    background: rgba(255, 224, 138, .15);
    color: var(--amarelo);
    border: 1px solid rgba(255, 224, 138, .2);
}

.aprende .section-title {
    color: var(--creme);
}

.aprende .section-subtitle {
    color: rgba(255, 246, 235, .7);
}

.aprende-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.aprende-item {
    background: rgba(255, 246, 235, .06);
    border: 1px solid rgba(255, 246, 235, .08);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all .3s ease;
    backdrop-filter: blur(4px);
}

.aprende-item:hover {
    background: rgba(255, 246, 235, .1);
    border-color: rgba(255, 224, 138, .2);
    transform: translateX(4px);
}

.aprende-item .icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--marrom), var(--marrom-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 4px 16px rgba(90, 56, 37, .3);
}

.aprende-item:hover .icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 6px 24px rgba(255, 224, 138, .3);
    background: linear-gradient(135deg, var(--rosa-dark), var(--marrom));
}

.aprende-item:nth-child(even) .icon {
    border-radius: 50%;
}

.aprende-item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--amarelo);
}

.aprende-item p {
    font-size: .88rem;
    color: rgba(255, 246, 235, .65);
    line-height: 1.6;
}

/* ===== BÔNUS ===== */
.bonus {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--creme) 0%, var(--branco) 100%);
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.bonus-card {
    background: var(--branco);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px var(--sombra);
    transition: all .35s ease;
    border: 1px solid rgba(246, 166, 178, .1);
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(90, 56, 37, .15);
}

.bonus-card-header {
    background: linear-gradient(135deg, var(--amarelo), var(--rosa));
    padding: 24px;
    text-align: center;
}

.bonus-card-header .bonus-number {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--marrom);
    margin-bottom: 4px;
}

.bonus-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--marrom);
}

.bonus-card-body {
    padding: 24px;
}

.bonus-card-body p {
    font-size: .9rem;
    color: var(--marrom-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.bonus-card-body .bonus-value {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 224, 138, .15);
    color: var(--marrom);
    font-weight: 600;
    font-size: .82rem;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 224, 138, .3);
}

.bonus-card-body .bonus-value s {
    opacity: .5;
    font-weight: 400;
}

/* ===== OFERTA ===== */
.oferta {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(255, 224, 138, .12), var(--creme));
    position: relative;
    overflow: hidden;
}

.oferta-card {
    max-width: 720px;
    margin: 0 auto;
    background:
        linear-gradient(var(--branco), var(--branco)) padding-box,
        linear-gradient(135deg, var(--amarelo), var(--rosa), var(--ouro)) border-box;
    border: 3px solid transparent;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(90, 56, 37, .1);
    transition: box-shadow .4s ease;
}

.oferta-card:hover {
    box-shadow: 0 28px 70px rgba(90, 56, 37, .16);
}

.oferta-header {
    background: linear-gradient(135deg, var(--marrom), #3d2518);
    padding: 36px 36px 32px;
    text-align: center;
    color: var(--creme);
    position: relative;
    overflow: hidden;
}

.oferta-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amarelo), var(--rosa), var(--amarelo));
}

.oferta-ribbon {
    position: absolute;
    top: 18px;
    right: -32px;
    background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
    color: var(--branco);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(246, 166, 178, .4);
}

.oferta-header h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.oferta-header p {
    font-size: .9rem;
    opacity: .75;
    letter-spacing: .5px;
}

.oferta-body {
    padding: 44px 40px;
}

.oferta-includes {
    margin-bottom: 32px;
}

.oferta-includes h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--marrom);
}

.oferta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(246, 166, 178, .1);
    transition: all .25s ease;
}

.oferta-item:last-child {
    border: none;
}

.oferta-item:hover {
    padding-left: 8px;
    background: rgba(255, 224, 138, .04);
}

.oferta-item .check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--amarelo), var(--rosa));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(246, 166, 178, .2);
}

.oferta-item span {
    font-size: .92rem;
    color: var(--marrom);
}

.oferta-item .de {
    text-decoration: line-through;
    opacity: .45;
    margin-left: auto;
    font-size: .8rem;
    white-space: nowrap;
}

.oferta-pricing {
    text-align: center;
    padding: 32px 0;
    border-top: 2px dashed rgba(246, 166, 178, .2);
    position: relative;
}

.oferta-pricing .preco-de {
    font-size: 1rem;
    color: var(--marrom-light);
    margin-bottom: 4px;
}

.oferta-pricing .preco-de s {
    font-size: 1.2rem;
}

.oferta-pricing .preco-por {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--marrom), var(--rosa-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    animation: glow-price 3s ease-in-out infinite;
}

@keyframes glow-price {

    0%,
    100% {
        filter: drop-shadow(0 0 0 transparent);
    }

    50% {
        filter: drop-shadow(0 4px 20px rgba(246, 166, 178, .3));
    }
}

.oferta-pricing .preco-por sup {
    font-size: 1.4rem;
    vertical-align: super;
}

.oferta-pricing .preco-por span {
    font-size: 1.8rem;
}

.oferta-pricing .parcelas {
    font-size: .92rem;
    color: var(--marrom-light);
    margin-bottom: 28px;
}

.oferta-pricing .cta-btn {
    width: 100%;
    justify-content: center;
}

.oferta-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: .8rem;
    color: var(--marrom-light);
    opacity: .7;
}

/* ===== GARANTIA ===== */
.garantia {
    padding: 100px 0;
    background: var(--branco);
    position: relative;
    overflow: hidden;
}

.garantia::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 224, 138, .08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.garantia-card {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 44px;
    align-items: center;
    background: linear-gradient(var(--branco), var(--branco)) padding-box,
        linear-gradient(135deg, var(--amarelo), var(--ouro), var(--rosa)) border-box;
    border: 3px solid transparent;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: 0 12px 50px rgba(201, 168, 76, .1);
    position: relative;
    overflow: hidden;
    transition: box-shadow .4s ease;
}

.garantia-card:hover {
    box-shadow: 0 20px 60px rgba(201, 168, 76, .18);
}

.garantia-selo {
    width: 170px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-selo 3s ease-in-out infinite;
}

@keyframes pulse-selo {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

.garantia-selo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    filter: drop-shadow(0 6px 20px rgba(201, 168, 76, .3));
}

.garantia-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--ouro), var(--amarelo));
    color: var(--marrom);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 14px;
}

.garantia-texto h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--marrom);
    line-height: 1.3;
}

.garantia-texto p {
    font-size: .95rem;
    color: var(--marrom-light);
    line-height: 1.8;
}

.garantia-lista {
    list-style: none;
    margin: 18px 0;
    padding: 0;
}

.garantia-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: .93rem;
    color: var(--marrom);
    line-height: 1.5;
}

.garantia-lista li svg {
    flex-shrink: 0;
}

.garantia-destaque {
    margin-top: 8px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    font-style: italic;
    color: var(--rosa-dark);
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(246, 166, 178, .08), rgba(255, 224, 138, .08));
    border-left: 4px solid var(--rosa);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--creme) 0%, rgba(246, 166, 178, .12) 50%, var(--creme) 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amarelo), var(--rosa), var(--amarelo));
}

.faq .section-title {
    color: var(--marrom);
}

.faq .section-subtitle {
    color: var(--marrom-light);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--branco);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(246, 166, 178, .08);
    border: 1px solid rgba(246, 166, 178, .12);
    transition: all .35s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(246, 166, 178, .15);
    border-left-color: var(--rosa);
    transform: translateX(4px);
}

.faq-item.active {
    border-left-color: var(--rosa);
    box-shadow: 0 8px 30px rgba(246, 166, 178, .18);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 28px;
    background: none;
    font-size: .98rem;
    font-weight: 600;
    color: var(--marrom);
    text-align: left;
    cursor: pointer;
    transition: color .3s ease;
    border: none;
    gap: 16px;
}

.faq-question:hover {
    color: var(--rosa-dark);
}

.faq-question .icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--branco);
    flex-shrink: 0;
    transition: all .35s ease;
    font-weight: 700;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--amarelo), var(--ouro));
    color: var(--marrom);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 28px 22px;
    font-size: .9rem;
    color: var(--marrom-light);
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
}

.faq-cta-text {
    font-size: .95rem;
    color: var(--marrom-light);
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    background: var(--marrom);
    text-align: center;
    color: rgba(255, 246, 235, .5);
    font-size: .82rem;
}

.footer a {
    color: var(--amarelo);
    transition: color .3s ease;
}

.footer a:hover {
    color: var(--rosa);
}

.footer p {
    margin-bottom: 6px;
}

/* ===== DECORATIVE ELEMENTS ===== */
.egg-decor {
    position: absolute;
    font-size: 2rem;
    opacity: .08;
    pointer-events: none;
    animation: floatSoft 4s ease-in-out infinite;
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* ===== PULSE FOR CTA ===== */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(90, 56, 37, .3);
    }

    50% {
        box-shadow: 0 8px 30px rgba(90, 56, 37, .3), 0 0 0 12px rgba(255, 224, 138, .15);
    }
}

.cta-pulse {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Prevent ANY horizontal overflow */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Ensure all text wraps properly */
h1,
h2,
h3,
h4,
p,
span,
strong,
em,
li,
a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 992px) {
    .hero {
        padding: 110px 0 50px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .hero-proof {
        justify-content: center;
    }

    .explicacao-grid {
        grid-template-columns: 1fr;
    }

    .metodo-steps .step-card {
        flex: 0 1 calc(50% - 8px);
    }

    .aprende-grid {
        grid-template-columns: 1fr;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 50px auto 0;
    }

    .garantia-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .garantia-selo {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {

    /* Hero */
    .hero {
        padding: 100px 0 40px;
    }

    .hero-visual {
        max-width: 320px;
    }

    .hero-selo-lco {
        bottom: -12px;
    }

    .selo-lco-inner {
        padding: 8px 16px;
        gap: 8px;
    }

    .selo-lco-text strong {
        font-size: .82rem;
    }

    .selo-lco-text span {
        font-size: .6rem;
    }

    .selo-lco-icon {
        width: 22px;
        height: 22px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .hero-desc {
        font-size: .95rem;
        line-height: 1.6;
        padding: 0 4px;
    }

    .hero-badge {
        font-size: .7rem;
        padding: 6px 14px;
        letter-spacing: 1px;
    }

    .hero-proof {
        flex-direction: column;
        gap: 8px;
        font-size: .82rem;
        text-align: center;
    }

    /* Section titles */
    .section-title {
        font-size: 1.5rem;
        line-height: 1.25;
        padding: 0 4px;
    }

    .section-subtitle {
        font-size: .95rem;
        padding: 0 4px;
    }

    .section-badge {
        font-size: .7rem;
        padding: 6px 16px;
        letter-spacing: 1px;
    }

    /* Stats */
    .explicacao-stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-card {
        padding: 20px 14px 16px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    /* Explicação list */
    .explicacao-list li {
        gap: 10px;
    }

    .explicacao-list li p {
        font-size: .9rem;
    }

    /* Método */
    .metodo-steps {
        flex-direction: column;
    }

    .metodo-steps .step-card {
        flex: 0 1 100%;
    }

    .step-card h3 {
        font-size: 1.1rem;
    }

    .step-card p {
        font-size: .9rem;
    }

    /* CTA buttons */
    .cta-btn {
        padding: 16px 28px;
        font-size: .95rem;
        text-align: center;
        max-width: 100%;
        flex-direction: column;
        word-break: break-word;
    }

    .cta-btn-sub {
        font-size: .7rem;
    }

    /* Aprende grid */
    .aprende-item {
        padding: 20px;
    }

    .aprende-item h4 {
        font-size: 1rem;
    }

    .aprende-item p {
        font-size: .88rem;
    }

    /* Bonus cards */
    .bonus-cards {
        max-width: 100%;
    }

    .bonus-card-header h3 {
        font-size: 1.05rem;
    }

    .bonus-card-body p {
        font-size: .88rem;
    }

    /* Oferta */
    .oferta-body {
        padding: 24px 16px;
    }

    .oferta-header h2 {
        font-size: 1.4rem;
    }

    .oferta-header p {
        font-size: .85rem;
        padding: 0 8px;
    }

    .oferta-item {
        flex-wrap: wrap;
        gap: 4px;
    }

    .oferta-item span:not(.check-icon):not(.de) {
        flex: 1 1 calc(100% - 30px);
        font-size: .85rem;
    }

    .oferta-pricing .preco-por {
        font-size: 2.2rem;
    }

    .oferta-pricing .preco-de {
        font-size: .9rem;
    }

    .oferta-pricing .parcelas {
        font-size: .82rem;
    }

    /* Garantia */
    .garantia-card {
        padding: 24px 20px;
        gap: 20px;
    }

    .garantia-selo {
        width: 100px;
        height: 100px;
    }

    .garantia-selo .dias {
        font-size: 1.6rem;
    }

    .garantia-texto h2 {
        font-size: 1.3rem;
    }

    .garantia-texto p {
        font-size: .9rem;
    }

    .garantia-lista li {
        font-size: .88rem;
    }

    .garantia-destaque {
        font-size: .9rem;
    }

    /* FAQ */
    .faq-q {
        font-size: .95rem;
        padding: 16px 18px;
    }

    .faq-a {
        font-size: .88rem;
        padding: 0 18px 16px;
    }

    /* Header */
    .header-logo {
        font-size: 1.2rem;
    }

    .header-cta {
        font-size: .78rem;
        padding: 8px 16px;
    }

    /* Footer */
    .footer {
        padding: 30px 0;
    }

    .footer p {
        font-size: .78rem;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.35rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .cta-btn {
        padding: 14px 20px;
        font-size: .88rem;
    }

    .oferta-header h2 {
        font-size: 1.2rem;
    }

    .oferta-pricing .preco-por {
        font-size: 2rem;
    }

    .stat-card {
        padding: 16px 10px 12px;
    }

    .stat-number {
        font-size: 1.3rem;
    }
}