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

/* ─────────────────────────────────────────
   RESET & VARIÁVEIS
───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Cores */
    --verde:         #1a6b35;
    --verde-hover:   #22883f;
    --verde-light:   #e6f4eb;
    --verde-border:  #c3e0cd;
    --verde-muted:   #f0f9f3;
    --branco:        #ffffff;
    --fundo:         #f9fbfa;
    --texto:         #0d1f12;
    --texto-2:       #3d5c48;
    --texto-3:       #6b8a76;
    --borda:         #e2ede7;

    /* Tipografia */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Espaçamento */
    --s1: 4px;   --s2: 8px;   --s3: 12px;  --s4: 16px;
    --s5: 24px;  --s6: 32px;  --s7: 48px;  --s8: 64px;
    --s9: 80px;  --s10: 96px; --s11: 128px;

    /* Raios */
    --r-sm: 8px;
    --r:    14px;
    --r-lg: 22px;
    --r-xl: 32px;

    /* Sombras */
    --shadow-sm: 0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow:    0 4px 16px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
    --shadow-verde: 0 8px 32px rgba(26,107,53,.18);

    /* Transição */
    --t: .18s ease;

}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    background: var(--branco);
    color: var(--texto);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─────────────────────────────────────────
   LAYOUT BASE
───────────────────────────────────────── */
.wrap {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--s7);
}

.wrap-sm {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--s7);
}

section { padding: var(--s10) 0; }
section.compact { padding: var(--s8) 0; }
section.alt { background: var(--fundo); }
section.verde { background: var(--verde-muted); }

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 70px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--borda);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--s7);
    z-index: 1000;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    gap: 1px;
}

.nav-logo .label {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--verde-hover);
}

.nav-logo .brand {
    font-size: 1rem;
    font-weight: 800;
    color: var(--verde);
    letter-spacing: -.3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--s3);
    list-style: none;
}

.nav-menu a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--texto-2);
    transition: color var(--t);
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.ativo { color: var(--verde); }

.nav-btn {
    display: inline-flex;
    align-items: center;
    background: var(--verde);
    color: var(--branco) !important;
    font-size: .875rem !important;
    font-weight: 700 !important;
    padding: 10px 22px;
    border-radius: var(--r-xl);
    transition: background var(--t), transform var(--t), box-shadow var(--t) !important;
    box-shadow: var(--shadow-verde);
    white-space: nowrap;
}

.nav-btn:hover {
    background: var(--verde-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 36px rgba(26,107,53,.25) !important;
}

/* hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--s2);
    border-radius: var(--r-sm);
    transition: background var(--t);
}

.nav-hamburger:hover { background: var(--verde-light); }
.nav-hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--texto);
    border-radius: 2px;
    transition: .2s;
}

/* ─────────────────────────────────────────
   HERO (HOME)
───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px var(--s7) var(--s10);
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(26,107,53,.12) 0%, transparent 70%),
        linear-gradient(180deg, var(--verde-muted) 0%, var(--branco) 60%);
    position: relative;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    background: var(--branco);
    border: 1px solid var(--verde-border);
    color: var(--verde);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: var(--r-xl);
    margin-bottom: var(--s6);
    box-shadow: var(--shadow-sm);
}

.hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--verde);
    border-radius: 50%;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--texto);
    line-height: 1.1;
    letter-spacing: -1.5px;
    max-width: 780px;
    margin-bottom: var(--s5);
}

.hero h1 em {
    font-style: normal;
    color: var(--verde);
}

.hero .subtitulo {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--texto-2);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: var(--s7);
}

.hero-actions {
    display: flex;
    gap: var(--s4);
    flex-wrap: wrap;
    justify-content: center;
}

/* ─────────────────────────────────────────
   PAGE HERO (páginas internas)
───────────────────────────────────────── */
.page-hero {
    padding: 152px var(--s7) var(--s9);
    text-align: center;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(26,107,53,.09) 0%, transparent 70%),
        var(--verde-muted);
    border-bottom: 1px solid var(--verde-border);
}

