/* ======================================================
VIDA PLENA — LANDING V2 ORIENTADA A CONVERSIÓN
====================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#F7F4EF;
    color:#243126;
    line-height:1.7;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    border:none;
    background:none;
    cursor:pointer;
    font:inherit;
}

ul{
    list-style:none;
}

:root{
    --background:#F7F4EF;
    --white:#FFFFFF;
    --green:#31493C;
    --green-dark:#243126;
    --green-soft:#3D5948;
    --gold:#C6A15B;
    --gold-light:#E7C98A;
    --text:#243126;
    --muted:#6F746E;
    --line:#E8E2D8;
    --blue-soft:#EEF3FF;
    --radius:22px;
    --transition:.35s ease;
    --shadow:0 18px 45px rgba(0,0,0,.08);
    --container:1240px;
}

.site{
    overflow:hidden;
}

.container{
    width:min(92%,var(--container));
    margin:auto;
}

.container.narrow{
    max-width:840px;
}

section{
    padding:110px 0;
}

/* ======================================================
BUTTONS
====================================================== */

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 38px;
    border-radius:999px;
    background:var(--green);
    color:#FFF;
    font-weight:700;
    transition:var(--transition);
    box-shadow:0 16px 35px rgba(49,73,60,.18);
}

.btn-primary:hover{
    transform:translateY(-4px);
    background:var(--green-soft);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 34px;
    border-radius:999px;
    border:1px solid rgba(49,73,60,.18);
    color:var(--green);
    transition:var(--transition);
    background:#FFF;
}

.btn-secondary:hover{
    transform:translateY(-4px);
}

/* ======================================================
HEADER
====================================================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    transition:.35s;
}

.header.scrolled{
    background:rgba(247,244,239,.96);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(0,0,0,.05);
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:92px;
}

.logo{
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    color:var(--green-dark);
    letter-spacing:2px;
}

.header nav{
    display:flex;
    gap:34px;
}

.header nav a{
    color:var(--green-dark);
    transition:var(--transition);
    font-size:.95rem;
}

.header nav a:hover{
    color:var(--gold);
}

.header-button{
    padding:13px 28px;
    border-radius:999px;
    background:var(--green);
    color:#FFF;
    font-weight:600;
    transition:var(--transition);
}

.header-button:hover{
    transform:translateY(-3px);
}

/* ======================================================
HERO
====================================================== */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#ECE3D8;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("../assets/images/hero.jpg");
    background-size:cover;
    background-repeat:no-repeat;
    background-position:right center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(247,244,239,.98) 0%,
            rgba(247,244,239,.95) 30%,
            rgba(247,244,239,.72) 48%,
            rgba(247,244,239,.18) 70%,
            rgba(247,244,239,0) 82%
        );
    z-index:1;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero-grid{
    display:grid;
    grid-template-columns:560px 1fr;
    align-items:center;
    min-height:100vh;
}

.hero-copy{
    padding-top:70px;
}

.editorial-label{
    display:inline-flex;
    flex-direction:column;
    gap:5px;
    margin-bottom:25px;
    color:var(--gold);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.editorial-label small{
    color:var(--muted);
    letter-spacing:1px;
    font-size:.78rem;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(3.5rem,7vw,6rem);
    line-height:.92;
    color:var(--green-dark);
    margin-bottom:28px;
}

.hero-lead{
    font-size:1.12rem;
    color:var(--muted);
    max-width:535px;
    margin-bottom:25px;
}

.hero-benefits{
    display:flex;
    flex-wrap:wrap;
    gap:12px 22px;
    margin-bottom:28px;
}

.hero-benefits span{
    color:var(--green);
    font-size:.92rem;
    font-weight:600;
}

.hero-offer{
    display:flex;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
    padding:20px;
    max-width:570px;
    background:rgba(255,255,255,.72);
    border:1px solid rgba(49,73,60,.10);
    border-radius:20px;
    backdrop-filter:blur(10px);
    box-shadow:0 18px 50px rgba(0,0,0,.06);
}

.hero-offer > div{
    display:flex;
    flex-direction:column;
}

.hero-offer small{
    color:var(--gold);
    letter-spacing:2px;
    font-size:.7rem;
    font-weight:800;
}

.hero-offer strong{
    font-size:2rem;
    line-height:1.15;
    color:var(--green-dark);
}

.hero-offer span{
    color:var(--muted);
    font-size:.82rem;
}

.hero-offer .btn-primary{
    flex:1;
    min-width:190px;
}

.hero-note{
    color:var(--muted);
    font-size:.78rem;
    margin-top:10px;
}

.hero-scroll{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    color:var(--green);
    letter-spacing:2px;
    font-size:.75rem;
    text-transform:uppercase;
    z-index:5;
    opacity:.7;
}

/* ======================================================
SECTION TITLES
====================================================== */

.section-title{
    margin-bottom:60px;
}

.section-title.center{
    text-align:center;
}

.section-title span,
.transition > .container > span,
.last-page > .container > span{
    display:inline-block;
    margin-bottom:18px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:.78rem;
    color:var(--gold);
    font-weight:800;
}

.section-title h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.5rem,5vw,4.3rem);
    line-height:1.05;
    color:var(--green-dark);
    font-weight:600;
    margin-bottom:20px;
}

