/* ═══════════════════════════════════════════════════════════
   ELO ASSESSORIA EMPRESARIAL
   Design system: Azul-noite institucional + champagne premium
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg:        #0B1220;
  --bg-2:      #0F1828;
  --bg-3:      #131F33;
  --panel:     #16223A;
  --border:    rgba(255,255,255,.08);
  --border-2:  rgba(255,255,255,.14);
  --text:      #EDEFF5;
  --text-2:    #C8D0E0;
  --muted:     #8B96AC;
  --accent:    #C9A66B;
  --accent-2:  #E0C28A;
  --accent-3:  #8C7042;
  --blue:      #6B92C9;
  --green:     #8BC9A6;
  --shadow:    0 30px 80px -30px rgba(0,0,0,.6);

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:    16px;
  --radius-lg: 28px;
  --radius-sm: 10px;

  --max:       1240px;
  --pad:       clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }

/* ─── BG MESH ─────────────────────────────────────────────── */

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
}
.m1 { width: 600px; height: 600px; background: #C9A66B; top: -200px; left: -150px; opacity: .15; }
.m2 { width: 500px; height: 500px; background: #6B92C9; top: 30%; right: -100px; opacity: .18; }
.m3 { width: 700px; height: 700px; background: #16223A; bottom: -200px; left: 40%; opacity: .8; }
.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .4;
  mix-blend-mode: overlay;
}

/* ─── COMMON ──────────────────────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--text);
}
h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4.5vw, 54px); }
h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 600; }
h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .14em; font-family: var(--sans); font-weight: 600; color: var(--muted); }

em { font-style: italic; color: var(--accent-2); font-weight: 500; }

.section__head {
  max-width: 760px;
  margin: 0 auto clamp(48px, 7vw, 96px);
  text-align: center;
}
.section__head .eyebrow { margin-bottom: 20px; }
.section__head h2 { margin-bottom: 16px; }
.section__head p { color: var(--text-2); font-size: 17px; max-width: 600px; margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -.005em;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%);
  color: #1a1208;
  box-shadow: 0 8px 24px rgba(201,166,107,.25);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201,166,107,.4);
}
.btn--ghost {
  background: rgba(255,255,255,.04);
  border-color: var(--border-2);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--accent);
}

/* ─── REVEAL (set initial state; GSAP overrides) ─── */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }

/* ─── NAV ─────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad);
  transition: all .3s ease;
}
.nav.is-scrolled {
  background: rgba(11,18,32,.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px var(--pad);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.nav__brand em {
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
.nav__menu {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.nav__menu a {
  color: var(--text-2);
  font-weight: 400;
  position: relative;
}
.nav__menu a:hover { color: var(--accent); }
.nav__menu a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav__menu a:hover::after { width: 100%; }

.nav__cta { font-size: 14px; padding: 10px 20px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span {
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: .25s;
}

/* ─── HERO ────────────────────────────────────────────────── */

.hero {
  padding: 160px var(--pad) 100px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero__inner { max-width: 720px; }
.hero__title {
  margin: 24px 0 28px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__line { display: block; }

/* ─── TEXT ROTATOR ─────────────────────────────────────────
   Vanilla port of the motion/react TextRotate component:
   word-level pill with per-character stagger via CSS transitions
   (spring approximated by cubic-bezier overshoot).
   ─────────────────────────────────────────────────────────── */
.rotator {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-family: var(--serif);
  font-style: italic;
}
.rotator__sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.rotator__pill {
  display: inline-flex;
  align-items: center;
  padding: .08em .32em .14em;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%);
  color: #1a1208;
  overflow: hidden;
  box-shadow: 0 14px 36px -10px rgba(201,166,107,.4);
  position: relative;
  transition: background .6s ease;
}
.rotator__inner {
  display: inline-flex;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.rotator__char {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1),
              opacity .35s ease;
}
.rotator__char.is-in { transform: translateY(0); opacity: 1; }
.rotator__char.is-out { transform: translateY(-120%); opacity: 0; }
.rotator__char--space { width: .25em; }

/* Color variants — cycle on each word to keep it lively while staying brand */
.rotator__pill.v-1 { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%); }
.rotator__pill.v-2 { background: linear-gradient(135deg, #C24E4E 0%, #7E2E2E 100%); color: #fff5f0; box-shadow: 0 14px 36px -10px rgba(194,78,78,.4); }
.rotator__pill.v-3 { background: linear-gradient(135deg, var(--blue) 0%, #3F5B86 100%); color: #f0f4fa; box-shadow: 0 14px 36px -10px rgba(107,146,201,.4); }
.rotator__pill.v-4 { background: linear-gradient(135deg, #4D8C6B 0%, #2C5A41 100%); color: #f0faf3; box-shadow: 0 14px 36px -10px rgba(77,140,107,.4); }
.rotator__pill.v-5 { background: linear-gradient(135deg, #8C7042 0%, #5A4626 100%); color: #fff8ec; }
.rotator__pill.v-6 { background: linear-gradient(135deg, #8B5CF6 0%, #4F37A0 100%); color: #f3efff; box-shadow: 0 14px 36px -10px rgba(139,92,246,.4); }
.hero__sub {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-2);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  transition: all .2s ease;
}
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip--accent {
  background: linear-gradient(135deg, rgba(201,166,107,.18), rgba(140,112,66,.18));
  border-color: rgba(201,166,107,.4);
  color: var(--accent-2);
}

/* Visual lateral — card stack premium */
.hero__visual {
  position: relative;
  height: 480px;
}
.card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.card-stack__item {
  position: absolute;
  width: 86%;
  padding: 22px 24px;
  background: linear-gradient(160deg, rgba(22,34,58,.88) 0%, rgba(15,24,40,.94) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.s1 { top: 30px; right: 0; z-index: 3; animation: float 6s ease-in-out infinite; }
.s2 { top: 200px; left: 0; z-index: 2; width: 70%; animation: float 7s ease-in-out infinite .8s; }
.s3 { bottom: 0; right: 20px; z-index: 1; width: 70%; animation: float 8s ease-in-out infinite 1.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cs-label {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.cs-value {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.cs-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
.cs-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  overflow: hidden;
}
.cs-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}
.cs-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #14260E;
  background: linear-gradient(135deg, var(--green) 0%, #5FA37C 100%);
  margin-bottom: 6px;
}

/* ─── TRUST BAR ───────────────────────────────────────────── */

.trust {
  padding: 60px var(--pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(15,24,40,.4) 0%, rgba(11,18,32,.7) 100%);
  backdrop-filter: blur(10px);
}
.trust__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.trust__item { flex: 1; min-width: 160px; text-align: center; }
.trust__num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.trust__label {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.4;
}
.trust__divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--border-2), transparent);
}

/* ─── ÁREAS / BENTO ───────────────────────────────────────── */

.areas {
  padding: clamp(80px, 12vw, 140px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.bento__card {
  background: linear-gradient(165deg, rgba(22,34,58,.6) 0%, rgba(15,24,40,.85) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all .35s cubic-bezier(.2,.6,.2,1);
  backdrop-filter: blur(10px);
}
.bento__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201,166,107,.08), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}
.bento__card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,166,107,.3);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.6);
}
.bento__card:hover::before { opacity: 1; }

.b-1 { grid-column: span 3; }
.b-2 { grid-column: span 3; }
.b-3 { grid-column: span 6; background: linear-gradient(135deg, rgba(140,112,66,.18) 0%, rgba(15,24,40,.85) 60%); border-color: rgba(201,166,107,.22); }
.b-4 { grid-column: span 2; }
.b-5 { grid-column: span 2; }
.b-6 { grid-column: span 2; }
.b-7 { grid-column: span 6; background: linear-gradient(135deg, rgba(107,146,201,.15) 0%, rgba(15,24,40,.85) 60%); border-color: rgba(107,146,201,.22); }

.bento__num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: rgba(201,166,107,.25);
  letter-spacing: -.04em;
}
.bento__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,166,107,.18), rgba(140,112,66,.12));
  border: 1px solid rgba(201,166,107,.22);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.bento__icon svg { width: 28px; height: 28px; }

.bento__card h3 { margin-bottom: 12px; }
.bento__card p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.bento__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bento__list li {
  font-size: 13.5px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.bento__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--accent);
}

/* ─── DIFERENCIAIS ────────────────────────────────────────── */

.diff {
  padding: clamp(80px, 12vw, 140px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.diff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.diff__item {
  padding: 36px;
  background: rgba(15,24,40,.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .35s cubic-bezier(.2,.6,.2,1);
  position: relative;
  overflow: hidden;
}
.diff__item:hover {
  border-color: rgba(201,166,107,.3);
  transform: translateY(-2px);
}
.diff__no {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--accent);
  letter-spacing: .14em;
  margin-bottom: 14px;
  font-weight: 500;
}
.diff__item h3 { margin-bottom: 12px; }
.diff__item p { color: var(--text-2); font-size: 15.5px; }

/* ─── MÉTODO / TIMELINE ───────────────────────────────────── */

.method {
  padding: clamp(80px, 12vw, 140px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .4;
  z-index: 0;
}
.step {
  position: relative;
  padding: 28px 24px;
  background: rgba(15,24,40,.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .35s cubic-bezier(.2,.6,.2,1);
  z-index: 1;
}
.step:hover {
  border-color: rgba(201,166,107,.3);
  transform: translateY(-3px);
}
.step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #1a1208;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  letter-spacing: -.01em;
  box-shadow: 0 6px 20px rgba(201,166,107,.3);
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { color: var(--text-2); font-size: 14.5px; }

/* ─── DEPOIMENTOS ─────────────────────────────────────────── */

.testi {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.testi .section__head {
  padding: 0 var(--pad);
}
.testi__rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 20px var(--pad) 60px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  perspective: 1000px;
}
.testi__rail::-webkit-scrollbar { display: none; }

.testi__card {
  flex: 0 0 clamp(300px, 38vw, 440px);
  min-height: 320px;
  padding: 36px;
  background: linear-gradient(160deg, rgba(22,34,58,.85) 0%, rgba(15,24,40,.95) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform .5s cubic-bezier(.2,.6,.2,1), border-color .3s ease;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.testi__card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(201,166,107,.3);
}
.testi__quote { color: var(--accent); margin-bottom: 16px; }
.testi__card p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -.01em;
}
.testi__person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #1a1208;
  font-size: 14px;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.testi__person strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.testi__person span {
  font-size: 12.5px;
  color: var(--muted);
}

.testi__nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.testi__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-2);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.testi__btn:hover {
  background: rgba(201,166,107,.12);
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── FAQ ─────────────────────────────────────────────────── */

.faq {
  padding: clamp(80px, 12vw, 140px) var(--pad);
  max-width: 900px;
  margin: 0 auto;
}
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: rgba(15,24,40,.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq__item[open] {
  border-color: rgba(201,166,107,.3);
  background: rgba(22,34,58,.7);
}
.faq__item summary {
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent-2); }

.faq__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  position: relative;
  flex-shrink: 0;
  transition: all .3s ease;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 1.5px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { border-color: var(--accent); background: rgba(201,166,107,.12); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }

.faq__body {
  padding: 0 26px 24px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  animation: fadeIn .35s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ─── CTA FINAL ───────────────────────────────────────────── */

.cta {
  padding: clamp(80px, 12vw, 140px) var(--pad);
}
.cta__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 64px);
  background: linear-gradient(160deg, rgba(22,34,58,.85) 0%, rgba(11,18,32,.95) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.cta__inner::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(201,166,107,.25), transparent 50%);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.cta__inner .eyebrow { margin-bottom: 20px; }
.cta__inner h2 { margin-bottom: 22px; }
.cta__inner p { color: var(--text-2); font-size: 17px; margin-bottom: 36px; }
.cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ──────────────────────────────────────────────── */

.foot {
  border-top: 1px solid var(--border);
  background: rgba(8,13,22,.7);
  padding: 60px var(--pad) 28px;
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.foot__brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.foot__brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.foot__brand span { color: var(--muted); font-size: 14px; }

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.foot__cols > div { display: flex; flex-direction: column; gap: 10px; }
.foot__cols h4 { margin-bottom: 6px; }
.foot__cols a {
  font-size: 14px;
  color: var(--text-2);
}
.foot__cols a:hover { color: var(--accent); }

.foot__bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

/* ─── WHATSAPP FLOAT ──────────────────────────────────────── */

.wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 16px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(37,211,102,.36);
  font-size: 14px;
  font-weight: 600;
  transition: all .25s ease;
}
.wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 48px rgba(37,211,102,.5);
}
.wa__pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid #25D366;
  animation: pulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.35); opacity: 0; }
}
.wa__label { white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 60px; padding-top: 130px; }
  .hero__visual { height: 380px; }
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }

  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-1, .b-2, .b-3, .b-4, .b-5, .b-6, .b-7 { grid-column: span 2; }

  .diff__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }

  .foot__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .trust__inner { gap: 24px; }
  .trust__divider { display: none; }
  .trust__item { flex: 1 1 calc(50% - 12px); min-width: 130px; }

  .bento { grid-template-columns: 1fr; gap: 14px; }
  .b-1, .b-2, .b-3, .b-4, .b-5, .b-6, .b-7 { grid-column: span 1; }
  .bento__card { padding: 26px; }

  .steps { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .foot__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .foot__ts { display: none; }

  .wa { padding: 12px 18px 12px 14px; bottom: 16px; right: 16px; }
  .wa__label { display: none; }

  .testi__card { flex-basis: 86%; padding: 28px; }
  .testi__card p { font-size: 17px; }

  .hero { padding-top: 110px; padding-bottom: 60px; }
  .hero__visual { height: 360px; }
  .card-stack__item { padding: 18px; }
  .s1 { width: 90%; top: 10px; }
  .s2 { width: 74%; top: 170px; }
  .s3 { width: 74%; bottom: 0; }

  .cta__inner { padding: 36px 22px; }
}

/* ═══════════════════════════════════════════════════════════
   PREFERS REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