.page-hero .eyebrow {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--verde-hover);
    margin-bottom: var(--s4);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--texto);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: var(--s4);
}

.page-hero .lead {
    font-size: 1.05rem;
    color: var(--texto-2);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ─────────────────────────────────────────
   BOTÕES
───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s2);
    font-family: var(--font);
    font-weight: 700;
    font-size: .92rem;
    border-radius: var(--r-xl);
    transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--verde);
    color: var(--branco);
    padding: 14px 32px;
    box-shadow: var(--shadow-verde);
}

.btn-primary:hover {
    background: var(--verde-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26,107,53,.28);
}

.btn-secondary {
    background: var(--branco);
    color: var(--verde);
    padding: 13px 30px;
    border-color: var(--verde-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--verde);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-ghost {
    background: transparent;
    color: var(--branco);
    padding: 13px 30px;
    border-color: rgba(255,255,255,.4);
}

.btn-ghost:hover {
    border-color: var(--branco);
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 40px; font-size: 1rem; }

.btn-full {
    width: 100%;
    padding: 14px;
}

/* ─────────────────────────────────────────
   CABEÇALHO DE SECÇÃO
───────────────────────────────────────── */
.section-head {
    text-align: center;
    margin-bottom: var(--s9);
}

.section-head .eyebrow {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--verde-hover);
    margin-bottom: var(--s3);
}

.section-head h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--texto);
    letter-spacing: -.8px;
    line-height: 1.15;
    margin-bottom: var(--s4);
}

.section-head p {
    font-size: 1rem;
    color: var(--texto-2);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--s5);
}

.card {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--r);
    padding: var(--s6) var(--s5);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--verde-border);
}

.card-icon {
    width: 48px; height: 48px;
    background: var(--verde-light);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: var(--s4);
}

.card h3 {
    font-size: .97rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: var(--s2);
    letter-spacing: -.2px;
}

.card p {
    font-size: .875rem;
    color: var(--texto-2);
    line-height: 1.65;
}

/* ─────────────────────────────────────────
   PASSOS
───────────────────────────────────────── */
.steps {
    display: flex;
    flex-direction: column;
    max-width: 680px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: var(--s6);
    padding: var(--s7) 0;
    border-bottom: 1px solid var(--borda);
    align-items: flex-start;
}

.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; padding-bottom: 0; }

.step-num {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--verde);
    color: var(--branco);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: -.3px;
    box-shadow: var(--shadow-verde);
}

.step-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: var(--s2);
    letter-spacing: -.3px;
}

.step-body p {
    font-size: .92rem;
    color: var(--texto-2);
    line-height: 1.75;
}

/* ─────────────────────────────────────────
   DESTAQUE (callout)
───────────────────────────────────────── */
.callout {
    background: var(--verde-light);
    border: 1px solid var(--verde-border);
    border-radius: var(--r);
    padding: var(--s5) var(--s6);
    font-size: .97rem;
    color: var(--texto);
    line-height: 1.75;
}

.callout strong { color: var(--verde); }

/* ─────────────────────────────────────────
   LISTAS CHECK / CROSS
───────────────────────────────────────── */
.check-list, .cross-list { list-style: none; display: flex; flex-direction: column; gap: var(--s3); }

.check-list li, .cross-list li {
    display: flex; gap: var(--s3);
    align-items: flex-start;
    font-size: .92rem;
    color: var(--texto-2);
    line-height: 1.6;
}

.check-list li::before {
    content: '✓';
    color: var(--verde);
    font-weight: 800;
    font-size: .85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cross-list li::before {
    content: '✕';
    color: #b8c9be;
    font-weight: 700;
    font-size: .8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─────────────────────────────────────────
   DOIS COLUNAS (auto colapsa em mobile)
───────────────────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
    align-items: start;
}

.two-col-60 {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--s8);
    align-items: start;
}

.col-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--verde-hover);
    margin-bottom: var(--s3);
}

