@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root{
    --bg:#f6f9f7;
    --card:#ffffff;
    --text:#17211b;
    --muted:#748077;
    --line:#dfe7e2;
    --green:#3cab6f;
    --green-dark:#1f7549;
    --green-soft:#eaf7ef;
    --mint:#d8f2e2;
    --red:#e2575d;
    --red-soft:#fff1f2;
    --amber:#d79528;
    --amber-soft:#fff7e9;
    --shadow:0 14px 42px rgba(31,73,48,.07);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    min-height:100vh;
    background:var(--bg);
    color:var(--text);
    font-family:Manrope,system-ui,sans-serif;
}
body.modal-open{overflow:hidden}
a{color:inherit}
button,input,select{font:inherit}

.site-header{
    position:sticky;top:0;z-index:50;
    height:68px;
    display:flex;align-items:center;justify-content:space-between;
    padding:0 max(20px,calc((100vw - 1180px)/2));
    background:rgba(255,255,255,.95);
    border-bottom:1px solid var(--line);
    backdrop-filter:blur(10px);
}
.brand{
    text-decoration:none;
    font-size:20px;
    font-weight:800;
    color:var(--green-dark);
}
.brand-logo{
    display:inline-flex;
    align-items:center;
    height:44px;
    max-width:172px;
    overflow:hidden;
}
.brand-logo img{
    display:block;
    width:auto;
    height:32px;
    max-width:168px;
    object-fit:contain;
}
@media(max-width:560px){
    .brand-logo{max-width:145px;height:40px}
    .brand-logo img{height:28px;max-width:140px}
}
.member-nav{display:flex;align-items:center;gap:24px}
.member-nav a{
    text-decoration:none;
    color:#526057;
    font-size:13px;
    font-weight:700;
}
.member-nav a:hover{color:var(--green-dark)}
.logout-link{
    border:1px solid #cfe3d6;
    padding:8px 13px;
    border-radius:10px;
}

main{min-height:calc(100vh - 68px)}
.eyebrow{
    display:block;
    font-size:10px;
    letter-spacing:.14em;
    font-weight:800;
    color:var(--green-dark);
}
h1,h2,h3,p{margin-top:0}
h1{font-size:34px;letter-spacing:-.04em;line-height:1.15}
h2{font-size:20px;letter-spacing:-.025em}
p{color:var(--muted);line-height:1.55}

.btn,button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 18px;
    border:0;
    border-radius:13px;
    background:var(--green);
    color:#fff;
    font-weight:800;
    text-decoration:none;
    cursor:pointer;
}
.btn:hover,button:hover{filter:brightness(.98)}
.btn.ghost{
    background:#fff;
    color:var(--text);
    border:1px solid var(--line);
}
button:disabled{
    background:#eef2ef;
    color:#9ba49e;
    cursor:not-allowed;
}

.card,.panel-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow);
}

.notice{
    padding:13px 15px;
    border-radius:13px;
    font-size:13px;
}
.notice.ok,.notice.info{
    background:var(--green-soft);
    color:var(--green-dark);
}
.notice.bad{
    background:var(--red-soft);
    color:#c43f46;
}
.center{
    min-height:100vh;
    display:grid;
    place-items:center;
    padding:20px;
}
.upgrade-card{padding:28px;max-width:560px}

/* Existing landing/auth compatibility */
.hero{
    max-width:1180px;margin:auto;padding:90px 24px;
    display:grid;grid-template-columns:1.2fr .8fr;gap:70px;align-items:center
}
.hero h1{font-size:56px;line-height:1.05;margin:10px 0 20px}
.hero p{font-size:18px;max-width:650px}
.demo{
    background:#fff;border:1px solid var(--line);border-radius:24px;
    padding:24px;box-shadow:var(--shadow)
}
.demo strong{display:block;font-size:28px;margin:5px 0 18px}
.demo div{border:1px solid var(--line);border-radius:12px;padding:12px;margin-top:8px}
.steps{
    max-width:1180px;margin:auto;padding:0 24px 90px;
    display:grid;grid-template-columns:repeat(3,1fr);gap:14px
}
.steps article,.card{
    background:#fff;border:1px solid var(--line);border-radius:20px;
    padding:24px;box-shadow:var(--shadow)
}
.narrow{max-width:470px;margin:34px auto}
form{display:grid;gap:13px}
label{font-size:12px;font-weight:700}
input,select{
    width:100%;
    height:49px;
    border:1px solid #d8e2da;
    border-radius:12px;
    background:#fff;
    padding:0 12px;
    color:var(--text);
    outline:none;
}
input:focus,select:focus{
    border-color:#78c99b;
    box-shadow:0 0 0 3px rgba(60,171,111,.08)
}
.google{
    width:100%;
    background:#fff;
    color:#444;
    border:1px solid var(--line);
    margin:10px 0;
}