.section-title p{
    color:var(--muted);
    max-width:760px;
    margin:auto;
    font-size:1.05rem;
}

/* ======================================================
PROBLEM
====================================================== */

.problem{
    background:var(--background);
}

.problem-sales{
    padding-top:100px;
}

.problem-grid{
    display:grid;
    grid-template-columns:1fr 100px 1fr;
    gap:35px;
    align-items:center;
}

.problem-column,
.solution-column{
    background:#FFF;
    border-radius:24px;
    padding:42px;
    box-shadow:var(--shadow);
}

.problem-column h3,
.solution-column h3{
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    margin-bottom:24px;
}

.problem-column li,
.solution-column li{
    padding:16px 0;
    border-bottom:1px solid var(--line);
    color:var(--muted);
}

.problem-column li:last-child,
.solution-column li:last-child{
    border-bottom:none;
}

.divider{
    display:flex;
    justify-content:center;
    align-items:center;
}

.divider span{
    width:68px;
    height:68px;
    border-radius:50%;
    background:var(--green);
    color:#FFF;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.8rem;
}

/* ======================================================
TRANSITION
====================================================== */

.transition{
    background:#FFF;
    text-align:center;
}

.transition h2{
    margin:25px auto;
    max-width:820px;
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.8rem,5vw,4.6rem);
    line-height:1.06;
}

.transition p{
    color:var(--muted);
    max-width:760px;
    margin:auto;
}

/* ======================================================
BOOK
====================================================== */

.book{
    background:#FDFBF7;
}

.book-grid{
    display:grid;
    grid-template-columns:500px 1fr;
    gap:90px;
    align-items:center;
}

.book-cover{
    display:flex;
    justify-content:center;
}

.book-cover img{
    max-width:420px;
    filter:drop-shadow(0 40px 70px rgba(0,0,0,.18));
    transition:.45s;
}

.book-cover img:hover{
    transform:translateY(-10px);
}

.book-copy > span{
    color:var(--gold);
    letter-spacing:2px;
    font-weight:800;
    font-size:.82rem;
}

.book-copy h2{
    margin:18px 0 25px;
    font-size:3.3rem;
    font-family:'Cormorant Garamond',serif;
    line-height:1.05;
}

.book-copy p{
    color:var(--muted);
    margin-bottom:30px;
}

.book-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:17px 25px;
    margin-bottom:38px;
}

.book-highlights div{
    display:flex;
    gap:10px;
    align-items:flex-start;
}

.book-highlights strong{
    color:var(--gold);
}

/* ======================================================
INTERIOR
====================================================== */

.inside-book{
    background:#FFF;
    padding-bottom:30px;
}

.book-preview{
    background:#FFF;
    padding:90px 0;
}

.book-preview.light{
    background:#FBF9F5;
}

.preview-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.preview-grid.reverse{
    direction:rtl;
}

.preview-grid.reverse > *{
    direction:ltr;
}

.preview-image{
    display:flex;
    justify-content:center;
}

.preview-image img{
    width:100%;
    max-width:520px;
    border-radius:18px;
    box-shadow:0 30px 70px rgba(0,0,0,.14);
}

.preview-copy > span{
    color:var(--gold);
    font-size:.8rem;
    font-weight:800;
    letter-spacing:3px;
}

.preview-copy h2{
    margin:18px 0 24px;
    font-family:'Cormorant Garamond',serif;
    font-size:3.1rem;
    line-height:1.06;
}