.col-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--texto);
    letter-spacing: -.4px;
    margin-bottom: var(--s5);
    line-height: 1.2;
}

/* ─────────────────────────────────────────
   PREÇOS
───────────────────────────────────────── */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s5);
    max-width: 980px;
    margin: 0 auto;
}

.price-card {
    background: var(--branco);
    border: 1.5px solid var(--borda);
    border-radius: var(--r-lg);
    padding: var(--s7) var(--s6);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--verde);
    box-shadow: var(--shadow-verde);
    position: relative;
    overflow: hidden;
}

.price-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--verde), var(--verde-hover));
}

.price-badge {
    display: inline-block;
    background: var(--verde);
    color: var(--branco);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--r-xl);
    margin-bottom: var(--s4);
    align-self: flex-start;
}

.price-name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--texto-2);
    margin-bottom: var(--s3);
}

.price-value {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--texto);
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: var(--s2);
}

.price-value span {
    font-size: .9rem;
    font-weight: 400;
    color: var(--texto-3);
    letter-spacing: 0;
}

.price-desc {
    font-size: .85rem;
    color: var(--texto-2);
    line-height: 1.6;
    margin-bottom: var(--s5);
    padding-bottom: var(--s5);
    border-bottom: 1px solid var(--borda);
}

.price-features {
    list-style: none;
    flex: 1;
    margin-bottom: var(--s6);
}

.price-features li {
    display: flex;
    gap: var(--s3);
    align-items: flex-start;
    font-size: .85rem;
    color: var(--texto-2);
    padding: var(--s2) 0;
    line-height: 1.5;
}

.price-features li::before {
    content: '✓';
    color: var(--verde);
    font-weight: 800;
    font-size: .8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq { max-width: 720px; margin: 0 auto; }

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

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s4);
    padding: var(--s5) 0;
    cursor: pointer;
    user-select: none;
}

.faq-q h3 {
    font-size: .97rem;
    font-weight: 600;
    color: var(--texto);
    line-height: 1.4;
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--verde-light);
    border: 1px solid var(--verde-border);
    color: var(--verde);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    transition: transform var(--t), background var(--t);
}

.faq-item.aberto .faq-toggle {
    transform: rotate(45deg);
    background: var(--verde);
    color: var(--branco);
    border-color: var(--verde);
}

.faq-a {
    display: none;
    padding: 0 var(--s8) var(--s5) 0;
    font-size: .92rem;
    color: var(--texto-2);
    line-height: 1.8;
}

.faq-a a { color: var(--verde); text-decoration: underline; }
.faq-item.aberto .faq-a { display: block; }

/* ─────────────────────────────────────────
   CONTACTO
───────────────────────────────────────── */
.contact-info-item {
    margin-bottom: var(--s6);
}

.contact-info-item .label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--verde-hover);
    margin-bottom: var(--s2);
}

.contact-info-item p {
    font-size: .97rem;
    color: var(--texto);
    line-height: 1.5;
}

.form-group {
    margin-bottom: var(--s4);
}

.form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: var(--s2);
    letter-spacing: -.1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px var(--s4);
    border: 1.5px solid var(--borda);
    border-radius: var(--r-sm);
    font-size: .92rem;
    font-family: var(--font);
    color: var(--texto);
    background: var(--branco);
    outline: none;
    transition: border-color var(--t), box-shadow var(--t);
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--verde);
    box-shadow: 0 0 0 3px rgba(26,107,53,.1);
}

.form-group textarea { resize: vertical; min-height: 128px; }

.form-note {
    font-size: .8rem;
    color: var(--texto-3);
    margin-top: var(--s3);
}

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--verde) 0%, var(--verde-hover) 100%);
    padding: var(--s10) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: var(--branco);
    letter-spacing: -.8px;
    margin-bottom: var(--s4);
}

.cta-section p {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    max-width: 480px;
    margin: 0 auto var(--s7);
    line-height: 1.75;
}

