/* ============================================================
   FORTIORA CARE — Design System
   Dourado + Verde profundo + Marfim · luxo acolhedor (leoa + lar)
   (nomes de variáveis mantidos p/ re-skin; "teal" agora = verde;
    "mint" agora = sálvia/marfim quente)
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Marca */
  --teal-900: #1c2e25;   /* verde profundo — títulos/seções escuras */
  --teal-700: #2b4739;   /* verde — texto de marca, botões */
  --teal-600: #375c4b;
  --mint-400: #a6b4a4;   /* sálvia — tom médio/detalhes */
  --mint-200: #cad3c5;
  --mint-100: #ece3d3;   /* marfim quente — blocos */
  --cream:    #f4eee1;   /* marfim — fundo */
  --cream-200:#ebe0cd;
  --ink:      #23332b;   /* texto */
  --ink-soft: #57655b;   /* texto secundário */
  --gold:     #b7905a;   /* dourado — assinatura da marca */
  --gold-soft:#dcc79f;
  --white:    #ffffff;

  /* Semânticos */
  --bg:            var(--cream);
  --surface:       var(--white);
  --surface-mint:  var(--mint-100);
  --text:          var(--ink);
  --text-muted:    var(--ink-soft);
  --brand:         var(--teal-700);
  --brand-strong:  var(--teal-900);
  --accent:        var(--gold);
  --border:        #e6d9c2;

  /* Tipografia */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-hand: 'Caveat', 'Segoe Script', cursive;

  /* Escala tipográfica fluida */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3rem);
  --step-4:  clamp(2.6rem, 2rem + 3vw, 4.3rem);

  /* Espaçamento (escala 8) */
  --sp-1: 0.5rem;  --sp-2: 1rem;   --sp-3: 1.5rem;  --sp-4: 2rem;
  --sp-5: 3rem;    --sp-6: 4rem;   --sp-7: 6rem;    --sp-8: 8rem;

  /* Raio & sombra (Soft UI Evolution) */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 10px rgba(35, 79, 71, 0.06);
  --shadow:    0 14px 40px -18px rgba(35, 79, 71, 0.28);
  --shadow-lg: 0 30px 70px -30px rgba(35, 79, 71, 0.35);
  --shadow-gold: 0 14px 34px -14px rgba(201, 163, 91, 0.45);

  --container: 1200px;
  --header-h: 94px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--brand-strong);
  font-optical-sizing: auto;
}

/* ---------- 3. Utilitários ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 8vw, var(--sp-8)); position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--mint-400));
}
.eyebrow.centered { justify-content: center; }
.hand { font-family: var(--font-hand); color: var(--brand); font-weight: 700; }
.section-head { max-width: 640px; margin-bottom: var(--sp-5); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--step-3); margin-top: 0.7rem; }
.section-head p { color: var(--text-muted); margin-top: 1rem; font-size: var(--step-1); line-height: 1.5; }
.lead { font-size: var(--step-1); color: var(--text-muted); line-height: 1.55; }
.text-gold { color: var(--gold); }

/* ---------- 4. Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: var(--step-0); line-height: 1;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  min-height: 52px; white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary { background: var(--brand); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--teal-900); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--brand-strong); box-shadow: inset 0 0 0 1.5px var(--border); }
.btn-ghost:hover { background: var(--white); transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--mint-400), var(--shadow-sm); }
.btn-wa { background: linear-gradient(145deg, #c39a5f, #a5804a); color: #1c2e25; box-shadow: 0 14px 34px -14px rgba(160,120,60,0.55); }
.btn-wa:hover { background: linear-gradient(145deg, #cba468, #9c7845); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-wa svg { color: #1c2e25; }

/* ---------- 5. Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h); display: flex; align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), height 0.35s var(--ease);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }
.header.scrolled { background: rgba(250, 247, 241, 0.85); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); height: 76px; }
.brand { display: flex; align-items: center; }
.brand__logo { height: 78px; width: auto; display: block; transition: height 0.35s var(--ease); }
.header.scrolled .brand__logo { height: 62px; }
@media (max-width: 900px) {
  .header__actions .btn-wa { display: none; } /* mobile usa hambúrguer + botão flutuante */
}

