/* ============================================================
   TANTE — Estúdio de Estratégia e Design
   assets/css/tante.css
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Beth+Ellen&family=DM+Serif+Display:ital@0;1&family=Oswald:wght@700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --azul:        #00109e;
  --azul-escuro: #000d82;
  --rosa:        #e40f95;
  --preto:       #0f1822;
  --cinza:       #ced2d5;
  --cinza-claro: #e8eaec;
  --amarelo:     #ffc600;
  --branco:      #ffffff;
  --fundo:       #f4f5f6;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--branco);
  color: var(--preto);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── RESET CONTAINERS PADRÃO DO WORDPRESS ── */
/* Neutraliza wrappers de temas padrão (Twenty*) que quebram layouts full-width */
#page, #content, #primary, #main, .site, .site-content,
.wp-site-blocks, .entry-content, .post-content,
.alignfull, .wp-block-group, .is-root-container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  float: none !important;
}
body.home, body.page-template-front-page {
  padding: 0 !important;
  margin: 0 !important;
}

/* ── HELPERS ── */
.rocky {
  font-family: 'Oswald', 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ============================================================
   NAV
   ============================================================ */
.tante-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cinza-claro);
}
.tante-nav .nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.tante-nav .nav-logo .logo-img,
.tante-nav .nav-logo .custom-logo {
  height: 28px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}
.tante-nav .nav-links {
  display: flex; gap: 32px;
  list-style: none; align-items: center;
}
.tante-nav .nav-links a {
  font-size: 12px; font-weight: 500;
  color: var(--preto); letter-spacing: 0.06em;
  text-transform: uppercase; transition: color 0.2s;
}
.tante-nav .nav-links a:hover { color: var(--azul); }
.tante-nav .nav-cta {
  background: var(--azul) !important;
  color: var(--branco) !important;
  padding: 9px 22px; border-radius: 100px;
  font-size: 12px !important;
  transition: background 0.2s !important;
}
.tante-nav .nav-cta:hover { background: var(--azul-escuro) !important; }

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--preto); margin: 5px 0;
  transition: all 0.25s;
}

/* ============================================================
   BOTÕES GLOBAIS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--azul); color: var(--branco);
  padding: 13px 26px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s, background 0.2s;
  border: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--azul-escuro); color: var(--branco); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--branco); border-color: var(--branco); }

/* ── Section label ── */
.section-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 26px; height: 1px; flex-shrink: 0;
}
.label-rosa { color: var(--rosa); }
.label-rosa::before { background: var(--rosa); }
.label-azul { color: var(--azul); }
.label-azul::before { background: var(--azul); }

/* ============================================================
   HERO
   ============================================================ */
.tante-hero {
  min-height: 100vh !important;
  width: 100% !important;
  padding: 0 !important;
  display: block !important;
  background: var(--preto) !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
/* Garante que nenhum container do WP quebre o layout */
.tante-hero > * { float: none !important; }

.hero-bg {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  right: 0 !important; bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  overflow: hidden !important;
}
.hero-bg img {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  z-index: 0 !important;
}
.hero-bg::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  right: 0 !important; bottom: 0 !important;
  background: linear-gradient(
    to right,
    rgba(15,24,34,0.82) 0%,
    rgba(15,24,34,0.55) 55%,
    rgba(15,24,34,0.15) 100%
  ) !important;
  z-index: 1 !important;
}
.hero-left {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 700px !important;
  padding: 160px 80px 100px !important;
  float: none !important;
  display: block !important;
}
.hero-right { display: none !important; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 5px; height: 5px;
  background: var(--rosa); border-radius: 50%; flex-shrink: 0;
}
.hero-title {
  line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 40px; color: var(--branco);
}
.hero-title .t1, .hero-title .t2, .hero-title .t3, .hero-title .t4 {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-weight: 400; text-transform: none;
  font-size: clamp(44px, 5.5vw, 78px);
  letter-spacing: -0.02em; line-height: 1.05;
}
.hero-title .t1 { color: var(--branco); }
.hero-title .t2 { color: var(--rosa); font-style: italic; }
.hero-title .t3 { color: var(--branco); }
.hero-title .t4 { color: var(--cinza); }
.hero-sub { display: none; }
.hero-cta-group {
  display: flex; gap: 16px; align-items: center; margin-top: 36px;
}
.hero-right { display: none; }
.hero-img-wrap, .hero-img-tag { display: none; }