.cta-actions { display: flex; gap: var(--s3); justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   PROSE (texto corrido)
───────────────────────────────────────── */
.prose { max-width: 680px; }
.prose h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--texto);
    letter-spacing: -.4px;
    margin: var(--s7) 0 var(--s3);
}
.prose h2:first-child { margin-top: 0; }
.prose p {
    font-size: .97rem;
    color: var(--texto-2);
    line-height: 1.8;
    margin-bottom: var(--s4);
}
.prose strong { color: var(--texto); font-weight: 600; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
    background: #0a1f10;
    color: rgba(255,255,255,.55);
    padding: var(--s9) 0 var(--s5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--s9);
    padding-bottom: var(--s8);
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: var(--s5);
}

.footer-brand .label {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6dbf85;
    display: block;
    margin-bottom: 2px;
}

.footer-brand .name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--branco);
    display: block;
    margin-bottom: var(--s4);
    letter-spacing: -.3px;
}

.footer-brand p { font-size: .85rem; line-height: 1.7; }

.footer-col h5 {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6dbf85;
    margin-bottom: var(--s4);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s3); }

.footer-col a {
    font-size: .875rem;
    color: rgba(255,255,255,.55);
    transition: color var(--t);
}

.footer-col a:hover { color: var(--branco); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s3);
    font-size: .78rem;
}

/* ─────────────────────────────────────────
   RESPONSIVO — TABLET (≤ 900px)
───────────────────────────────────────── */
@media (max-width: 900px) {
    .wrap, .wrap-sm { padding: 0 var(--s6); }

    .nav { padding: 0 var(--s6); }

    .hero, .page-hero { padding-left: var(--s6); padding-right: var(--s6); }

    .price-grid { grid-template-columns: 1fr 1fr; }
    .price-grid .price-card:last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; width: 100%; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s7); }
    .footer-brand { grid-column: 1 / -1; }
    .footer { padding: var(--s8) 0 var(--s5); }

    section { padding: var(--s9) 0; }
}

/* ─────────────────────────────────────────
   RESPONSIVO — LAPTOP/TABLET (≤ 1024px)
───────────────────────────────────────── */
@media (max-width: 1024px) {
    /* hamburger */
    .nav-hamburger { display: flex; }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--branco);
        flex-direction: column;
        align-items: stretch;
        padding: var(--s4) var(--s5) var(--s6);
        border-bottom: 1px solid var(--borda);
        box-shadow: var(--shadow-lg);
        gap: 0;
        z-index: 999;
    }

    .nav-menu.aberto { display: flex; }

    .nav-menu li { border-bottom: 1px solid var(--borda); }
    .nav-menu li:last-child { border-bottom: none; padding-top: var(--s3); }

    .nav-menu a {
        display: block;
        padding: var(--s4) 0;
        font-size: 1rem;
    }

    .nav-btn {
        display: block;
        text-align: center;
        padding: var(--s4) !important;
        border-radius: var(--r) !important;
    }
}

/* ─────────────────────────────────────────
   RESPONSIVO — MOBILE (≤ 640px)
───────────────────────────────────────── */
@media (max-width: 640px) {
    .wrap, .wrap-sm { padding: 0 var(--s5); }

    .nav { padding: 0 var(--s5); height: 62px; }

    /* ajusta dropdown para nav mais baixo */
    .nav-menu { top: 62px; }

    .hero { padding: 100px var(--s5) var(--s8); min-height: auto; }
    .hero h1 { letter-spacing: -.8px; }

    .page-hero { padding: 110px var(--s5) var(--s8); }

    section { padding: var(--s8) 0; }

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

    .two-col, .two-col-60 { grid-template-columns: 1fr; gap: var(--s7); }

    .price-grid { grid-template-columns: 1fr; }
    .price-grid .price-card:last-child { grid-column: auto; max-width: 100%; }

    .section-head { margin-bottom: var(--s7); }

    .footer-grid { grid-template-columns: 1fr; gap: var(--s6); }
    .footer-brand { grid-column: auto; }
    .footer { padding: var(--s8) 0 var(--s4); }
    .footer-bottom { justify-content: center; text-align: center; }

    .cta-section { padding: var(--s8) 0; }

    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; }
}