/* V2 questionnaire */
.questionnaire-shell{
    width:min(760px,calc(100% - 28px));
    margin:0 auto;
    padding:38px 0 80px;
}
.questionnaire-intro{
    text-align:center;
    max-width:620px;
    margin:0 auto 22px;
}
.questionnaire-intro h1{margin:7px 0 10px}
.questionnaire-intro p{margin:0}
.top-error{margin-bottom:16px}

#profileForm{
    display:block;
}

.panel-card{
    padding:26px;
    margin-bottom:24px;
}
.panel-title{
    display:flex;
    align-items:center;
    gap:12px;
    border-bottom:1px solid #edf1ee;
    padding-bottom:16px;
    margin-bottom:18px;
}
.panel-title h2{margin:0 0 3px}
.panel-title p{margin:0;font-size:12px}
.panel-icon{
    flex:0 0 38px;
    width:38px;height:38px;
    display:grid;place-items:center;
    border-radius:11px;
    background:var(--green-soft);
    color:var(--green-dark);
    font-size:20px;
    font-weight:800;
}
.panel-status{
    margin-left:auto;
    color:var(--green-dark);
    background:#f0faf4;
    border:1px solid #d9efdf;
    border-radius:999px;
    padding:6px 9px;
    font-size:10px;
    font-weight:800;
}
.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}
.form-grid label,.routine-fields label{
    display:grid;
    gap:7px;
}
.form-grid label span,.routine-fields label span,.field-label{
    font-size:12px;
    color:#445047;
    font-weight:700;
}
.form-grid small{color:#8b948e;font-weight:500}
.sex-selector{margin-top:16px}
.sex-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:9px;
    margin-top:8px;
}
.segmented-option{position:relative}
.segmented-option input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}
.segmented-option span{
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--line);
    border-radius:12px;
    background:#fff;
    color:#5a655e;
    cursor:pointer;
}
.segmented-option input:checked + span{
    background:var(--green);
    border-color:var(--green);
    color:#fff;
}
.secondary-action{
    width:100%;
    margin-top:18px;
    background:#eef9f2;
    border:1px solid #cce9d6;
    color:var(--green-dark);
}
.medical-note{
    margin:12px 0 0;
    font-size:10px;
    color:#8a948d;
}

.meal-card{scroll-margin-top:90px}
.meal-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    border-bottom:1px solid #edf1ee;
    padding-bottom:15px;
    margin-bottom:15px;
}
.meal-head h2{margin:0 0 4px}
.meal-head p{font-size:12px;margin:0}
.meal-count{
    color:#98a29b;
    font-size:12px;
}
.meal-ok .meal-count{color:var(--green-dark)}

.meal-validation{
    display:flex;
    flex-direction:column;
    gap:2px;
    margin-bottom:17px;
    padding:12px 14px;
    border:1px solid #ffb8bc;
    border-radius:12px;
    background:var(--red-soft);
    color:#d84c53;
    font-size:11px;
}
.meal-validation b{font-size:12px}
.meal-validation.ok{
    background:#edf9f1;
    border-color:#cae9d5;
    color:var(--green-dark);
}

.food-choice-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}
.food-choice{
    position:relative;
}
.food-choice input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}
.food-choice span{
    min-height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:8px 10px;
    border:1px solid var(--line);
    border-radius:13px;
    background:#fff;
    text-align:center;
    color:#56625a;
    font-size:11px;
    font-weight:600;
    cursor:pointer;
}
.food-choice span b{
    font-size:16px;
    font-weight:400;
}
.food-choice input:checked + span{
    background:#eef9f2;
    border-color:#70c493;
    color:#176c41;
    box-shadow:0 0 0 2px rgba(60,171,111,.06);
}