/* Mobile desenhado (não apenas encolhido) */
@media (max-width: 640px) {
  .hero__cta { flex-direction: column; align-items: stretch; gap: 0.7rem; }
  .hero__cta .btn { width: 100%; }
  .hero__badges { gap: 0.6rem 1rem; margin-top: 0.4rem; }
  .hero__chip { left: 0; bottom: 4%; padding: 0.7rem 1rem; }
  .hero__chip-num { font-size: 1.7rem; }
  .hero__tag-hand { display: none; } /* evita colisão com o header no mobile */
  .feature__badge { right: 10px; bottom: -14px; padding: 0.8rem 1rem; }
  .feature__badge-num { font-size: 1.7rem; }
  .about__badge { right: 8px; bottom: 14px; padding: 0.85rem 1rem; }
  .cta-final__inner .btn-wa { width: 100%; }
  .service-card, .step, .value-card, .testi-card { padding: 1.7rem 1.4rem; }
  .compare__col { padding: 1.6rem 1.4rem; }
  .section-head { margin-bottom: 2rem; }
  .wa-float { width: 54px; height: 54px; }
  .wa-float svg { width: 26px; height: 26px; }
}
@media (max-width: 480px) {
  .brand__logo { height: 62px; }
  .hero h1 { font-size: clamp(2.3rem, 8.5vw, 3rem); }
}
.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: 1.5rem; flex-wrap: nowrap; }
.nav a { font-weight: 600; font-size: 0.95rem; color: var(--brand-strong); position: relative; padding: 0.4rem 0; white-space: nowrap; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold); border-radius: 2px; transition: width 0.3s var(--ease);
}
.nav a:hover::after, .nav a:focus-visible::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 0.75rem; }
.header .btn { padding: 0.7rem 1.3rem; min-height: 46px; font-size: 0.95rem; }

.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; border-radius: 12px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--brand-strong); border-radius: 2px; transition: 0.3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: var(--cream);
  padding: calc(var(--header-h) + 1rem) 2rem 2rem; transform: translateX(100%);
  transition: transform 0.4s var(--ease); display: flex; flex-direction: column; gap: 0.5rem;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 1.6rem; color: var(--brand-strong); padding: 0.8rem 0; border-bottom: 1px solid var(--border); }
.mobile-nav .btn-wa { margin-top: 1.5rem; }

/* ---------- 6. Hero ---------- */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(1.5rem, 5vw, 3.5rem)); padding-bottom: clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__eyebrow { margin-bottom: 1.3rem; }
.hero h1 { font-size: var(--step-4); margin-bottom: 1.4rem; }
.hero h1 .accent { color: var(--brand); font-style: italic; }
.hero__sub { max-width: 46ch; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.92rem; color: var(--brand-strong); }
.hero__badge svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* Media orgânica */
.hero__media { position: relative; }
.blob {
  position: relative; aspect-ratio: 1 / 1.05;
  background: linear-gradient(160deg, var(--mint-200), var(--mint-100));
  border-radius: 58% 42% 48% 52% / 55% 50% 50% 45%;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.blob > .photo-ph { position: absolute; inset: 0; }
.media-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero__chip {
  position: absolute; left: -14px; bottom: 8%; z-index: 3;
  display: flex; align-items: center; gap: 0.7rem;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: var(--radius); padding: 0.85rem 1.15rem; box-shadow: var(--shadow-lg);
}
.hero__chip-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--brand); line-height: 1; }
.hero__chip-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 700; line-height: 1.15; }
.hero__tag-hand {
  position: absolute; top: 10px; right: 6%; z-index: 3;
  font-family: var(--font-hand); font-size: 1.7rem; font-weight: 700; color: var(--brand-strong);
  transform: rotate(-5deg); background: rgba(250,247,241,0.92);
  padding: 0.1rem 0.85rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}