/* ─────────────────────────────────────────
   LOGIN NA NAV
───────────────────────────────────────── */
.nav-item-login {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
    list-style: none;
}
.nav-login-form {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-login-form input {
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--borda);
    border-radius: var(--r-sm);
    font-size: 13px;
    color: var(--texto);
    background: var(--fundo);
    outline: none;
    width: 148px;
    transition: border-color .18s;
    font-family: var(--font);
}
.nav-login-form input:focus {
    border-color: var(--verde);
    background: #fff;
}
.nav-login-form input::placeholder { color: var(--texto-3); }
.nav-login-form button {
    height: 36px;
    padding: 0 14px;
    background: var(--verde);
    color: #fff;
    border: none;
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s;
    white-space: nowrap;
    font-family: var(--font);
}
.nav-login-form button:hover { background: var(--verde-hover); }
.nav-login-form button:disabled { opacity: .6; cursor: not-allowed; }
.nav-login-erro {
    font-size: 12px;
    color: #ef4444;
    white-space: nowrap;
}
.nav-login-sessao {
    display: none;
    align-items: center;
    gap: 10px;
}
.nav-login-sessao .saudacao {
    font-size: 13px;
    color: var(--texto-2);
    white-space: nowrap;
    font-weight: 500;
}
.nav-login-sessao .saudacao span {
    color: var(--verde);
    font-weight: 700;
}
.btn-logout {
    height: 30px;
    padding: 0 12px;
    font-size: 12px;
    color: var(--texto-3);
    border: 1px solid var(--borda);
    border-radius: var(--r-sm);
    background: transparent;
    cursor: pointer;
    transition: all .18s;
    font-family: var(--font);
}
.btn-logout:hover {
    background: var(--fundo);
    color: var(--texto);
    border-color: var(--texto-3);
}
@media (max-width: 1100px) {
    .nav-login-form input { width: 110px; }
}
@media (max-width: 1024px) {
    .nav-item-login {
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        border-top: 1px solid var(--borda) !important;
        border-bottom: none !important;
        padding: var(--s4) 0 var(--s2) !important;
        gap: var(--s3);
    }
    .nav-item-login .nav-login-form {
        flex-direction: column;
        gap: var(--s3);
    }
    .nav-item-login .nav-login-form input {
        width: 100%;
        height: 44px;
        font-size: 1rem;
    }
    .nav-item-login .nav-login-form button {
        height: 44px;
        font-size: 1rem;
        width: 100%;
    }
    .nav-item-login .nav-login-sessao {
        flex-direction: row;
        justify-content: space-between;
    }
    .nav-item-login .nav-login-erro { white-space: normal; }
}

/* ─────────────────────────────────────────
   NAV DROPDOWN
───────────────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 5px;
    vertical-align: middle;
    opacity: .6;
    transition: transform var(--t);
}
.nav-dropdown.dropdown-aberto > a::after { transform: rotate(180deg); }

.nav-sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--r-sm);
    box-shadow: var(--shadow);
    min-width: 210px;
    list-style: none;
    padding: var(--s2) 0;
    z-index: 1001;
}

.nav-dropdown.dropdown-aberto .nav-sub { display: block; }

.nav-sub li { border-bottom: none !important; }

.nav-sub li a {
    display: block;
    padding: var(--s3) var(--s4);
    font-size: .875rem;
    color: var(--texto-2);
    transition: background var(--t), color var(--t);
}
.nav-sub li a:hover,
.nav-sub li a.ativo { background: var(--verde-muted); color: var(--verde); }

@media (max-width: 1024px) {
    .nav-dropdown .nav-sub {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--verde-border);
        border-radius: 0;
        padding: 0 0 0 var(--s4);
        margin: var(--s2) 0 0 var(--s3);
        top: auto; left: auto;
    }
    .nav-sub li a { padding: var(--s2) 0; font-size: .92rem; }
}
