/* Hara Contabilidade — Brand kit v1.0 (navy/creme/dourado, Cormorant + Montserrat) */
:root {
  --navy: #0D2B55;
  --navy-deep: #081D3A;
  --navy-mid: #1A3A6B;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07C2E;
  --cream: #F5F0E8;
  --cream-2: #EDE7D9;
  --cream-3: #E2DAC8;
  --black: #1A1A1A;
  --gray: #6B7280;
  --gray-soft: #9CA3AF;
  --light: #F9F7F3;
  --white: #FFFFFF;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--light); font-family: 'Montserrat', sans-serif; color: var(--black); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; font-weight: 400; }

/* === TRANSIÇÕES DE PÁGINA === */
/* Fade-in suave na entrada de cada página */
body {
  opacity: 0;
  animation: pageIn 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
/* Estado "saindo" — ativado por JS antes de navegar pra outra página */
body.is-leaving {
  opacity: 0;
  transition: opacity 0.35s ease-in;
  animation: none;
}
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Entrada elegante do conteúdo do hero (escalonada) */
.hero h1, .hero .eyebrow, .hero .subtitle, .hero .hero-cta, .hero .hero-meta {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero .eyebrow { animation-delay: 0.15s; }
.hero h1 { animation-delay: 0.25s; }
.hero .subtitle { animation-delay: 0.4s; }
.hero .hero-cta { animation-delay: 0.55s; }
.hero .hero-meta { animation-delay: 0.7s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Respeitar usuário que prefere reduzir animações (acessibilidade) */
@media (prefers-reduced-motion: reduce) {
  body, body.is-leaving,
  .hero h1, .hero .eyebrow, .hero .subtitle, .hero .hero-cta, .hero .hero-meta {
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-dark); }
img, svg { max-width: 100%; height: auto; display: block; }

/* TYPOGRAPHY UTILITIES */
.serif { font-family: 'Cormorant Garamond', 'Times New Roman', serif; }
.eyebrow { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.gold-rule { width: 48px; height: 1px; background: var(--gold); opacity: 0.7; margin: 16px 0; }
.gold-rule-center { margin: 16px auto; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* HEADER */
header.site-header { position: sticky; top: 0; z-index: 100; background: var(--navy); border-bottom: 2px solid var(--gold); box-shadow: 0 1px 0 rgba(201,168,76,0.15), 0 4px 24px rgba(8,29,58,0.18); transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1); will-change: transform; }
header.site-header.is-hidden { transform: translateY(-100%); }
@media (prefers-reduced-motion: reduce) { header.site-header { transition: none; } header.site-header.is-hidden { transform: none; } }
.site-header .row { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; margin-left: 40px; }
.logo:hover { text-decoration: none; }
.logo svg { width: 32px; height: 32px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--cream); letter-spacing: 1px; }
.logo-sub { font-size: 8px; letter-spacing: 4px; color: rgba(201,168,76,0.7); text-transform: uppercase; font-weight: 300; margin-top: 3px; }

nav.main-nav { display: flex; gap: 28px; align-items: center; }
nav.main-nav a { position: relative; color: rgba(245,240,232,0.65); font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; padding: 6px 0; transition: color .3s; }
nav.main-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .35s cubic-bezier(0.65, 0, 0.35, 1); }
nav.main-nav a:hover, nav.main-nav a.active { color: var(--gold); text-decoration: none; }
nav.main-nav a:hover::after, nav.main-nav a.active::after { transform: scaleX(1); }

.btn-wa { color: var(--navy) !important; background: var(--gold); padding: 11px 18px; border-radius: 2px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; transition: background .25s, transform .25s, box-shadow .25s; will-change: transform; }
.btn-wa svg { width: 14px; height: 14px; fill: var(--navy); flex-shrink: 0; }
.btn-wa:hover { background: var(--gold-light); text-decoration: none; color: var(--navy) !important; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(201,168,76,0.4); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: var(--cream); margin: 5px 0; transition: 0.3s; }

/* HERO */
.hero { position: relative; background: var(--navy-deep); padding: 100px 0 120px; color: var(--cream); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-corner { position: absolute; border: 1px solid rgba(201,168,76,0.15); width: 100px; height: 100px; }
.hero-corner.tl { top: 30px; left: 30px; border-right: none; border-bottom: none; }
.hero-corner.br { bottom: 30px; right: 30px; border-left: none; border-top: none; }
.hero-content { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; }
.hero .eyebrow { color: var(--gold); margin-bottom: 24px; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 60px; font-weight: 700; line-height: 1.05; color: var(--cream); letter-spacing: 0.5px; margin-bottom: 24px; }
.hero h1 em { font-style: italic; font-weight: 400; color: rgba(245,240,232,0.85); }
.hero .subtitle { font-size: 17px; color: rgba(245,240,232,0.7); line-height: 1.7; margin-bottom: 36px; max-width: 520px; font-weight: 300; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 36px; margin-top: 56px; padding-top: 36px; border-top: 1px solid rgba(201,168,76,0.15); }
.hero-meta-item { font-size: 11px; }
.hero-meta-label { letter-spacing: 3px; text-transform: uppercase; color: rgba(201,168,76,0.6); margin-bottom: 4px; font-weight: 600; }
.hero-meta-value { color: rgba(245,240,232,0.65); font-size: 14px; font-weight: 400; }
.hero-visual { position: relative; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%); border: 1px solid rgba(201,168,76,0.15); display: flex; align-items: center; justify-content: center; }
.hero-visual::before { content: ''; position: absolute; inset: 16px; border: 1px solid rgba(201,168,76,0.08); }
.hero-visual-inner { text-align: center; color: rgba(245,240,232,0.5); }
.hero-visual-inner svg { width: 100px; height: 100px; margin: 0 auto 16px; opacity: 0.8; }
.hero-visual-label { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: rgba(245,240,232,0.4); font-weight: 500; }

/* BUTTONS */
.btn-primary { background: var(--gold); color: var(--navy) !important; padding: 16px 28px; border: 1px solid var(--gold); border-radius: 2px; font-weight: 600; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: all .25s; }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); text-decoration: none; color: var(--navy) !important; }
.btn-secondary { background: transparent; color: var(--cream) !important; padding: 16px 28px; border: 1px solid rgba(245,240,232,0.4); border-radius: 2px; font-weight: 500; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: all .25s; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold) !important; text-decoration: none; }
.btn-dark { background: var(--navy); color: var(--cream) !important; padding: 16px 28px; border: 1px solid var(--navy); border-radius: 2px; font-weight: 500; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: all .25s; }
.btn-dark:hover { background: var(--gold); color: var(--navy) !important; border-color: var(--gold); text-decoration: none; }
.btn-outline { background: transparent; color: var(--navy) !important; padding: 16px 28px; border: 1px solid var(--navy); border-radius: 2px; font-weight: 500; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: all .25s; }
.btn-outline:hover { background: var(--navy); color: var(--cream) !important; text-decoration: none; }