.optional-card{padding:0;overflow:hidden}
.optional-toggle{
    width:100%;
    min-height:74px;
    padding:0 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
    color:var(--text);
    border-radius:0;
}
.optional-toggle span{
    font-size:17px;
    font-weight:500;
}
.optional-toggle small{
    color:#8a948d;
    font-size:12px;
    font-weight:500;
}
.optional-toggle>b{
    width:30px;height:30px;
    border-radius:50%;
    background:#f0f3f1;
    display:grid;
    place-items:center;
    color:#829087;
    font-size:18px;
}
.optional-content{
    display:none;
    padding:0 22px 22px;
}
.optional-content.open{display:block}
.optional-content>p{font-size:11px}

.routine-fields{
    display:grid;
    gap:15px;
}
.offer-card{
    padding:22px 22px 18px;
    border:1px solid #dfe9e3;
    border-radius:24px;
    background:#ffffff;
    box-shadow:var(--shadow);
}
.offer-header h2{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.15;
}
.offer-proof{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
}
.offer-proof p{
    margin:0;
    font-size:13px;
    color:#627066;
}
.offer-proof p strong{
    color:#17211b;
}
.offer-avatars{
    display:flex;
    align-items:center;
}
.offer-avatar{
    width:28px;
    height:28px;
    border-radius:50%;
    border:2px solid #fff;
    margin-left:-8px;
    display:grid;
    place-items:center;
    font-size:11px;
    font-weight:800;
    color:#fff;
    background:linear-gradient(135deg,#88c9a4,#2da95f);
    box-shadow:0 6px 18px rgba(45,169,95,.18);
}
.offer-avatar:first-child{
    margin-left:0;
}
.offer-kicker{
    font-size:12px;
    letter-spacing:.12em;
    color:#9aa6a0;
    margin-bottom:12px;
}
.results-marquee{
    position:relative;
    display:flex;
    gap:12px;
    overflow:hidden;
    margin-bottom:18px;
    -webkit-mask-image:linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
            mask-image:linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.results-track{
    display:flex;
    gap:12px;
    min-width:max-content;
    flex-shrink:0;
    animation:resultsMarquee 30s linear infinite;
}
.results-marquee:hover .results-track{
    animation-play-state:paused;
}
@keyframes resultsMarquee{
    from{transform:translateX(0)}
    to{transform:translateX(calc(-100% - 12px))}
}
.result-slide{
    width:138px;
    height:170px;
    flex:0 0 138px;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #edf1ee;
    background:#f6faf7;
    display:grid;
    grid-template-columns:1fr 1fr;
}
.result-half{
    position:relative;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding:10px 8px;
    font-size:12px;
    font-weight:700;
    color:#fff;
}
.result-half span{
    background:rgba(23,33,27,.44);
    border:1px solid rgba(255,255,255,.2);
    border-radius:999px;
    padding:5px 9px;
    line-height:1;
    backdrop-filter:blur(4px);
}
.result-half.before{
    background:linear-gradient(180deg,#e0e6e2,#adbdb4);
}
.result-half.after{
    background:linear-gradient(180deg,#8bd0a4,#29a65d);
}
.offer-divider{
    height:1px;
    background:#edf1ee;
    margin:0 0 18px;
}
.offer-summary{
    display:grid;
    grid-template-columns:170px 1fr;
    gap:18px;
    align-items:center;
    margin-bottom:18px;
}
.offer-price{
    padding-right:18px;
    border-right:1px solid #edf1ee;
}
.offer-price span{
    display:block;
    font-size:12px;
    letter-spacing:.08em;
    color:#9aa6a0;
    margin-bottom:6px;
}
.offer-price strong{
    font-size:26px;
    line-height:1;
}
.offer-benefits{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:8px;
}
.offer-benefits li{
    position:relative;
    padding-left:18px;
    font-size:14px;
    color:#536159;
}
.offer-benefits li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#2ea95f;
    font-weight:800;
}
.offer-submit{
    width:100%;
    justify-content:center;
    min-height:54px;
    font-size:15px;
    border-radius:999px;
}
.offer-secure{
    margin:12px 0 0;
    text-align:center;
    font-size:12px;
    color:#9aa6a0;
}
.offer-social-foot{
    margin:16px 0 0;
    text-align:center;
    font-size:13px;
    color:#9aa6a0;
}
.offer-social-foot strong{
    color:#17211b;
}

@media(max-width:700px){
    .offer-card{
        padding:20px 16px 16px;
    }
    .offer-header h2{
        font-size:20px;
    }
    .offer-summary{
        grid-template-columns:1fr;
        gap:14px;
    }
    .offer-price{
        border-right:0;
        border-bottom:1px solid #edf1ee;
        padding-right:0;
        padding-bottom:14px;
    }
    .result-slide{
        width:122px;
        height:160px;
        flex-basis:122px;
    }
}

/* BMI modal */
.modal-overlay{
    position:fixed;
    inset:0;
    z-index:100;
    display:none;
    place-items:center;
    padding:18px;
    background:rgba(23,33,27,.38);
    backdrop-filter:blur(5px);
}
.modal-overlay.open{display:grid}
.bmi-modal{
    position:relative;
    width:min(470px,100%);
    background:#fff;
    border-radius:26px;
    padding:30px;
    box-shadow:0 24px 80px rgba(23,33,27,.22);
    text-align:center;
}
.modal-close{
    position:absolute;
    top:13px;right:13px;
    width:34px;height:34px;min-height:34px;
    padding:0;
    border-radius:50%;
    background:#f0f4f1;
    color:#7c8880;
    font-size:20px;
}
.bmi-modal h2{margin:5px 0 18px}
.bmi-number{
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:6px;
}
.bmi-number strong{
    font-size:58px;
    line-height:1;
    letter-spacing:-.05em;
}
.bmi-number span{
    color:#9aa49d;
    margin-bottom:8px;
}
.bmi-scale-wrap{
    position:relative;
    margin:30px 8px 14px;
    padding-top:15px;
}
.bmi-scale{
    height:12px;
    display:grid;
    grid-template-columns:1fr 1.1fr .8fr 1.1fr;
    overflow:hidden;
    border-radius:999px;
}
.bmi-scale i{display:block}
.scale-blue{background:#58badd}
.scale-green{background:#43b66d}
.scale-amber{background:#f4b12b}
.scale-rose{background:#ec5170}
.bmi-marker{
    position:absolute;
    top:0;
    transform:translateX(-50%);
    transition:left .45s ease;
}
.bmi-marker:after{
    content:"";
    display:block;
    width:14px;height:14px;
    margin:8px auto 0;
    border:3px solid #fff;
    border-radius:50%;
    background:#253029;
    box-shadow:0 1px 5px rgba(0,0,0,.22);
}
.bmi-marker b{
    display:inline-block;
    padding:4px 6px;
    border-radius:7px;
    background:#24312a;
    color:#fff;
    font-size:11px;
}
.scale-labels{
    display:flex;
    justify-content:space-around;
    color:#9aa39d;
    font-size:9px;
    margin-top:5px;
}
.bmi-band-label{
    display:inline-flex;
    margin-top:4px;
    padding:6px 10px;
    border-radius:999px;
    background:#f3f6f4;
    color:#59665e;
    font-size:11px;
    font-weight:800;
}
.objective-summary{
    margin-top:20px;
    padding:17px;
    border-radius:16px;
    background:#f6faf7;
}
.objective-summary small{
    display:block;
    color:#8a948d;
    font-size:10px;
}
.objective-summary strong{
    display:block;
    margin:4px 0 7px;
    font-size:18px;
}
.objective-summary p{
    margin:0;
    font-size:12px;
}
.modal-continue{
    width:100%;
    margin-top:18px;
}
.modal-disclaimer{
    margin:10px 0 0;
    color:#9aa39d;
    font-size:9px;
}

/* Result */
.result-card-v2{padding:30px}
.result-highlight{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:12px;
    margin:20px 0;
}
.result-bmi,.result-goal{
    border:1px solid var(--line);
    border-radius:17px;
    padding:18px;
}
.result-bmi{
    background:#eff9f3;
}
.result-bmi small,.result-bmi span,.result-goal small{
    display:block;
    color:#7f8982;
    font-size:10px;
}
.result-bmi strong{
    display:block;
    margin:5px 0;
    font-size:44px;
    color:var(--green-dark);
}
.result-goal strong{
    display:block;
    margin:5px 0 7px;
    font-size:20px;
}
.result-goal p{margin:0;font-size:11px}
.result-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:9px;
    margin:16px 0;
}
.result-grid div{
    border:1px solid var(--line);
    border-radius:14px;
    padding:13px;
}
.result-grid b,.result-grid span{display:block}
.result-grid b{font-size:22px}
.result-grid span{font-size:9px;color:var(--muted)}
.profile-facts{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
    margin-bottom:16px;
}
.profile-facts div{
    border-bottom:1px solid #edf1ee;
    padding:10px 2px;
}
.profile-facts span,.profile-facts strong{display:block}
.profile-facts span{font-size:9px;color:#89938c}
.profile-facts strong{margin-top:3px;font-size:11px}
.result-actions{
    display:flex;
    justify-content:flex-end;
    gap:9px;
    margin-top:17px;
}

/* Account */
.account-shell{
    width:min(940px,calc(100% - 32px));
    margin:0 auto;
    padding:42px 0 80px;
}
.account-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:18px;
}
.account-hero h1{margin:5px 0}
.account-hero p{margin:0}
.account-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}
.account-cards .panel-card{margin:0}
.account-facts{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin:16px 0;
}
.account-facts div{
    border:1px solid var(--line);
    border-radius:12px;
    padding:12px;
}
.account-facts span,.account-facts strong{display:block}
.account-facts span{font-size:9px;color:var(--muted)}
.account-facts strong{font-size:17px;margin-top:3px}
.text-link{
    color:var(--green-dark);
    font-size:11px;
    font-weight:800;
    text-decoration:none;
}
.plan-locked{background:linear-gradient(180deg,#fff,#f4faf6)}

.shake{animation:shake .45s ease}
@keyframes shake{
    20%{transform:translateX(-5px)}
    40%{transform:translateX(5px)}
    60%{transform:translateX(-3px)}
    80%{transform:translateX(3px)}
}

@media(max-width:780px){
    .hero{grid-template-columns:1fr;padding-top:50px}
    .hero h1{font-size:40px}
    .steps{grid-template-columns:1fr}
    .form-grid{grid-template-columns:1fr}
    .food-choice-grid{grid-template-columns:repeat(2,1fr)}
    .sex-grid{grid-template-columns:1fr}
    .finish-card{flex-direction:column;align-items:stretch}
    .finish-button{width:100%}
    .account-cards{grid-template-columns:1fr}
    .result-highlight{grid-template-columns:1fr}
}
@media(max-width:560px){
    .site-header{padding:0 14px}
    .member-nav{gap:11px}
    .member-nav a{font-size:11px}
    .questionnaire-shell{width:min(100% - 18px,760px);padding-top:24px}
    .panel-card{padding:18px;border-radius:18px}
    .questionnaire-intro h1{font-size:29px}
    .food-choice-grid{grid-template-columns:1fr 1fr;gap:7px}
    .food-choice span{font-size:10px}
    .meal-head{gap:10px}
    .result-grid{grid-template-columns:1fr 1fr}
    .profile-facts{grid-template-columns:1fr}
    .account-hero{flex-direction:column;align-items:flex-start}
    .bmi-modal{padding:25px 18px}
}


/* V2.1 — primeira aba mais limpa e legível */
.questionnaire-shell{padding-top:18px}

.form-grid label span,
.routine-fields label span,
.field-label{
    font-size:14px;
}

input,
select{
    font-size:15px;
    font-weight:600;
}

select{color:#17211b}

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

.segmented-option span{
    min-height:52px;
    font-size:15px;
    font-weight:700;
}

.secondary-action{
    min-height:52px;
    margin-top:20px;
    font-size:15px;
    border-radius:13px;
}

.body-panel{
    padding-bottom:22px;
}

@media(max-width:560px){
    .questionnaire-shell{padding-top:12px}

    input,
    select{
        font-size:16px;
    }

    .form-grid label span,
    .routine-fields label span,
    .field-label{
        font-size:13px;
    }

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

    .segmented-option span{
        min-height:50px;
        font-size:14px;
    }
}


/* V2.3 — página de escolha de planos */
.plans-page{
    width:min(600px,calc(100% - 28px));
    margin:0 auto;
    padding:26px 0 70px;
}

.plans-topbar{
    display:grid;
    grid-template-columns:44px 1fr auto;
    gap:10px;
    align-items:start;
    margin-bottom:24px;
}

.plans-back{
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    border:1px solid var(--line);
    border-radius:12px;
    background:#fff;
    text-decoration:none;
    font-size:20px;
}

.plans-heading{
    text-align:center;
}

.plans-heading h1{
    margin:0 0 3px;
    font-size:21px;
    letter-spacing:-.03em;
}

.plans-heading p{
    margin:0;
    font-size:11px;
}

.change-goal{
    min-height:40px;
    display:flex;
    align-items:center;
    color:var(--green-dark);
    text-decoration:none;
    font-size:12px;
    font-weight:800;
    white-space:nowrap;
}

.goal-pill{
    width:max-content;
    max-width:100%;
    margin:0 auto 30px;
    padding:9px 16px;
    display:flex;
    align-items:center;
    gap:7px;
    border:1px solid #c7e6d2;
    border-radius:999px;
    background:#eff9f3;
    color:var(--green-dark);
    font-size:13px;
}

.plan-list{
    display:grid;
    gap:22px;
}

.plan-card{
    position:relative;
    padding:28px 26px 22px;
    border:1px solid var(--line);
    border-radius:22px;
    background:#fff;
    box-shadow:var(--shadow);
    text-align:center;
}

.plan-card.recommended{
    border:2px solid var(--green);
    padding:27px 25px 21px;
}

.plan-badge{
    position:absolute;
    left:50%;
    top:-15px;
    transform:translateX(-50%);
    padding:7px 15px;
    border-radius:999px;
    background:var(--green);
    color:#fff;
    font-size:12px;
    font-weight:800;
    white-space:nowrap;
}

.plan-brand{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    margin:0 auto 12px;
    padding:0 12px;
    border-radius:10px;
    background:#f1faf4;
    color:var(--green-dark);
    font-size:16px;
    font-weight:800;
}

.plan-card h2{
    margin:0 0 6px;
    color:var(--green-dark);
    font-size:21px;
}

.plan-price{
    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:4px;
    margin-bottom:19px;
    color:#14983f;
}

.plan-price small{
    margin-top:7px;
    font-size:15px;
    font-weight:800;
}

.plan-price strong{
    font-size:34px;
    line-height:1;
    letter-spacing:-.04em;
}

.plan-features{
    width:min(370px,100%);
    margin:0 auto;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
    text-align:left;
}

.plan-features li{
    position:relative;
    padding-left:26px;
    color:#4d5951;
    font-size:14px;
}

.plan-features li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#20a34d;
    font-weight:900;
}

.plan-divider{
    height:1px;
    background:#edf1ee;
    margin:24px 0 16px;
}

.plan-button{
    width:100%;
    min-height:51px;
    border-radius:999px;
    font-size:15px;
}

.plans-note{
    margin:18px 0 0;
    text-align:center;
    color:#929c95;
    font-size:11px;
}

/* Checkout provisório */
.checkout-shell{
    width:min(540px,calc(100% - 28px));
    margin:0 auto;
    padding:42px 0 80px;
}

.checkout-card{
    text-align:center;
}

.checkout-back{
    display:block;
    width:max-content;
    margin:0 0 20px;
    color:#667269;
    font-size:12px;
    font-weight:700;
    text-decoration:none;
}

.checkout-card h1{
    margin:7px 0 20px;
}

.checkout-price{
    padding:18px;
    margin-bottom:18px;
    border:1px solid #d7ebdf;
    border-radius:17px;
    background:#f2faf5;
}

.checkout-price span,
.checkout-price strong{
    display:block;
}

.checkout-price span{
    color:#748078;
    font-size:11px;
}

.checkout-price strong{
    margin-top:4px;
    color:var(--green-dark);
    font-size:34px;
}

.checkout-disabled{
    width:100%;
    margin-top:15px;
}

@media(max-width:560px){
    .plans-page{
        width:min(100% - 18px,600px);
        padding-top:18px;
    }

    .plans-topbar{
        grid-template-columns:36px 1fr;
    }

    .plans-back{
        width:36px;
        height:36px;
    }

    .change-goal{
        grid-column:2;
        grid-row:2;
        justify-content:center;
        min-height:auto;
        margin-top:2px;
    }

    .plan-card{
        padding:26px 20px 20px;
    }

    .plan-card.recommended{
        padding:25px 19px 19px;
    }

    .plan-features li{
        font-size:13px;
    }
}


/* V2.4 — Checkout PIX / Cartão */
.payment-page{
    width:min(620px,calc(100% - 24px));
    margin:0 auto;
    padding:24px 0 70px;
    font-family:'Montserrat',sans-serif;
}

.payment-page *{
    font-family:'Montserrat',sans-serif;
}

.payment-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:18px;
}

.payment-back{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#3e4a43;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
}

.payment-secure-pill{
    display:inline-flex;
    align-items:center;
    gap:7px;
    min-height:34px;
    padding:0 13px;
    border-radius:999px;
    background:#e7f9ed;
    color:#087d36;
    font-size:13px;
    font-weight:600;
}

.payment-method-card{
    padding:14px;
    margin-bottom:18px;
    background:#fff;
    border:1px solid #e4e9e6;
    border-radius:16px;
    box-shadow:0 4px 16px rgba(24,55,34,.04);
}

.payment-method-card h1{
    margin:0 0 11px;
    text-align:center;
    font-size:14px;
    font-weight:500;
    letter-spacing:0;
}

.payment-tabs{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
}

.payment-tab{
    position:relative;
    min-height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    border:1.5px solid #dce3df;
    border-radius:10px;
    background:#fff;
    color:#15221a;
    font-size:15px;
    font-weight:700;
}

.payment-tab.active{
    background:#effbf3;
    border-color:#16b759;
    color:#112a1c;
    box-shadow:inset 0 0 0 1px #16b759;
}

.payment-tab-icon{
    color:#52b7a8;
    font-size:17px;
}

.payment-check{
    display:none;
    position:absolute;
    right:-1px;
    top:-8px;
    width:21px;
    height:21px;
    border-radius:50%;
    place-items:center;
    background:#16b759;
    color:#fff;
    font-size:12px;
}

.payment-tab.active .payment-check{
    display:grid;
}

.payment-box{
    padding:24px 20px 22px;
    background:#fff;
    border-radius:17px;
    box-shadow:0 8px 24px rgba(20,45,28,.09);
}

.payment-brand{
    margin:0 0 26px;
    text-align:center;
    color:#176d35;
    font-size:21px;
    font-weight:700;
}

.payment-brand::before{
    content:"✦";
    margin-right:4px;
    color:#2da858;
}

.payment-panel{
    display:none;
}

.payment-panel.active{
    display:block;
}

.payment-summary-row{
    min-height:58px;
    padding:0 13px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    border:1px solid #dfe5e1;
    border-radius:11px;
    background:#fbfcfb;
}

.payment-summary-row>div{
    display:flex;
    align-items:center;
    gap:10px;
}

.payment-summary-row strong{
    font-size:14px;
    font-weight:500;
}

.payment-summary-row>b{
    color:#0ba33e;
    font-size:18px;
    white-space:nowrap;
}

.round-icon{
    width:30px;
    height:30px;
    display:grid;
    place-items:center;
    border:1px solid #dfe5e1;
    border-radius:50%;
    background:#fff;
    color:#54b8a8;
    font-size:13px;
}

.payment-feature-list{
    display:grid;
    gap:10px;
    padding:19px 8px 21px;
    margin-top:15px;
    border-top:1px solid #edf0ee;
}

.payment-feature-list>div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#3d4942;
    font-size:14px;
}

.payment-feature-list span{
    width:18px;
    height:18px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#e8f8ed;
    color:#12a446;
    font-size:11px;
    font-weight:800;
}

.payment-label{
    display:grid;
    gap:10px;
    margin:12px 0 18px;
}

.payment-label>span{
    color:#101914;
    font-size:15px;
    font-weight:700;
}

.payment-input-wrap{
    position:relative;
}

.payment-input-wrap i{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    color:#9da6a0;
    font-style:normal;
}

.payment-input-wrap input{
    height:56px;
    padding-left:48px;
    border:1.5px solid #cfd8d3;
    border-radius:9px;
    background:#fff;
    font-size:15px;
    font-weight:500;
}

.card-data-title{
    display:flex;
    align-items:center;
    gap:10px;
    margin:22px 0 14px;
}

.card-data-title strong{
    font-size:17px;
}

.card-form{
    display:grid;
    gap:13px;
}

.card-form input{
    height:56px;
    padding:0 15px;
    border:1.5px solid #cfd8d3;
    border-radius:9px;
    background:#fff;
    font-size:16px;
    font-weight:500;
    letter-spacing:.02em;
}

.card-form input::placeholder{
    color:#9ba3aa;
    opacity:1;
}

.card-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:13px;
}

.payment-primary{
    width:100%;
    min-height:55px;
    margin-top:20px;
    border-radius:8px;
    background:#17a94c;
    color:#fff;
    font-size:16px;
    font-weight:700;
    box-shadow:0 8px 18px rgba(23,169,76,.18);
}

.payment-primary span{
    margin-left:8px;
}

.payment-notice{
    display:none;
    margin-top:12px;
    padding:11px 12px;
    border-radius:10px;
    background:#f6f8f7;
    color:#6f7972;
    font-size:11px;
    line-height:1.45;
}

.payment-notice.show{
    display:block;
}

.payment-bottom-secure{
    width:max-content;
    margin:22px auto 0;
    padding:10px 13px;
    display:flex;
    align-items:center;
    gap:7px;
    border-radius:10px;
    background:#fafbfa;
    color:#58645d;
    font-size:12px;
}

@media(max-width:560px){
    .payment-page{
        width:min(100% - 14px,620px);
        padding-top:16px;
    }

    .payment-topbar{
        padding:0 3px;
    }

    .payment-back{
        font-size:13px;
    }

    .payment-secure-pill{
        font-size:12px;
        padding:0 10px;
    }

    .payment-box{
        padding:22px 14px 18px;
    }

    .payment-summary-row strong{
        font-size:13px;
    }

    .payment-summary-row>b{
        font-size:17px;
    }

    .payment-label>span{
        font-size:14px;
    }
}


/* V3.1 — home mais organizada */
.landing-header .member-nav{margin-left:auto}
.landing-header .member-nav .btn{
    min-height:38px;
    padding:0 16px;
    border-radius:11px;
    color:#fff;
}
.landing-header .member-nav>a:not(.btn){font-size:13px}

.auth-separator{
    display:flex;
    align-items:center;
    gap:12px;
    margin:16px 0;
    color:#9aa39d;
    font-size:11px;
    font-weight:700;
}
.auth-separator::before,.auth-separator::after{
    content:"";
    height:1px;
    background:var(--line);
    flex:1;
}
.google-auth{
    width:100%;
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#fff;
    color:#30343a;
    border:1px solid #d9dfdb;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 1px 2px rgba(0,0,0,.02);
}
.google-auth:hover{
    background:#fbfcfb;
    border-color:#cdd7d0;
}
.google-auth.disabled{
    opacity:.55;
    cursor:not-allowed;
    pointer-events:none;
}
.auth-help{
    margin:12px 0 0;
    text-align:center;
    font-size:11px;
    color:#8b958e;
}

@media(max-width:720px){
    .site-header{height:62px;padding:0 14px}
    .landing-header .member-nav{gap:12px}
    .landing-header .member-nav>a:not(.btn){font-size:12px}
    .landing-header .member-nav .btn{min-height:36px;padding:0 13px}
    .hero{padding-top:58px}
}


/* V3.1.1 — Google G oficial */
.google-auth{
    min-height:48px;
    background:#fff;
    color:#1f1f1f;
    border:1px solid #747775;
    border-radius:12px;
    font-weight:600;
}
.google-auth:hover{
    background:#f8faff;
    border-color:#747775;
}
.google-g-logo{
    display:block;
    width:18px;
    height:18px;
    flex:0 0 18px;
    object-fit:contain;
}
