/* ============================================================
   Êxito Trabalhista — Landing Page
   Design system + responsive styles
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --ink:        oklch(0.24 0.02 162);
  --ink-soft:   oklch(0.43 0.018 162);
  --ink-faint:  oklch(0.55 0.015 162);

  --brand:      oklch(0.40 0.072 162);   /* deep emerald — authority/êxito */
  --brand-deep: oklch(0.30 0.060 162);
  --brand-tint: oklch(0.96 0.022 162);   /* soft green wash */
  --brand-line: oklch(0.88 0.030 162);

  --cta:        oklch(0.62 0.145 150);   /* whatsapp-action green */
  --cta-deep:   oklch(0.54 0.140 150);
  --cta-glow:   oklch(0.62 0.145 150 / 0.35);

  --gold:       oklch(0.62 0.125 72);    /* warm amber — money values */
  --gold-tint:  oklch(0.95 0.040 80);

  --bg:         oklch(0.984 0.006 95);   /* warm cream */
  --surface:    oklch(1 0 0);
  --surface-2:  oklch(0.975 0.008 110);
  --line:       oklch(0.905 0.010 120);
  --line-soft:  oklch(0.945 0.008 120);

  /* Type */
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-serif: "Spectral", Georgia, serif;

  /* Layout */
  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px oklch(0.3 0.03 162 / 0.05), 0 2px 8px oklch(0.3 0.03 162 / 0.05);
  --shadow-md: 0 4px 14px oklch(0.3 0.03 162 / 0.08), 0 12px 32px oklch(0.3 0.03 162 / 0.07);
  --shadow-lg: 0 8px 24px oklch(0.3 0.03 162 / 0.10), 0 24px 60px oklch(0.3 0.03 162 / 0.10);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; text-wrap: balance; }
p { text-wrap: pretty; }
:focus-visible { outline: 3px solid var(--cta); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before { content: ""; width: 1.6rem; height: 2px; background: var(--gold); border-radius: 2px; }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.85rem, 4.2vw, 2.9rem); margin-top: 0.8rem; color: var(--brand-deep); }
.section-head h2 .hl { color: var(--gold); }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 0.9rem; }
.money { color: var(--gold); font-weight: 800; white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-weight: 700; font-size: 1.02rem; line-height: 1.1;
  padding: 1rem 1.5rem; border: none; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center; cursor: pointer;
}
.btn svg { width: 1.25em; height: 1.25em; }
.btn--cta {
  background: linear-gradient(180deg, var(--cta), var(--cta-deep));
  color: #fff; box-shadow: 0 6px 18px var(--cta-glow);
}
.btn--cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px var(--cta-glow); }
.btn--ghost { background: transparent; color: var(--brand); border: 1.5px solid var(--brand-line); }
.btn--ghost:hover { background: var(--brand-tint); }
.btn--lg { padding: 1.2rem 2rem; font-size: 1.1rem; }
.btn--block { width: 100%; }
.btn--light { background: #fff; color: var(--brand-deep); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.984 0.006 95 / 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line-soft); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.85rem; }
.brand { display: flex; align-items: center; gap: 0.65rem; }

/* ---------- Wordmark (text logo) ---------- */
.wordmark {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
  text-decoration: none;
}
.wordmark__main {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.85rem;
  letter-spacing: -0.005em;
  color: var(--brand-deep);
}
.wordmark__sub {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.34rem;
  padding-left: 0.06em;
}
.site-header .wordmark__main { color: #043f2a; }
.wordmark--footer .wordmark__main { font-size: 2.05rem; color: oklch(0.97 0.014 150); }
.wordmark--footer .wordmark__sub { color: var(--gold); }
.brand__name { font-weight: 800; font-size: 1.12rem; letter-spacing: -0.02em; line-height: 1; }
.brand__tag { font-size: 0.72rem; color: var(--ink-faint); font-weight: 600; letter-spacing: 0.02em; }
.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--brand-deep); font-size: 0.98rem; }
.header-phone svg { width: 1.05rem; height: 1.05rem; color: var(--cta); }
.header-cta { padding: 0.7rem 1.15rem; font-size: 0.95rem; white-space: nowrap; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(2.5rem, 6vw, 4rem); padding-bottom: clamp(3rem, 7vw, 5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 85% 0%, var(--brand-tint), transparent 70%),
    radial-gradient(50% 50% at 0% 100%, var(--gold-tint), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-copy { max-width: 38rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--surface); border: 1px solid var(--brand-line); color: var(--brand-deep);
  padding: 0.45rem 0.9rem; border-radius: 999px; font-size: 0.85rem; font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cta); box-shadow: 0 0 0 4px var(--cta-glow); }