/* SECTIONS */
section { padding: 100px 0; }
section.alt { background: var(--cream); }
section.dark { background: var(--navy); color: var(--cream); }
.section-header { text-align: center; margin-bottom: 64px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-header .eyebrow { display: inline-block; margin-bottom: 14px; }
.section-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
section.dark .section-header h2 { color: var(--cream); }
.section-header .gold-rule { margin: 20px auto; }
.section-header p { font-size: 17px; color: var(--gray); line-height: 1.8; max-width: 580px; margin: 0 auto; font-weight: 400; }
section.dark .section-header p { color: rgba(245,240,232,0.65); }

/* CARDS — PERFIS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.cards-grid.two { grid-template-columns: repeat(2, 1fr); }
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border: 1px solid var(--cream-2); padding: 36px 32px; border-radius: 2px; transition: all .3s; position: relative; }
.card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(13,43,85,0.08); }
.card-num { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 600; color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.card h3 { font-family: 'Cormorant Garamond', serif; color: var(--navy); font-size: 26px; font-weight: 600; margin-bottom: 12px; line-height: 1.2; }
.card p { color: var(--gray); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-weight: 400; }
.card .card-link { color: var(--gold-dark); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.card .card-link:hover { color: var(--navy); text-decoration: none; }

/* DIFERENCIAIS — CARDS COM ÍCONES */
.diff-card { background: transparent; padding: 24px 22px; border: 1px solid transparent; border-radius: 4px; position: relative; transition: border-color .4s ease, transform .4s ease, box-shadow .4s ease, background .4s ease; }
.diff-card::after { content: ''; position: absolute; left: 22px; bottom: 14px; width: 32px; height: 1px; background: var(--gold); opacity: 0.6; transform: scaleX(0.5); transform-origin: left center; transition: transform .5s cubic-bezier(0.65, 0, 0.35, 1), opacity .4s, width .4s; }
.diff-card:hover { background: var(--white); border-color: rgba(201,168,76,0.4); transform: translateY(-4px); box-shadow: 0 16px 38px rgba(13,43,85,0.08), 0 1px 0 rgba(201,168,76,0.2); }
section.alt .diff-card:hover { background: var(--white); }
.diff-card:hover::after { transform: scaleX(1); opacity: 1; width: 48px; }
.diff-card:hover .diff-icon { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,0.06); transform: scale(1.04); }
.diff-icon { width: 56px; height: 56px; background: var(--white); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--gold-dark); transition: color .35s, border-color .35s, transform .35s, background .35s; }
.diff-icon svg { width: 26px; height: 26px; }
section.alt .diff-icon { background: var(--cream-2); }
section.alt .diff-icon { background: var(--cream-2); }