/* placeholder de foto */
.photo-ph {
  position: relative; width: 100%; height: 100%;
  background:
    radial-gradient(120% 90% at 30% 20%, var(--mint-200), transparent 60%),
    linear-gradient(160deg, var(--mint-100), var(--mint-200));
  display: grid; place-content: center; text-align: center; gap: 0.5rem;
}
.photo-ph::after {
  content: "FOTO REAL AQUI\A (substituir)"; white-space: pre;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--teal-700); opacity: 0.7;
}

/* folhas decorativas de fundo */
.leaf-deco { position: absolute; z-index: -1; color: var(--gold-soft); opacity: 0.45; pointer-events: none; }

/* ---------- 7. Faixa de confiança ---------- */
.trustband { background: var(--brand-strong); color: var(--white); }
.trustband .container { padding-block: clamp(2rem, 4vw, 3rem); }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem 2rem; }
.trust-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.trust-item__icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(155,207,193,0.16); color: var(--mint-400); }
.trust-item__icon svg { width: 24px; height: 24px; }
.trust-item h3 { color: var(--white); font-family: var(--font-body); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.trust-item p { color: rgba(231,241,237,0.72); font-size: 0.85rem; line-height: 1.4; margin-top: 0.15rem; }

/* ---------- 8. Quem somos ---------- */
.about__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__media { position: relative; }
.about__frame { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about__frame > .photo-ph { position: absolute; inset: 0; }
.about__hand { font-family: var(--font-hand); font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--brand); line-height: 1.15; display: block; margin: 1.4rem 0; }
.about p + p { margin-top: 1.1rem; }
.about__badge {
  position: absolute; right: -12px; bottom: 24px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 0.8rem; max-width: 230px;
}
.about__badge svg { width: 34px; height: 34px; color: var(--gold); flex-shrink: 0; }
.about__badge strong { display: block; color: var(--brand-strong); font-size: 0.95rem; }
.about__badge span { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- 9. Valores ---------- */
.values { background: var(--surface-mint); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; margin-top: var(--sp-4); }
.value-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(255,255,255,0.8);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-card__icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(150deg, var(--mint-100), var(--mint-200)); color: var(--brand); margin-bottom: 1.2rem; }
.value-card__icon svg { width: 30px; height: 30px; }
.value-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--text-muted); font-size: 0.95rem; }
.value-card .num { font-family: var(--font-display); color: var(--gold); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em; }

/* ---------- Essência da marca ---------- */
.essence { background: linear-gradient(160deg, #24402f, #17261e); color: rgba(244,238,225,0.85); position: relative; overflow: hidden; }
.essence__bg { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 520px; max-width: 55%; opacity: 0.06; pointer-events: none; }
.essence__bg img { width: 100%; }
.essence__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; z-index: 1; }
.essence__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(183,144,90,0.4); }
.essence__media img { width: 100%; display: block; aspect-ratio: 16 / 10; object-fit: cover; }
.essence h2 { color: #fff; font-size: var(--step-3); }
.eyebrow--gold { color: var(--gold); }
.essence .lead { color: rgba(244,238,225,0.82); margin: 1rem 0 1.7rem; }
.essence .lead strong { color: var(--gold); font-weight: 700; }
.essence .lead em { color: #fff; }
.essence__pillars { display: flex; flex-direction: column; gap: 1.3rem; }
.essence__pillars li { display: flex; gap: 1.1rem; align-items: flex-start; }
.essence__letter { font-family: var(--font-display); font-size: 2.7rem; font-weight: 600; color: var(--gold); line-height: 0.9; width: 46px; text-align: center; flex-shrink: 0; }
.essence__pillars strong { display: block; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; margin-bottom: 0.2rem; }
.essence__pillars p { color: rgba(244,238,225,0.72); font-size: 0.95rem; }
.essence__quote { display: block; margin-top: 1.7rem; font-size: 1.8rem; color: var(--gold-soft); }

/* ---------- Cursos / Trabalhe conosco ---------- */
.nav a.nav__cta { color: var(--gold); font-weight: 700; }
.nav a.nav__cta::after { background: var(--gold); }
.cursos { background: linear-gradient(150deg, #24402f, #17261e); color: rgba(244,238,225,0.85); position: relative; overflow: hidden; }
.cursos__bg { position: absolute; left: -70px; bottom: -70px; width: 440px; max-width: 48%; opacity: 0.05; pointer-events: none; }
.cursos__bg img { width: 100%; }
.cursos__grid { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.cursos__brandcard { display: flex; justify-content: center; align-items: center; padding: 2.4rem; border-radius: var(--radius-lg); background: rgba(0,0,0,0.2); border: 1px solid rgba(183,144,90,0.4); }
.cursos__logo { width: 100%; max-width: 300px; display: block; }
.cursos h2 { color: #fff; font-size: var(--step-3); }
.cursos .lead { color: rgba(244,238,225,0.82); margin: 1rem 0 1.5rem; }
.cursos .lead strong { color: var(--gold); font-weight: 700; }
.cursos__perks { display: grid; gap: 0.75rem; margin-bottom: 1.9rem; }
.cursos__perks li { position: relative; padding-left: 1.9rem; color: rgba(244,238,225,0.9); font-size: 0.98rem; }
.cursos__perks li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--gold); font-weight: 700; font-size: 1.05rem; }
.cursos__note { font-size: 0.88rem; color: rgba(244,238,225,0.6); margin-top: 1rem; }

/* ---------- Nosso time ---------- */
.team-photo { position: relative; margin-top: var(--sp-4); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--white); }
.team-photo img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.team-photo__chip {
  position: absolute; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 0.7rem;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 0.8rem 1.1rem; box-shadow: var(--shadow);
}
.team-photo__num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--gold); line-height: 1; }
.team-photo__label { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); line-height: 1.15; }
@media (max-width: 640px) {
  .team-photo { border-width: 4px; }
  .team-photo__chip { left: 12px; bottom: 12px; padding: 0.6rem 0.85rem; }
  .team-photo__num { font-size: 1.6rem; }
}