.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem); margin-top: 1.25rem;
}
.hero h1 { color: var(--brand-deep); }
.hero h1 .hl { color: var(--gold); }
.hero .sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); margin-top: 1.25rem; max-width: 34rem; }
.hero-cta-row { display: flex; flex-direction: column; align-items: stretch; gap: 0.9rem; margin-top: 1.9rem; max-width: 30rem; }
.hero-cta-row .btn { width: 100%; justify-content: center; }
.hero-trust { display: flex; flex-wrap: nowrap; gap: 0.5rem 1.1rem; margin-top: 1.6rem; max-width: 30rem; padding: 0; }
.hero-trust li { display: flex; align-items: center; gap: 0.4rem; font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); list-style: none; white-space: nowrap; }
.hero-trust svg { width: 1.1rem; height: 1.1rem; color: var(--cta); flex-shrink: 0; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg);
  background: oklch(0.93 0.02 162);
  border: 1px solid var(--brand-line);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; display: block; }
.hero-photo .ph-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.78rem;
  color: var(--brand-deep); background: oklch(1 0 0 / 0.75); padding: 0.45rem 0.8rem;
  border-radius: 8px; text-align: center; max-width: 80%; line-height: 1.4;
}
.proof-card {
  position: absolute; left: -1.4rem; bottom: 1.6rem;
  display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--radius); padding: 1rem 1.15rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line); max-width: 20rem;
}
.proof-card .label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-faint); }
.proof-card .val { font-size: 1.55rem; font-weight: 800; color: var(--gold); line-height: 1.1; margin-top: 0.15rem; }
.proof-card .who { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.3rem; }
.proof-card .who b { color: var(--ink); }
.proof-card .proof-disclaimer { font-size: 0.68rem; color: var(--ink-faint); margin-top: 0.4rem; line-height: 1.35; }
.proof-badge {
  position: absolute; right: -0.6rem; top: 1.4rem;
  background: var(--brand-deep); color: #fff; border-radius: 14px; padding: 0.7rem 0.95rem;
  box-shadow: var(--shadow-md); text-align: center;
}
.proof-badge .n { font-size: 1.3rem; font-weight: 800; line-height: 1; }
.proof-badge .t { font-size: 0.72rem; opacity: 0.85; margin-top: 0.2rem; }

/* ============================================================
   PROBLEMA
   ============================================================ */