/* PASSOS / STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 28px; left: 16.6%; right: 16.6%; height: 1px; background: var(--gold); opacity: 0.5; z-index: 0; transform: scaleX(0); transform-origin: left center; transition: transform 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.2s; }
.steps-grid.is-visible::before { transform: scaleX(1); }
.step { opacity: 0; transform: translateY(14px); transition: opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1), transform .8s cubic-bezier(0.22, 0.61, 0.36, 1); }
.steps-grid.is-visible .step { opacity: 1; transform: translateY(0); }
.steps-grid.is-visible .step:nth-child(2) { transition-delay: 0.45s; }
.steps-grid.is-visible .step:nth-child(3) { transition-delay: 0.9s; }
@media (prefers-reduced-motion: reduce) { .steps-grid::before, .step { transform: none !important; opacity: 1 !important; transition: none !important; } }
.step { position: relative; z-index: 1; text-align: center; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: var(--navy); color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; margin-bottom: 20px; border: 1px solid var(--gold); }
section.alt .step-num { background: var(--cream-2); color: var(--navy); border-color: var(--gold); }
.step h3 { font-family: 'Cormorant Garamond', serif; color: var(--navy); font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 240px; margin: 0 auto; }

/* PLANS / PRICING */
.plan { background: var(--white); border: 1px solid var(--cream-2); padding: 40px 36px; position: relative; transition: border-color .3s; }
.plan:hover { border-color: var(--gold); }
.plan-featured { border-color: var(--gold); border-width: 2px; }
.plan-featured::before { content: 'Mais escolhido'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); padding: 5px 16px; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.plan-name { font-family: 'Cormorant Garamond', serif; color: var(--navy); font-size: 28px; font-weight: 600; margin-bottom: 8px; }
.plan-desc { font-size: 14px; color: var(--gray); margin-bottom: 24px; line-height: 1.5; }
.plan-price { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 600; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.plan-price small { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 400; color: var(--gray); margin-left: 4px; }
.plan-prefix { font-size: 12px; color: var(--gold-dark); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; font-weight: 600; }
.plan-features { list-style: none; margin: 28px 0; }
.plan-features li { padding: 10px 0; padding-left: 22px; position: relative; font-size: 15px; color: var(--black); line-height: 1.5; border-bottom: 1px solid var(--cream-2); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: ''; position: absolute; left: 0; top: 18px; width: 8px; height: 1px; background: var(--gold); }
.plan-cta { margin-top: 20px; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--cream-2); margin-bottom: 8px; overflow: hidden; }
section.alt .faq-item { border-color: var(--cream-3); }
.faq-item summary { padding: 22px 28px; cursor: pointer; font-family: 'Cormorant Garamond', serif; font-weight: 600; color: var(--navy); font-size: 20px; display: flex; justify-content: space-between; align-items: center; list-style: none; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--gold); font-weight: 300; transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer { padding: 0 28px 24px; color: var(--gray); font-size: 15px; line-height: 1.8; font-weight: 400; }
.faq-item .answer strong { color: var(--navy); font-weight: 600; }