/* ---------- Serviços ---------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: var(--sp-4); }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card__icon { width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; background: linear-gradient(150deg, var(--mint-100), var(--mint-200)); color: var(--brand); margin-bottom: 1.3rem; }
.service-card__icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--text-muted); font-size: 0.98rem; flex: 1; }
.service-card__link { display: inline-block; margin-top: 1.3rem; font-weight: 700; color: var(--brand); font-size: 0.95rem; transition: gap 0.2s var(--ease), color 0.2s; }
.service-card__link:hover { color: var(--teal-900); }

/* ---------- Diferencial (feature) ---------- */
.feature { background: var(--surface-mint); }
.feature__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.feature__media { position: relative; }
.feature__frame { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature__frame > .photo-ph { position: absolute; inset: 0; }
.feature__badge {
  position: absolute; right: -14px; bottom: 28px; z-index: 3; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: 0.7rem; text-align: left;
}
.feature__badge-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--gold); line-height: 1; }
.feature__badge span { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); line-height: 1.1; }
.feature__list { margin: 1.8rem 0; display: flex; flex-direction: column; gap: 1.3rem; }
.feature__list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature__list-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--white); color: var(--brand); box-shadow: var(--shadow-sm); }
.feature__list-icon svg { width: 24px; height: 24px; }
.feature__list strong { display: block; color: var(--brand-strong); font-size: 1.08rem; margin-bottom: 0.2rem; font-family: var(--font-display); font-weight: 600; }
.feature__list p { color: var(--text-muted); font-size: 0.94rem; }