/* ============================================================
   TICKER
   ============================================================ */
.tante-ticker {
  background: var(--azul); color: rgba(255,255,255,0.7);
  padding: 12px 0; overflow: hidden; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: tickerScroll 22s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 18px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0 32px;
}
.ticker-dot {
  width: 4px; height: 4px;
  background: var(--amarelo); border-radius: 50%; flex-shrink: 0;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.tante-manifesto {
  padding: 100px 48px; background: var(--fundo);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.manifesto-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400; line-height: 1.15; margin-bottom: 24px;
}
.manifesto-left p {
  font-size: 15px; line-height: 1.8; color: #4a5566; margin-bottom: 14px;
}
.ficheiro-wrap { display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
.ficheiro {
  background: var(--branco); border: 1px solid var(--cinza);
  border-radius: 12px 12px 0 0;
  padding: 20px 24px; position: relative; margin-bottom: -1px;
}
.ficheiro:last-child { border-radius: 0 0 12px 12px; margin-bottom: 0; }
.ficheiro:first-child { z-index: 3; }
.ficheiro:nth-child(2) { z-index: 2; padding-top: 22px; }
.ficheiro:last-child  { z-index: 1; padding-top: 24px; }
.ficheiro p {
  font-family: 'Beth Ellen', cursive;
  font-size: 18px; color: var(--preto);
  line-height: 1.5; margin: 0;
}
.ficheiro .f-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--azul); margin-bottom: 8px; display: block;
}
.manifesto-anchor-new {
  margin-top: 28px;
  border-left: 3px solid var(--rosa);
  padding-left: 20px;
}
.manifesto-anchor-new p {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; font-style: italic;
  color: var(--preto); line-height: 1.45;
}
.manifesto-anchor-new span {
  display: block; margin-top: 10px;
  font-size: 12px; font-family: 'Space Grotesk', sans-serif;
  font-style: normal; color: #999; letter-spacing: 0.04em;
}

/* ============================================================
   FRASE DESTAQUE
   ============================================================ */
.tante-frase-destaque {
  padding: 88px 48px; background: var(--azul);
  text-align: center; position: relative; overflow: hidden;
}
.tante-frase-destaque h2 {
  font-family: 'Beth Ellen', cursive;
  font-size: clamp(26px, 3.2vw, 50px);
  font-weight: 400; color: var(--branco);
  line-height: 1.45; position: relative; z-index: 1;
}
.tante-frase-destaque h2 .accent { color: var(--cinza); }

/* ============================================================
   SOBRE
   ============================================================ */
.tante-sobre {
  padding: 100px 48px; background: var(--branco);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.sobre-image-area { position: relative; }
.sobre-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: var(--cinza-claro); border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.sobre-img-placeholder img { width: 78%; height: 78%; object-fit: contain; }
.sobre-img-placeholder .img-label {
  font-size: 11px; font-weight: 600;
  color: rgba(15,24,34,0.35);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.sobre-selo {
  position: absolute; bottom: -22px; right: -22px;
  width: 120px; height: 120px; z-index: 2;
}
.sobre-selo svg { width: 100%; height: 100%; }
.sobre-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400; line-height: 1.15; margin-bottom: 22px;
}
.sobre-content h2 em { color: var(--azul); font-style: italic; }
.sobre-content p { font-size: 15px; line-height: 1.78; color: #4a5566; margin-bottom: 14px; }

/* ============================================================
   SOLUÇÕES
   ============================================================ */
.tante-solucoes { padding: 100px 48px; background: var(--fundo); }
.solucoes-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 52px;
}
.solucoes-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 400; line-height: 1.1;
}
.solucoes-header h2 .eyebrow {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #999; margin-bottom: 10px;
}
.solucoes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.sc {
  border-radius: 18px; padding: 30px;
  transition: transform 0.22s; cursor: default;
}
.sc:hover { transform: translateY(-3px); }
.sc.span-2 { grid-column: span 2; }
.sc-branco     { background: var(--branco); border: 1px solid var(--cinza-claro); }
.sc-azul       { background: var(--azul);   color: var(--branco); }
.sc-preto      { background: var(--preto);  color: var(--branco); }
.sc-cinza      { background: var(--cinza); }
.sc-rosa       { background: var(--rosa);   color: var(--branco); }
.sc-cinza-claro { background: var(--cinza-claro); }
.sc-num {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.4; margin-bottom: 14px;
}
.sc-azul .sc-num, .sc-preto .sc-num, .sc-rosa .sc-num { opacity: 0.45; }
.sc h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 19px; font-weight: 400; line-height: 1.2; margin-bottom: 10px;
}
.sc p { font-size: 12px; line-height: 1.65; opacity: 0.68; }
.sc-azul p, .sc-preto p, .sc-rosa p { opacity: 0.72; }