.problem { background: var(--surface); border-block: 1px solid var(--line-soft); }
.situations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.situation {
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}
.situation .check {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px;
  background: var(--brand-tint); color: var(--brand); display: grid; place-items: center;
}
.situation .check svg { width: 1.05rem; height: 1.05rem; }
.situation p { font-size: 1rem; color: var(--ink); }
.situation p + p { margin-top: 0.25rem; font-size: 0.93rem; color: var(--ink-soft); }
.situation p b { color: var(--brand-deep); }
.problem-cta-micro { font-size: 0.85rem; color: var(--ink-faint); }
.testimonials-disclaimer { font-size: 0.75rem; color: var(--ink-faint); max-width: 34rem; text-align: center; }
.problem-close {
  margin-top: 1.6rem; padding: 1.25rem 1.5rem; border-radius: var(--radius);
  background: var(--brand-tint); border: 1px solid var(--brand-line); color: var(--brand-deep);
  font-weight: 600; font-size: 1.06rem; display: flex; gap: 0.9rem; align-items: center;
}
.problem-close svg { width: 1.5rem; height: 1.5rem; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.6rem 1.7rem;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num {
  position: absolute; top: -18px; left: 1.6rem;
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(150deg, var(--brand), var(--brand-deep)); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.25rem; box-shadow: var(--shadow-md);
}
.step__icon { width: 2.4rem; height: 2.4rem; color: var(--cta); margin: 0.6rem 0 1rem; }
.step h3 { font-size: 1.25rem; }
.step p { color: var(--ink-soft); margin-top: 0.6rem; font-size: 1rem; }

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.benefits { background: var(--brand-deep); color: #fff; position: relative; overflow: hidden; }
.benefits::after {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background: radial-gradient(50% 60% at 90% 10%, oklch(0.45 0.08 162), transparent 70%);
}
.benefits .wrap { position: relative; z-index: 1; }
.benefits .eyebrow { color: oklch(0.85 0.06 150); }
.benefits .eyebrow::before { background: var(--gold); }
.benefits .section-head h2 { color: #fff; }
.benefits .section-head h2 .hl { color: var(--gold); }
.benefits .section-head p { color: oklch(0.88 0.04 162); }
.benefits .problem-cta-micro { color: oklch(0.78 0.04 162); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.benefit {
  display: flex; gap: 1rem; align-items: flex-start;
  background: oklch(0.34 0.05 162 / 0.6); border: 1px solid oklch(0.5 0.05 162 / 0.4);
  border-radius: var(--radius); padding: 1.3rem 1.4rem; backdrop-filter: blur(4px);
}
.benefit:last-child:nth-child(odd) { grid-column: 1 / -1; }
.benefit__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: oklch(0.62 0.145 150 / 0.18); color: oklch(0.82 0.13 150);
  display: grid; place-items: center;
}
.benefit__icon svg { width: 1.4rem; height: 1.4rem; }
.benefit h3 { font-size: 1.12rem; font-weight: 700; }
.benefit p { color: oklch(0.86 0.02 162); font-size: 0.96rem; margin-top: 0.3rem; }

/* ============================================================
   CTA INTERMEDIÁRIO
   ============================================================ */
.cta-banner { padding-block: clamp(3rem, 6vw, 4.5rem); }
.cta-banner-inner {
  background: linear-gradient(135deg, var(--gold), oklch(0.58 0.13 60));
  border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.2rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-banner-inner h2 { color: #fff; font-size: clamp(1.5rem, 3.5vw, 2.2rem); max-width: 30rem; }
.cta-banner-inner p { color: oklch(1 0 0 / 0.92); margin-top: 0.5rem; font-weight: 500; }
.cta-banner .cta-banner-text { flex: 1 1 22rem; }
.cta-banner-action { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.cta-banner-micro { color: oklch(1 0 0 / 0.75); font-size: 0.8rem; text-align: center; max-width: 16rem; }

@media (max-width: 600px) { .cta-banner-micro { max-width: 100%; text-align: left; } }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials { background: var(--surface); border-block: 1px solid var(--line-soft); }
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.tcard {
  display: flex; flex-direction: column; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm); position: relative;
}
.tcard__quote-mark { font-family: var(--font-serif); font-size: 3.4rem; line-height: 0.6; color: var(--brand-line); height: 1.2rem; }
.tcard blockquote { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--ink); line-height: 1.55; margin: 0.4rem 0 1.2rem; }
.tcard__foot { margin-top: auto; display: flex; align-items: center; gap: 0.85rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.tcard__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(150deg, var(--brand), var(--brand-deep)); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1rem;
}
.tcard__name { font-weight: 700; font-size: 0.98rem; line-height: 1.1; }
.tcard__city { font-size: 0.82rem; color: var(--ink-faint); line-height: 1.2; margin-top: 0.1rem; }
.tcard__value {
  margin-left: auto; text-align: right; font-weight: 800; color: var(--gold); font-size: 1.05rem; line-height: 1.1;
}
.tcard__value small { display: block; font-size: 0.66rem; font-weight: 700; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 0.35rem; }
.tcard__foot > span:not(.tcard__avatar):not(.tcard__value) { line-height: 1; display: flex; flex-direction: column; gap: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 48rem; margin-inline: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: var(--brand-line); box-shadow: var(--shadow-sm); }
.faq-q {
  list-style: none; cursor: pointer; padding: 1.2rem 1.4rem; display: flex; align-items: center;
  gap: 1rem; font-weight: 700; font-size: 1.05rem; color: var(--ink);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .ic { margin-left: auto; flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; transition: transform .25s ease, background .2s ease; }
.faq-q .ic svg { width: 1rem; height: 1rem; }
.faq-item[open] .faq-q .ic { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-a { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: 1rem; }
.faq-a p { max-width: 42rem; }
.faq-cta { margin-top: 2.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.faq-cta__title { font-size: 1.25rem; font-weight: 700; color: var(--brand-deep); }
.faq-cta__sub { color: var(--ink-soft); font-size: 1rem; max-width: 32rem; }

/* ============================================================
   FECHAMENTO + FORM
   ============================================================ */
.closing { background: linear-gradient(180deg, var(--brand-tint), var(--bg)); }
.closing-grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.closing-copy .urgency {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gold-tint);
  color: oklch(0.45 0.11 60); border: 1px solid oklch(0.8 0.09 75); padding: 0.45rem 0.9rem;
  border-radius: 999px; font-size: 0.85rem; font-weight: 700;
}
.closing-copy .urgency svg { width: 1rem; height: 1rem; }
.closing-copy h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-top: 1.2rem; color: var(--brand-deep); }
.closing-copy h2 .hl { color: var(--gold); }
.closing-copy p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 1rem; max-width: 32rem; }
.closing-copy .risk { margin-top: 1.4rem; font-weight: 700; color: var(--brand-deep); font-size: 1.15rem; }

/* WhatsApp CTA card (substitui o formulário) */
.cta-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.5rem); box-shadow: var(--shadow-lg); text-align: center;
}
.cta-card__icon {
  width: 66px; height: 66px; margin: 0 auto 1.4rem; border-radius: 19px;
  background: linear-gradient(180deg, var(--cta), var(--cta-deep)); color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 20px var(--cta-glow);
}
.cta-card__icon svg { width: 2rem; height: 2rem; }
.cta-card h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); margin-top: 0.2rem; }
.cta-card > p { color: var(--ink-soft); font-size: 1.02rem; margin: 0.75rem auto 1.8rem; max-width: 26rem; }
.cta-card__trust { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0.85rem; text-align: left; }
.cta-card__trust li { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 0.96rem; color: var(--ink); }
.cta-card__trust svg { width: 1.1rem; height: 1.1rem; color: var(--cta); flex-shrink: 0; }
.cta-card__micro { font-size: 0.82rem; color: var(--ink-soft); text-align: left; margin-top: 1rem; }
.cta-card__socials { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line-soft); }
.cta-card__socials span { font-size: 0.88rem; font-weight: 600; color: var(--ink-faint); margin-right: 0.2rem; }