.preview-copy p{
    color:var(--muted);
    margin-bottom:25px;
}

.preview-copy li{
    margin:13px 0;
    color:var(--green);
    font-weight:500;
}

/* ======================================================
CONTENT
====================================================== */

.guide-content{
    background:#FFF;
}

.content-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.content-card{
    background:#FFF;
    padding:36px;
    border-radius:22px;
    border:1px solid var(--line);
    transition:.35s;
}

.content-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--shadow);
}

.content-number{
    font-size:2.8rem;
    color:#DCCBAA;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:12px;
}

.content-card h3{
    font-size:1.35rem;
    margin-bottom:12px;
    font-family:'Cormorant Garamond',serif;
}

.content-card p{
    color:var(--muted);
}

/* ======================================================
OFFER
====================================================== */

.offer-section{
    background:#F4EFE7;
}

.offer-card{
    max-width:1040px;
    margin:auto;
    display:grid;
    grid-template-columns:1.4fr .8fr;
    background:#FFF;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.12);
    border:1px solid rgba(49,73,60,.08);
}

.offer-product{
    padding:55px;
    display:grid;
    grid-template-columns:220px 1fr;
    gap:40px;
    align-items:center;
}

.offer-image{
    display:flex;
    justify-content:center;
}

.offer-image img{
    max-width:210px;
    filter:drop-shadow(0 25px 45px rgba(0,0,0,.15));
}

.offer-label{
    color:var(--gold);
    font-size:.75rem;
    font-weight:800;
    letter-spacing:2px;
}

.offer-copy h3{
    font-family:'Cormorant Garamond',serif;
    font-size:2.4rem;
    line-height:1.05;
    margin:12px 0 18px;
}

.offer-copy p{
    color:var(--muted);
    margin-bottom:20px;
}

.offer-copy li{
    margin:8px 0;
    color:var(--green);
    font-weight:500;
}

.offer-price{
    background:var(--green);
    color:#FFF;
    padding:55px 35px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.offer-price small{
    color:var(--gold-light);
    letter-spacing:2px;
    font-size:.7rem;
    font-weight:800;
}

.offer-price strong{
    font-size:3.3rem;
    line-height:1.1;
    margin:8px 0;
}

.offer-price > span{
    opacity:.82;
    font-size:.85rem;
    margin-bottom:28px;
}

.btn-offer{
    width:100%;
    background:#FAF9F2;
    color:var(--green);
    box-shadow:none;
}

.btn-offer:hover{
    background:#FFF;
    color:var(--green);
}

.offer-price p{
    opacity:.65;
    font-size:.72rem;
    margin-top:13px;
}

/* ======================================================
COMPLEMENTOS
====================================================== */

.complementos{
    background:#FFF;
}

.complement-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.complement-card{
    position:relative;
    padding:32px;
    border:1px solid var(--line);
    border-radius:24px;
    background:#FFF;
    transition:.35s;
}

.complement-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--shadow);
}

.complement-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:var(--blue-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.65rem;
    margin-bottom:20px;
}

.complement-tag{
    color:var(--gold);
    letter-spacing:2px;
    font-size:.68rem;
    font-weight:800;
}

.complement-card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:1.8rem;
    line-height:1.08;
    margin:12px 0 15px;
}

.complement-card p{
    color:var(--muted);
    font-size:.94rem;
    margin-bottom:24px;
}