/* ============================================================
   FRASE TANTE — BENTO
   ============================================================ */
.tante-frase-marca { padding: 80px 48px; background: var(--branco); }
.frase-tante-grid {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 16px; align-items: stretch;
}
.ft-frase {
  background: var(--azul); border-radius: 24px;
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.ft-frase h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400; text-transform: none;
  line-height: 1.05; color: var(--branco); letter-spacing: -0.02em;
}
.ft-frase h2 .tf-grande {
  display: block; font-size: clamp(36px, 4.5vw, 66px);
  color: rgba(255,255,255,0.9);
}
.ft-frase h2 .tf-pequena {
  display: block; font-size: clamp(36px, 4.5vw, 66px);
  color: rgba(255,255,255,0.4); font-style: italic;
}
.ft-frase h2 .tf-hand {
  display: block; font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4.5vw, 66px);
  color: var(--rosa); text-transform: none;
  font-weight: 400; line-height: 1.05; margin-top: 0;
  letter-spacing: -0.02em; font-style: italic;
}
.ft-frase h2 .tf-hand .word-tante {
  font-family: 'Beth Ellen', cursive;
  font-style: normal; font-weight: 400;
  font-size: 1.05em; letter-spacing: 0;
}
.ft-mascot {
  background: var(--cinza-claro); border-radius: 24px;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; position: relative; min-height: 320px;
}
.ft-mascot img {
  width: 85%; object-fit: contain;
  display: block; position: relative; z-index: 1;
}
.ft-mascot::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, var(--cinza-claro) 0%, var(--cinza) 100%);
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.tante-depoimentos { padding: 100px 48px; background: var(--fundo); }
.depoimentos-header { margin-bottom: 52px; }
.depoimentos-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400; line-height: 1.2;
}
.depoimentos-header h2 em { color: var(--azul); font-style: italic; }
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dep-card {
  background: var(--branco); border-radius: 18px;
  padding: 30px; display: flex; flex-direction: column;
  gap: 18px; position: relative;
}
.dep-card::before {
  content: '\201C';
  font-family: 'DM Serif Display', serif;
  font-size: 72px; color: var(--azul); opacity: 0.1;
  line-height: 0.8; position: absolute; top: 22px; left: 26px;
}
.dep-text {
  font-size: 13px; line-height: 1.78;
  color: #4a5566; font-style: italic; padding-top: 18px;
}
.dep-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--cinza-claro); padding-top: 16px;
}
.dep-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--branco); flex-shrink: 0;
}
.av-azul  { background: var(--azul); }
.av-rosa  { background: var(--rosa); }
.av-preto { background: var(--preto); }
.dep-name { font-size: 12px; font-weight: 600; color: var(--preto); line-height: 1.3; }
.dep-role { font-size: 11px; color: #999; margin-top: 1px; }

/* ============================================================
   CTA + FORMULÁRIO
   ============================================================ */
.tante-cta {
  padding: 100px 48px; background: var(--azul);
  position: relative; overflow: hidden;
}
.tante-cta::after {
  content: ''; position: absolute;
  top: -160px; right: -160px;
  width: 460px; height: 460px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%; pointer-events: none;
}
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; position: relative; z-index: 1;
}
.cta-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 400; color: var(--branco);
  line-height: 1.15; margin-bottom: 18px;
}
.cta-left h2 em { color: var(--cinza); font-style: italic; }
.cta-left p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.6); }