/* Social buttons */
.social {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-tint); color: var(--brand-deep); border: 1px solid var(--brand-line);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.social:hover { transform: translateY(-2px); background: var(--brand); color: #fff; border-color: var(--brand); }
.social svg { width: 1.3rem; height: 1.3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: oklch(0.85 0.01 162); padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand .brand { margin-bottom: 0.2rem; }
.footer-brand p { color: oklch(0.72 0.01 162); margin-top: 1rem; font-size: 0.95rem; max-width: 26rem; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: oklch(0.62 0.02 150); margin-bottom: 0.9rem; }
.footer-col a, .footer-col p { display: flex; align-items: center; gap: 0.5rem; color: oklch(0.85 0.01 162); font-size: 0.96rem; margin-bottom: 0.6rem; }
.footer-col a:hover { color: #fff; }
.footer-col svg { width: 1rem; height: 1rem; color: var(--cta); flex-shrink: 0; }
.footer-bottom { margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid oklch(0.35 0.01 162); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.84rem; color: oklch(0.62 0.01 162); }
.footer-disclaimer { max-width: 60rem; font-size: 0.8rem; color: oklch(0.55 0.01 162); line-height: 1.55; margin-top: 1rem; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.6rem); bottom: clamp(1rem, 3vw, 1.6rem); z-index: 60;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--cta); color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 1.1rem; border-radius: 999px; box-shadow: 0 8px 24px var(--cta-glow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-2px) scale(1.02); }
.wa-float svg { width: 1.5rem; height: 1.5rem; }
.wa-float .wa-label { display: inline; white-space: nowrap; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1); }
  .js .reveal.in { opacity: 1; transform: none; }
  .js .reveal[data-d="1"] { transition-delay: .08s; }
  .js .reveal[data-d="2"] { transition-delay: .16s; }
  .js .reveal[data-d="3"] { transition-delay: .24s; }
  .js .reveal[data-d="4"] { transition-delay: .32s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 26rem; margin-inline: auto; width: 100%; }
  .closing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit:last-child:nth-child(odd) { grid-column: auto; }
  .situations { grid-template-columns: 1fr; }
  .hero-cta-row { max-width: 100%; }
  .hero-trust { max-width: 100%; gap: 0.5rem 0.9rem; flex-wrap: wrap; }
  .hero-trust li { white-space: normal; }
  .header-phone span { display: none; }
  .header-phone { font-size: 0; gap: 0; }
  .header-phone svg { width: 1.3rem; height: 1.3rem; }
  .header-cta { display: none; }
  .tcards {
    grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: 84%;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--pad);
    margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .tcards::-webkit-scrollbar { display: none; }
  .tcard { scroll-snap-align: start; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .cta-banner-inner .btn { width: 100%; }
  .cta-banner .cta-banner-text { flex: none; }
  .cta-banner-action { width: 100%; align-items: stretch; }
  .proof-card {
    position: static;
    margin-top: 0.75rem;
    max-width: 100%;
    border-radius: var(--radius);
  }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 0.95rem; }
}