.complement-bottom{
    border-top:1px solid var(--line);
    padding-top:17px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.complement-bottom strong{
    color:var(--green);
    font-size:1.2rem;
}

.complement-bottom span{
    color:var(--muted);
    font-size:.72rem;
}

/* ======================================================
DIFFERENCE
====================================================== */

.difference{
    background:var(--background);
}

.difference-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.difference-column{
    background:#FFF;
    border-radius:24px;
    padding:42px;
    box-shadow:var(--shadow);
}

.difference-column h3{
    margin-bottom:25px;
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
}

.difference-column li{
    padding:16px 0;
    border-bottom:1px solid var(--line);
}

.difference-column li:last-child{
    border:none;
}

.negative{
    border-top:6px solid #C97B63;
}

.positive{
    border-top:6px solid var(--green);
}

/* ======================================================
FOR WHOM
====================================================== */

.for-whom{
    background:#FFF;
}

.audience-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.audience-grid article{
    padding:32px;
    border:1px solid var(--line);
    border-radius:22px;
    transition:.35s;
}

.audience-grid article:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.audience-header{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:12px;
}

.audience-header span{
    flex-shrink:0;
    color:var(--gold);
    font-size:2rem;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
    line-height:1;
}

.audience-header h3{
    margin:0;
    font-family:'Cormorant Garamond',serif;
    font-size:1.65rem;
}

.audience-grid p{
    color:var(--muted);
    margin:0;
}

/* ======================================================
GUARANTEE
====================================================== */

.guarantee{
    background:#31493C;
    color:#FFF;
}

.guarantee-box{
    display:grid;
    grid-template-columns:170px 1fr;
    gap:60px;
    align-items:center;
}

.guarantee-seal{
    width:170px;
    height:170px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.25);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.guarantee-seal span{
    font-size:4rem;
    font-family:'Cormorant Garamond',serif;
    line-height:1;
}

.guarantee-copy > span{
    color:#DDBE83;
    letter-spacing:2px;
    font-size:.8rem;
    font-weight:800;
}

.guarantee-copy h2{
    margin:18px 0 22px;
    font-family:'Cormorant Garamond',serif;
    font-size:3.5rem;
    line-height:1.05;
}

.guarantee-copy p{
    opacity:.88;
    max-width:760px;
}

/* ======================================================
FAQ
====================================================== */

.faq{
    background:#FFF;
}

.faq-list{
    max-width:900px;
    margin:auto;
}

.faq-item{
    border-bottom:1px solid var(--line);
}

.faq-item button{
    width:100%;
    padding:28px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    font-size:1.05rem;
    font-weight:600;
    color:var(--green);
}

.faq-item button::after{
    content:"+";
    font-size:2rem;
    font-weight:300;
}

.faq-item button.active{
    color:var(--gold);
}

.faq-item button.active::after{
    content:"−";
}

.faq-item div{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
    color:var(--muted);
    padding-right:35px;
}

/* ======================================================
FINAL CTA
====================================================== */

.last-page{
    position:relative;
    text-align:center;
    color:#FFF;
    background:#31493C;
    overflow:hidden;
}

.last-page::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("../assets/images/hero.jpg") center right/cover;
    opacity:.16;
}

.last-page .container{
    position:relative;
    z-index:2;
}

.last-page > .container > span{
    color:#E7C98A;
}

.last-page h2{
    margin:20px auto;
    max-width:800px;
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(3rem,6vw,5.4rem);
    line-height:1.02;
}

.last-page .container > p{
    max-width:700px;
    margin:0 auto 25px;
    opacity:.9;
}

.final-price{
    display:flex;
    flex-direction:column;
    align-items:center;
    margin:22px auto 25px;
}

.final-price small{
    color:#E7C98A;
    letter-spacing:2px;
    font-size:.72rem;
    font-weight:800;
}

.final-price strong{
    font-size:3rem;
    line-height:1.1;
    margin:5px 0;
}

.final-price span{
    opacity:.78;
    font-size:.82rem;
}

.btn-cta-final{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:340px;
    padding:20px 42px;
    border-radius:999px;
    background:#FAF9F2;
    color:#31493C;
    font-weight:800;
    box-shadow:0 18px 40px rgba(0,0,0,.16);
    transition:.35s;
}

.btn-cta-final:hover{
    background:#FFF;
    transform:translateY(-3px);
}

.final-note{
    font-size:.76rem !important;
    margin-top:13px !important;
    opacity:.62 !important;
}

/* ======================================================
DISCLAIMER
====================================================== */

.disclaimer{
    background:#F7F4EF;
    padding:55px 0;
}

.disclaimer p{
    max-width:920px;
    margin:auto;
    text-align:center;
    color:var(--muted);
    font-size:.86rem;
}

/* ======================================================
FOOTER
====================================================== */

.footer{
    background:#233126;
    color:#FFF;
    padding:65px 0;
}

.footer-brand{
    text-align:center;
}

.footer-brand h3{
    font-size:2.2rem;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:12px;
}