.form-card { background: var(--branco); border-radius: 22px; padding: 38px; }
.form-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 21px; font-weight: 400; color: var(--preto); margin-bottom: 26px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #aaa; margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--cinza-claro); border-radius: 10px;
  font-size: 13px; font-family: 'Space Grotesk', sans-serif;
  color: var(--preto); background: var(--fundo);
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--azul); }
.form-group textarea { min-height: 80px; resize: vertical; }

.form-checkboxes { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 7px; }
.check-pill {
  display: flex; align-items: center;
  padding: 5px 13px; border: 1px solid var(--cinza);
  border-radius: 100px; font-size: 11px; font-weight: 500;
  cursor: pointer; transition: all 0.15s;
  background: var(--fundo); color: var(--preto);
}
.check-pill input[type="checkbox"] { display: none; }
.check-pill.active { background: var(--azul); color: var(--branco); border-color: var(--azul); }

.contato-pref { display: flex; gap: 10px; margin-top: 7px; }
.pref-btn {
  flex: 1; padding: 9px; text-align: center;
  border: 1px solid var(--cinza); border-radius: 9px;
  font-size: 11px; font-weight: 500; cursor: pointer;
  transition: all 0.15s; background: var(--fundo); color: var(--preto);
}
.pref-btn.active { background: var(--azul); color: var(--branco); border-color: var(--azul); }

.form-submit {
  width: 100%; padding: 14px; background: var(--preto);
  color: var(--branco); border: none; border-radius: 10px;
  font-size: 13px; font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  margin-top: 6px; letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--azul-escuro); transform: translateY(-2px); }

/* ============================================================
   RODAPÉ
   ============================================================ */
.tante-footer { background: var(--preto); color: var(--branco); padding: 68px 48px 36px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 28px;
}
.footer-logo {
  margin-bottom: 14px;
  line-height: 1;
}
.footer-logo .logo-img,
.footer-logo .custom-logo {
  height: 28px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}
.footer-brand p {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.4); max-width: 280px;
  font-style: italic; font-family: 'DM Serif Display', serif;
}
.footer-brand .social { display: flex; gap: 10px; margin-top: 26px; }
.social-link {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--rosa); color: var(--rosa); }
.footer-nav h4 {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 18px;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-nav ul li a {
  font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--cinza); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-bottom .hand-sig {
  font-family: 'Beth Ellen', cursive; font-size: 17px; color: rgba(255,255,255,0.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tante-hero,
  .tante-manifesto,
  .tante-sobre { grid-template-columns: 1fr; gap: 48px; }
  .tante-hero { padding-top: 100px; min-height: auto; }
  .hero-right { order: -1; }
  .hero-img-wrap { max-width: 100%; aspect-ratio: 16/9; }
  .solucoes-grid { grid-template-columns: repeat(2, 1fr); }
  .sc.span-2 { grid-column: span 2; }
  .frase-tante-grid { grid-template-columns: 1fr; }
  .ft-mascot { min-height: 240px; }
  .dep-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .tante-nav { padding: 16px 24px; }
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex; position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--branco); padding: 24px;
    border-bottom: 1px solid var(--cinza-claro);
  }
  .nav-toggle { display: block; }
  .tante-hero, .tante-manifesto, .tante-sobre,
  .tante-solucoes, .tante-frase-marca,
  .tante-depoimentos, .tante-cta, .tante-footer { padding-left: 24px; padding-right: 24px; }
  .tante-frase-destaque { padding: 60px 24px; }
  .solucoes-grid { grid-template-columns: 1fr; }
  .sc.span-2 { grid-column: span 1; }
  .ft-frase { padding: 36px 28px; }
  .form-card { padding: 24px; }
  .cta-inner { gap: 28px; }
}