/* ---------- Segurança jurídica (comparativo) ---------- */
.compare { display: grid; grid-template-columns: 1fr; gap: 1.3rem; margin-top: var(--sp-4); }
.compare__col { border-radius: var(--radius-lg); padding: 2rem 1.8rem; }
.compare__col--bad { background: #efe6d5; border: 1px solid var(--border); }
.compare__col--good { background: var(--brand-strong); color: var(--white); box-shadow: var(--shadow-lg); position: relative; }
.compare__head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.4rem; padding-bottom: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.15); }
.compare__col--bad .compare__head { border-bottom-color: var(--border); }
.compare__mark { width: 40px; height: 40px; border-radius: 50%; }
.compare__tag { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.compare__col--bad .compare__tag { color: var(--text-muted); }
.compare__col ul { display: flex; flex-direction: column; gap: 0.9rem; }
.compare__col li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.96rem; line-height: 1.4; }
.compare__col svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.compare__col--bad svg { color: #c67b6a; }
.compare__col--good svg { color: var(--mint-400); }
.compare__col--good li { color: rgba(231,241,237,0.92); }

/* ---------- Como funciona (steps) ---------- */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: var(--sp-4); counter-reset: step; }
.step { position: relative; background: var(--white); border-radius: var(--radius); padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.step__num {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--white);
  background: linear-gradient(150deg, var(--teal-700), var(--teal-900)); margin-bottom: 1.1rem; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { color: var(--text-muted); font-size: 0.94rem; }

/* ---------- Depoimentos (marquee vertical) ---------- */
.testi { background: var(--surface-mint); }
.testi-marquee {
  display: flex; justify-content: center; gap: 1.5rem; margin-top: var(--sp-4);
  max-height: 620px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}
.tm-col { flex: 1; max-width: 380px; }
.tm-col--md, .tm-col--lg { display: none; }
.tm-track { display: flex; flex-direction: column; gap: 1.3rem; list-style: none; margin: 0; padding: 0; }
.tm-track.play { animation: scrollY var(--dur, 44s) linear infinite; will-change: transform; }
.testi-marquee:hover .tm-track.play { animation-play-state: paused; }
@keyframes scrollY { to { transform: translateY(-50%); } }
.tm-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(255,255,255,0.85);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tm-stars { color: var(--gold); letter-spacing: 0.14em; font-size: 0.92rem; margin-bottom: 0.7rem; }
.tm-card p { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.04rem; line-height: 1.5; color: var(--brand-strong); }
.tm-person { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.2rem; }
.tm-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: #fff; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.tm-avatar--1 { background: linear-gradient(150deg, var(--teal-600), var(--teal-900)); }
.tm-avatar--2 { background: linear-gradient(150deg, var(--mint-400), var(--teal-700)); }
.tm-avatar--3 { background: linear-gradient(150deg, var(--gold), #b1863f); }
.tm-meta strong { display: block; color: var(--ink); font-size: 0.95rem; }
.tm-meta span { color: var(--text-muted); font-size: 0.82rem; }
@media (min-width: 700px) { .tm-col--md { display: block; } }
@media (min-width: 1000px) { .tm-col--lg { display: block; } }

/* ---------- CTA final ---------- */
.cta-final { background: linear-gradient(155deg, var(--teal-700), var(--teal-900)); color: var(--white); text-align: center; padding-block: clamp(3.5rem, 8vw, var(--sp-8)); position: relative; overflow: hidden; }
.cta-final::before, .cta-final::after { content: ""; position: absolute; border-radius: 50%; background: rgba(155,207,193,0.12); }
.cta-final::before { width: 320px; height: 320px; top: -120px; left: -80px; }
.cta-final::after { width: 260px; height: 260px; bottom: -120px; right: -60px; }
.cta-final__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cta-final .hand { color: var(--mint-400); }
.cta-final h2 { color: var(--white); font-size: var(--step-3); }
.cta-final p { color: rgba(231,241,237,0.85); font-size: var(--step-1); max-width: 48ch; }
.cta-final .btn-wa { margin-top: 0.8rem; }

/* ---------- Footer ---------- */
.footer { background: #18271f; color: rgba(244,238,225,0.78); padding-top: clamp(3rem, 6vw, 5rem); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.brand--footer { display: flex; align-items: center; gap: 0.85rem; }
.brand__fmark { width: 62px; height: 62px; object-fit: contain; flex-shrink: 0; }
.brand__ftext { display: flex; flex-direction: column; line-height: 1.05; }
.brand__ftext strong { font-family: var(--font-display); font-weight: 600; font-size: 1.55rem; letter-spacing: 0.05em; color: #f4eee1; }
.brand__ftext small { font-family: var(--font-display); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.52em; color: var(--gold); }
.footer__brand p { margin-top: 1.1rem; font-size: 0.94rem; max-width: 34ch; }
.footer__hand { font-size: 1.5rem !important; color: var(--mint-400) !important; margin-top: 0.8rem !important; }
.footer__col h4 { color: #fff; font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a { font-size: 0.95rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--mint-400); }
.footer__contact li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.94rem; }
.footer__contact svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--mint-400); margin-top: 2px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.4rem; }
.footer__bottom-inner { display: flex; flex-direction: column; gap: 0.5rem; justify-content: space-between; font-size: 0.85rem; }

/* ---------- 10. WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 80;
  width: 60px; height: 60px; border-radius: 50%; background: #1eb257; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(30,178,87,0.6);
  transition: transform 0.3s var(--ease); animation: wa-pulse 2.8s infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 12px 30px -8px rgba(30,178,87,0.6), 0 0 0 0 rgba(30,178,87,0.4); } 50% { box-shadow: 0 12px 30px -8px rgba(30,178,87,0.6), 0 0 0 12px rgba(30,178,87,0); } }

/* ---------- 11. Reveal / acessibilidade ---------- */
.reveal { opacity: 0; transform: translateY(26px) scale(0.986); filter: blur(4px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: none; }
[data-delay="1"] { transition-delay: 0.09s; }
[data-delay="2"] { transition-delay: 0.18s; }
[data-delay="3"] { transition-delay: 0.27s; }

/* ---------- Motion premium ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes floatyTag { 0%, 100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-8px) rotate(-5deg); } }
@keyframes floatyRot { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(5deg); } }
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Entrada do hero em cascata (sem depender de JS) */
.hero__eyebrow { animation: fadeUp 0.6s var(--ease) both; }
.hero h1 { animation: fadeUp 0.75s 0.08s var(--ease) both; }
.hero__sub { animation: fadeUp 0.75s 0.18s var(--ease) both; }
.hero__cta { animation: fadeUp 0.75s 0.28s var(--ease) both; }
.hero__badges { animation: fadeUp 0.75s 0.38s var(--ease) both; }
.hero__media { animation: fadeUp 0.9s 0.22s var(--ease) both; }

/* Flutuações sutis */
.leaf-deco { animation: floatyRot 13s ease-in-out infinite; }
.hero__bg svg:nth-child(2) { animation-duration: 17s; animation-direction: reverse; }
.hero__tag-hand { animation: floatyTag 5.5s ease-in-out infinite; }
.hero__chip { animation: floaty 6.5s ease-in-out infinite 0.3s; }

/* Micro-interações nos ícones */
.service-card__icon, .value-card__icon { transition: transform 0.4s var(--ease); }
.service-card:hover .service-card__icon, .value-card:hover .value-card__icon { transform: scale(1.07) rotate(-3deg); }
.step:hover .step__num { transform: scale(1.06); transition: transform 0.35s var(--ease); }

/* CTA final com gradiente vivo */
.cta-final { background: linear-gradient(120deg, var(--teal-700), var(--teal-900), var(--teal-700)); background-size: 220% 220%; animation: gradientShift 16s ease infinite; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .wa-float, .leaf-deco, .hero__tag-hand, .hero__chip, .cta-final { animation: none; }
  .testi-marquee { max-height: none; overflow: visible; -webkit-mask-image: none; mask-image: none; flex-wrap: wrap; }
  .tm-track { animation: none !important; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

.placeholder-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); background: rgba(201,163,91,0.12);
  padding: 0.2rem 0.6rem; border-radius: 999px; vertical-align: middle;
}
.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 200; background: var(--brand); color: #fff;
  padding: 0.7rem 1.2rem; border-radius: 12px; transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   Breakpoints
   ============================================================ */
@media (min-width: 600px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: row; }
}
@media (min-width: 900px) {
  .nav { display: block; }
  .menu-toggle { display: none; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .about__grid { grid-template-columns: 0.9fr 1.1fr; }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .feature__grid { grid-template-columns: 0.9fr 1.1fr; }
  .essence__grid { grid-template-columns: 1.05fr 1fr; }
  .cursos__grid { grid-template-columns: 0.82fr 1.18fr; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1.4fr; gap: 3rem; }
}
@media (min-width: 1100px) {
  .hero h1 { font-size: var(--step-4); }
}