.footer-brand p{
    max-width:600px;
    margin:0 auto 40px;
    opacity:.75;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.footer-links a{
    opacity:.82;
    transition:.3s;
}

.footer-links a:hover{
    color:#E7C98A;
}

.footer-copy{
    text-align:center;
    opacity:.5;
    font-size:.86rem;
}

/* ======================================================
RESPONSIVE
====================================================== */

@media(max-width:1024px){

    .hero-grid,
    .book-grid,
    .preview-grid,
    .problem-grid,
    .difference-grid,
    .guarantee-box{
        grid-template-columns:1fr;
    }

    .hero-grid{
        min-height:100vh;
    }

    .hero-copy{
        max-width:650px;
    }

    .hero-photo{
        display:none;
    }

    .divider{
        display:none;
    }

    .content-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .complement-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .offer-card{
        grid-template-columns:1fr;
    }

    .offer-price{
        padding:45px 35px;
    }

    .offer-product{
        grid-template-columns:220px 1fr;
    }

    .header nav{
        display:none;
    }
}

@media(max-width:768px){

    section{
        padding:78px 0;
    }

    .container{
        width:min(92%,var(--container));
    }

    .header .container{
        height:74px;
    }

    .logo{
        font-size:1.7rem;
    }

    .header-button{
        padding:10px 17px;
        font-size:.78rem;
    }

    .hero{
        min-height:100vh;
        align-items:flex-start;
    }

    .hero::before{
        background-image:url("../assets/images/hero-mobile.webp");
        background-size:cover;
        background-position:center center;
        background-repeat:no-repeat;
    }

    .hero-overlay{
        background:
            linear-gradient(
                to bottom,
                rgba(247,244,239,.95) 0%,
                rgba(247,244,239,.86) 27%,
                rgba(247,244,239,.42) 52%,
                rgba(247,244,239,.05) 76%,
                rgba(247,244,239,0) 100%
            );
    }

    .hero-grid{
        display:flex;
        flex-direction:column;
        min-height:100vh;
    }

    .hero-copy{
        padding-top:0px;
        width:100%;
        max-width:100%;
    }

    .hero h1{
        font-size:3.15rem;
        line-height:.95;
        max-width:340px;
        margin-bottom:20px;
    }

    .hero-lead{
        max-width:330px;
        font-size:1rem;
        margin-bottom:18px;
    }

    .hero-benefits{
        gap:8px 14px;
        max-width:350px;
    }

    .hero-benefits span{
        font-size:.78rem;
    }

    .hero-offer{
        margin-top:260px;
        width:100%;
        max-width:100%;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:15px;
        padding:18px;
    }

    .hero-offer strong{
        font-size:1.8rem;
    }

    .hero-offer .btn-primary{
        width:100%;
    }

    .hero-scroll{
        display:none;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:2.65rem;
    }

    .problem-column,
    .solution-column,
    .difference-column{
        padding:28px;
    }

    .problem-grid{
        gap:18px;
    }

    .book-grid{
        gap:40px;
    }

    .book-cover img{
        width:100%;
        max-width:320px;
    }

    .book-copy h2{
        font-size:2.7rem;
    }

    .book-highlights{
        grid-template-columns:1fr;
    }

    .preview-grid.reverse{
        direction:ltr;
    }

    .preview-grid{
        gap:45px;
    }

    .preview-copy h2{
        font-size:2.65rem;
    }

    .content-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .content-card{
        padding:25px;
    }

    .complement-grid{
        grid-template-columns:1fr;
    }

    .complement-card{
        padding:27px;
    }

    .offer-product{
        grid-template-columns:1fr;
        padding:35px 25px;
        gap:25px;
    }

    .offer-image img{
        max-width:240px;
    }

    .offer-copy h3{
        font-size:2rem;
    }

    .offer-price{
        padding:38px 25px;
    }

    .offer-price strong{
        font-size:2.9rem;
    }

    .audience-grid{
        grid-template-columns:1fr;
    }

    .guarantee-box{
        gap:30px;
        text-align:center;
    }

    .guarantee-seal{
        margin:auto;
    }

    .guarantee-copy h2{
        font-size:2.8rem;
    }

    .faq-item button{
        font-size:.98rem;
        padding:23px 0;
    }

    .btn-cta-final{
        width:100%;
        min-width:0;
        padding:18px 25px;
        font-size:.95rem;
    }

    .final-price strong{
        font-size:2.7rem;
    }

    .footer-links{
        gap:18px;
        font-size:.85rem;
    }
}