/* CTA FINAL */
.cta-final { background: var(--navy); color: var(--cream); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.02) 1px, transparent 1px); background-size: 50px 50px; }
.cta-final .container { position: relative; z-index: 2; }
.cta-final .eyebrow { color: var(--gold); margin-bottom: 12px; }
.cta-final h2 { font-family: 'Cormorant Garamond', serif; color: var(--cream); font-size: 42px; font-weight: 600; margin-bottom: 14px; }
.cta-final p { color: rgba(245,240,232,0.7); font-size: 16px; margin-bottom: 36px; line-height: 1.7; }
.cta-form { background: var(--cream); max-width: 480px; margin: 0 auto; padding: 36px; color: var(--black); text-align: left; border-top: 3px solid var(--gold); }
.cta-form .field { margin-bottom: 16px; }
.cta-form label { font-size: 11px; color: var(--gray); display: block; margin-bottom: 6px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.cta-form input, .cta-form select, .cta-form textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--cream-3); background: var(--white); border-radius: 1px; font-size: 15px; font-family: inherit; color: var(--black); transition: border-color .2s; }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { outline: none; border-color: var(--gold); }
.cta-form textarea { resize: vertical; min-height: 80px; }
.cta-form .radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-form .radio-group label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 14px; color: var(--black); text-transform: none; letter-spacing: 0; font-weight: 400; margin: 0; }
.cta-form .radio-group input[type="radio"] { width: auto; accent-color: var(--gold-dark); }
.cta-form button { width: 100%; background: var(--navy); color: var(--cream); border: none; padding: 16px; margin-top: 8px; font-weight: 600; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.cta-form button:hover { background: var(--gold); color: var(--navy); }

/* FOOTER */
footer.site-footer { background: var(--black); color: rgba(245,240,232,0.6); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-col h4 { color: var(--gold); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; font-size: 14px; }
.footer-col a { color: rgba(245,240,232,0.5); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-col .footer-logo svg { width: 28px; height: 28px; }
.footer-col .footer-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--cream); }
.footer-col .footer-tag { font-size: 9px; letter-spacing: 4px; color: rgba(201,168,76,0.6); text-transform: uppercase; margin-top: 4px; font-weight: 300; }
.footer-col p { font-size: 14px; line-height: 1.7; color: rgba(245,240,232,0.45); }
.footer-bottom { border-top: 1px solid rgba(201,168,76,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(245,240,232,0.4); letter-spacing: 1px; }
.footer-bottom .socials a { color: var(--gold); margin-left: 14px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }

/* WHATSAPP FLOATING BUTTON */
.wa-float { position: fixed; right: 28px; bottom: 28px; width: 60px; height: 60px; background: var(--gold); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px rgba(13,43,85,0.28), 0 0 0 4px rgba(201,168,76,0.18); z-index: 99; transition: transform .3s cubic-bezier(0.22, 0.61, 0.36, 1), background .25s, box-shadow .3s; }
.wa-float:hover { transform: scale(1.08); background: var(--gold-light); text-decoration: none; box-shadow: 0 14px 34px rgba(13,43,85,0.32), 0 0 0 6px rgba(201,168,76,0.25); }
.wa-float svg { width: 30px; height: 30px; fill: var(--navy); }

/* LEGAL PAGES */
.legal-content { max-width: 820px; margin: 0 auto; padding: 80px 0; }
.legal-content .eyebrow { display: inline-block; margin-bottom: 12px; }
.legal-content h1 { font-family: 'Cormorant Garamond', serif; color: var(--navy); font-size: 44px; font-weight: 600; margin-bottom: 8px; line-height: 1.1; }
.legal-content .updated { color: var(--gray-soft); font-size: 14px; margin-bottom: 36px; font-style: italic; }
.legal-content h2 { font-family: 'Cormorant Garamond', serif; color: var(--navy); font-size: 28px; font-weight: 600; margin: 40px 0 14px; }
.legal-content h3 { font-family: 'Montserrat', sans-serif; color: var(--navy); font-size: 15px; font-weight: 600; margin: 28px 0 10px; letter-spacing: 1px; text-transform: uppercase; }
.legal-content p { margin-bottom: 14px; line-height: 1.8; color: var(--black); font-size: 16px; }
.legal-content ul { margin: 14px 0 14px 24px; }
.legal-content ul li { margin-bottom: 6px; line-height: 1.7; font-size: 16px; }
.legal-content a { color: var(--gold-dark); }
.legal-content a:hover { color: var(--navy); }

/* RESPONSIVE */
@media (max-width: 980px) {
  .logo { margin-left: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 42px; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .cards-grid.three, .cards-grid.four, .cards-grid.two { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); border-bottom: 1px solid rgba(201,168,76,0.15); flex-direction: column; padding: 20px 32px; gap: 18px; align-items: flex-start; }
  nav.main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  section { padding: 64px 0; }
  .section-header h2 { font-size: 30px; }
  .cta-final h2 { font-size: 30px; }
  .hero-meta { flex-wrap: wrap; gap: 24px; }
}

/* MOBILE — tablets e celulares grandes */
@media (max-width: 760px) {
  .container { padding: 0 20px; }
  /* Header mais compacto */
  .site-header .row { padding: 14px 0; gap: 10px; }
  .logo svg { width: 28px; height: 28px; }
  .logo-name { font-size: 18px; letter-spacing: 0.5px; }
  .logo-sub { font-size: 7px; letter-spacing: 3px; }
  .site-header .btn-wa { padding: 9px 12px; font-size: 9px; letter-spacing: 1.2px; gap: 6px; }
  .site-header .btn-wa svg { width: 14px; height: 14px; }
  /* Hero */
  .hero { padding: 56px 0 64px; }
  .hero-corner { width: 60px; height: 60px; }
  .hero-corner.tl { top: 16px; left: 16px; }
  .hero-corner.br { bottom: 16px; right: 16px; }
  .hero-grid { gap: 36px; }
  .hero h1 { font-size: 36px; line-height: 1.08; margin-bottom: 18px; }
  .hero .subtitle { font-size: 14px; margin-bottom: 28px; }
  .hero-cta { gap: 10px; }
  .hero-meta { margin-top: 36px; padding-top: 24px; gap: 18px; }
  .hero-visual { aspect-ratio: 5/4; max-width: 100%; }
  .hero-visual-inner svg { width: 72px; height: 72px; margin-bottom: 12px; }
  /* Botões cheia largura no mobile */
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { flex: 1 1 100%; justify-content: center; padding: 14px 20px; }
  /* Sections */
  section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 26px; }
  .section-header p { font-size: 13px; }
  /* Cards */
  .card { padding: 28px 22px; }
  .card h3 { font-size: 21px; }
  .cards-grid { gap: 16px; }
  /* Planos */
  .plan { padding: 32px 24px; }
  .plan-name { font-size: 22px; }
  .plan-price { font-size: 40px; }
  /* FAQ */
  .faq-item summary { padding: 18px 20px; font-size: 15px; }
  .faq-item .answer { padding: 0 20px 20px; font-size: 13px; }
  /* CTA final */
  .cta-final { padding: 64px 0; }
  .cta-final h2 { font-size: 26px; }
  .cta-form { padding: 24px 20px; }
  .cta-form input, .cta-form select, .cta-form textarea { padding: 12px; font-size: 14px; }
  .cta-form button { padding: 15px; font-size: 11px; letter-spacing: 2px; }
  /* WhatsApp flutuante menor para não atrapalhar */
  .wa-float { width: 54px; height: 54px; right: 18px; bottom: 18px; }
  .wa-float svg { width: 26px; height: 26px; }
  /* Footer */
  .footer-grid { gap: 32px; }
  .footer-col h4 { margin-bottom: 12px; }
  /* Legal */
  .legal-content { padding: 48px 0; }
  .legal-content h1 { font-size: 32px; }
  .legal-content h2 { font-size: 22px; margin: 28px 0 10px; }
  .legal-content p, .legal-content ul li { font-size: 13.5px; }
}

/* MOBILE PEQUENO */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-bottom .socials a { margin: 0 8px; }
  /* Hero */
  .hero { padding: 40px 0 52px; }
  .hero h1 { font-size: 30px; }
  .hero .subtitle { font-size: 13.5px; }
  .hero-meta { gap: 14px 24px; }
  .hero-meta-item { min-width: 45%; }
  /* Header — botão WhatsApp mais compacto */
  .site-header .btn-wa { padding: 9px 12px; font-size: 9px; letter-spacing: 1.5px; }
  .logo-name { font-size: 17px; }
  /* Sections */
  section { padding: 48px 0; }
  .section-header h2 { font-size: 24px; }
  /* Cards */
  .card { padding: 24px 20px; }
  .card h3 { font-size: 20px; }
  /* Planos */
  .plan { padding: 28px 20px; }
  .plan-price { font-size: 36px; }
  .plan-features li { font-size: 12.5px; padding: 9px 0 9px 20px; }
  /* CTA */
  .cta-final h2 { font-size: 24px; }
  .cta-form { padding: 22px 18px; }
  .cta-form .radio-group { gap: 10px 16px; }
  /* Legal */
  .legal-content h1 { font-size: 28px; }
}

/* Garantir que nada vaze horizontal */
@media (max-width: 760px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  img, svg, video, iframe { max-width: 100%; }
}
