/* ===========================================================
   DELEGA AI — STYLE.CSS
   Costa Estratégica Design System
   Sora (display) + Inter (body) | Ocean + Gold + Terra palette
   =========================================================== */

/* === FONTES === */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===========================================================
   TOKENS
   =========================================================== */
:root {
  /* — Oceânicos — */
  --ocean-abyss:    #0E1B2E;
  --ocean-deep:     #152744;
  --ocean-midnight: #1A3355;
  --ocean-blue:     #2B5BA8;
  --ocean-bright:   #3B7FD4;

  /* — Areia — */
  --sand-warm:      #F5EFE0;
  --sand-light:     #FAF6EE;
  --cream:          #FDFAF4;

  /* — Dourado / Âmbar — */
  --gold-light:     #D4A843;
  --gold-warm:      #B8893A;
  --gold-glow:      rgba(212, 168, 67, 0.18);

  /* — Terracota — */
  --terra-light:    #C9836A;
  --terra-mid:      #B5614A;

  /* — Texto on dark — */
  --t1: #FFFFFF;
  --t2: rgba(255,255,255,0.75);
  --t3: rgba(255,255,255,0.45);

  /* — Texto on light — */
  --tl1: #1A1209;
  --tl2: rgba(26,18,9,0.60);
  --tl3: rgba(26,18,9,0.36);

  /* — Bordas — */
  --bd:     rgba(255,255,255,0.07);
  --bd2:    rgba(255,255,255,0.13);
  --bd-g:   rgba(212,168,67,0.28);
  --bd-l:   rgba(0,0,0,0.07);

  /* — Fontes — */
  --f-display: 'Sora', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;

  /* — Easing — */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===========================================================
   RESET
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--ocean-abyss);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===========================================================
   NOISE / GRAIN OVERLAY
   =========================================================== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ===========================================================
   SCROLL PROGRESS BAR
   =========================================================== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--terra-light));
  z-index: 200;
  transition: width 0.05s linear;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ocean-abyss); }
::-webkit-scrollbar-thumb {
  background: rgba(212,168,67,0.3);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(212,168,67,0.5); }

/* ===========================================================
   LAYOUT
   =========================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.section { padding: 130px 0; position: relative; overflow: hidden; }
.section-light { background: var(--cream); color: var(--tl1); }
.section-sand  { background: var(--sand-warm); color: var(--tl1); }
.section-dark  { background: var(--ocean-deep); }
.section-abyss { background: var(--ocean-abyss); }

/* ===========================================================
   KEYFRAMES
   =========================================================== */
@keyframes borderSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes breathe {
  0%, 100% { opacity: 0.12; transform: scale(1); }
  50%       { opacity: 0.22; transform: scale(1.08); }
}
@keyframes rayPulse {
  0%, 100% { opacity: 0.22; }
  50%       { opacity: 0.5; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ===========================================================
   REVEAL SYSTEM (JS-driven)
   =========================================================== */
.rv {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}
.rv.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Text line split reveal */
.rv-line {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.rv-line.is-visible { opacity: 1; transform: translateY(0); }

/* ===========================================================
   BADGE
   =========================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid var(--bd-g);
  background: rgba(212,168,67,0.05);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
}
.badge-light {
  border-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
  color: var(--terra-light);
}

/* ===========================================================
   BOTÃO GLASS — sombra vibrante + borda fina
   =========================================================== */
.btn-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  border-radius: 999px;
  border: 1px solid rgba(212,168,67,0.3);
  background: linear-gradient(
    135deg,
    rgba(212,168,67,0.10) 0%,
    rgba(212,168,67,0.03) 40%,
    rgba(255,255,255,0.02) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 0 20px rgba(212,168,67,0.15),
    0 0 60px rgba(212,168,67,0.08);
  transition: box-shadow 0.35s var(--ease-out-expo),
              border-color 0.35s,
              color 0.25s,
              background 0.35s,
              transform 0.35s var(--ease-out-expo);
}
.btn-glass:hover {
  color: #fff;
  border-color: rgba(212,168,67,0.55);
  background: linear-gradient(
    135deg,
    rgba(212,168,67,0.18) 0%,
    rgba(212,168,67,0.06) 40%,
    rgba(255,255,255,0.03) 100%
  );
  box-shadow:
    0 0 28px rgba(212,168,67,0.3),
    0 0 80px rgba(212,168,67,0.14),
    0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
/* Tamanhos */
.btn-glass-lg { font-size: 17px; padding: 20px 52px; }
.btn-glass-xl { font-size: 19px; padding: 22px 60px; }

/* Sólido */
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  color: var(--ocean-abyss);
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 40px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-solid:hover {
  background: #e6b84a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.25);
}

/* Ghost */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--t2);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--bd2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ===========================================================
   GLASS CARD — com top-shine e tilt 3D (JS)
   =========================================================== */
.card-glass {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-quint);
  transform: perspective(800px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  will-change: transform;
}
/* Shine line no topo */
.card-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
/* Spotlight que segue o mouse (JS seta --mx, --my) */
.card-glass::after {
  content: '';
  position: absolute;
  top: var(--my, 50%);
  left: var(--mx, 50%);
  width: 250px; height: 250px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,168,67,0.08), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card-glass:hover {
  border-color: rgba(212,168,67,0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.card-glass:hover::after { opacity: 1; }

/* ===========================================================
   AMBIENT LIGHTS
   =========================================================== */
.ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.ambient-gold {
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  filter: blur(80px);
  opacity: 0.14;
  animation: breathe 9s ease-in-out infinite;
}
.ambient-ocean {
  background: radial-gradient(circle, var(--ocean-blue), transparent 70%);
  filter: blur(100px);
  opacity: 0.12;
  animation: breathe 12s ease-in-out infinite reverse;
}

/* Hero ray */
.hero-ray {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 55%;
  background: linear-gradient(to bottom, transparent, rgba(212,168,67,0.5) 40%, transparent);
  animation: rayPulse 4s ease-in-out infinite;
}

/* Horizon line */
.horizon-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.18;
}

/* ===========================================================
   NAV
   =========================================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(14,27,46,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--bd);
  transition: box-shadow 0.3s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.nav-logo span { color: var(--gold-light); }
.nav-sub {
  font-family: var(--f-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--t3);
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ===========================================================
   HERO
   =========================================================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--ocean-abyss);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.hero-headline .accent {
  color: var(--gold-light);
  font-weight: 300;
  font-style: italic;
}
.hero-bridge {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--t2);
  margin: 32px 0;
  line-height: 1.7;
  max-width: 520px;
}
.hero-solve {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 40px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 13px;
  color: var(--t3);
  font-weight: 500;
}
.urgency-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
  animation: breathe 2s ease-in-out infinite;
}
.hero-img {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.hero-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(212,168,67,0.15);
  pointer-events: none;
}

/* ===========================================================
   PROBLEMA
   =========================================================== */
.problem-statement {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--bd);
}
.problem-num {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 200;
  line-height: 1;
  color: var(--t3);
  min-width: 56px;
  opacity: 0.3;
}
.problem-text {
  font-size: 18px;
  color: var(--t2);
  line-height: 1.75;
}
.problem-text strong { color: var(--t1); font-weight: 600; }

/* ===========================================================
   CFA — 3 RODADAS
   =========================================================== */
.rounds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.round-card {
  background: var(--sand-light);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 24px;
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.round-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.round-num {
  font-family: var(--f-display);
  font-size: 88px;
  font-weight: 200;
  line-height: 1;
  color: var(--terra-light);
  opacity: 0.14;
  position: absolute;
  top: 8px; right: 16px;
}
.round-label {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 16px;
}
.round-title {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--tl1);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.round-time {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--tl2);
  margin-bottom: 16px;
  padding: 5px 14px;
  background: rgba(0,0,0,0.04);
  border-radius: 999px;
  display: inline-block;
}
.round-desc {
  font-size: 15px;
  color: var(--tl2);
  line-height: 1.7;
}
.round-result {
  margin-top: 24px;
  padding: 12px 16px;
  background: rgba(201,131,106,0.08);
  border: 1px solid rgba(201,131,106,0.15);
  border-radius: 12px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--terra-light);
}
.process-img-wrap {
  margin-top: 60px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}
.process-img-wrap img { width: 100%; height: 340px; object-fit: cover; }

/* ===========================================================
   BENEFÍCIOS
   =========================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.benefit-icon-wrap {
  width: 52px; height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
}
.benefit-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.benefit-title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.benefit-desc {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
}

/* ===========================================================
   COMPARAÇÃO
   =========================================================== */
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.comparison-table th {
  padding: 16px 20px;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 2px solid var(--bd-l);
}
.comparison-table th:first-child { color: var(--tl2); }
.comparison-table th.hl {
  background: var(--ocean-abyss);
  color: var(--gold-light);
  border-radius: 16px 16px 0 0;
  text-align: center;
}
.comparison-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--tl2);
  border-bottom: 1px solid var(--bd-l);
  vertical-align: top;
  line-height: 1.6;
}
.comparison-table td:first-child {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--tl1);
  font-size: 13px;
}
.comparison-table td.hl {
  background: rgba(14,27,46,0.04);
  color: var(--ocean-abyss);
  font-weight: 600;
  text-align: center;
}
.comparison-table tr:last-child td { border-bottom: none; }
.ck { color: #4CAF50; font-weight: 700; }
.cx { color: #bbb; }

/* ===========================================================
   GARANTIA
   =========================================================== */
.guarantee-box {
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(212,168,67,0.02));
  border: 1px solid var(--bd-g);
  border-radius: 32px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guarantee-box::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.35), transparent);
}
.guarantee-icon { width: 64px; height: 64px; margin: 0 auto 20px; }
.guarantee-icon img { width: 100%; height: 100%; object-fit: contain; }
.stats-row {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--bd-g);
  flex-wrap: wrap;
}
.stat-item { text-align: center; min-width: 120px; }
.stat-num {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-family: var(--f-display);
  font-size: 11px;
  color: var(--t3);
  margin-top: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===========================================================
   VAGAS / CTA FINAL
   =========================================================== */
.vagas-box { text-align: center; max-width: 720px; margin: 0 auto; }
.vagas-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border-radius: 999px;
  background: rgba(212,168,67,0.06);
  border: 1px solid var(--bd-g);
  margin-bottom: 32px;
}
.vagas-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px var(--gold-light);
  animation: breathe 2s ease-in-out infinite;
}
.vagas-pill-text {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.vagas-headline {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}
.vagas-sub {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 44px;
}
.laptop-wrap {
  margin-top: 56px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--bd2);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.laptop-wrap img { width: 100%; height: 320px; object-fit: cover; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq-item { border-bottom: 1px solid var(--bd); overflow: hidden; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-q-text {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--t1);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--bd2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--gold-light);
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold-light);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out-expo); }
.faq-answer-inner {
  padding: 0 0 26px;
  font-size: 15px;
  color: var(--t2);
  line-height: 1.75;
}

/* ===========================================================
   FOOTER
   =========================================================== */
footer {
  background: var(--ocean-abyss);
  padding: 52px 0;
  border-top: 1px solid var(--bd);
  text-align: center;
}
.footer-logo {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.footer-logo span { color: var(--gold-light); }
.footer-sub {
  font-family: var(--f-display);
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 4px 0 28px;
  font-weight: 500;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--t3);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { margin-top: 28px; font-size: 12px; color: var(--t3); }

/* ===========================================================
   TRANSFORMAÇÃO (grid com imagem)
   =========================================================== */
.transform-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.transform-img {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--bd2);
  aspect-ratio: 4/5;
  flex-shrink: 0;
}
.transform-img img { width: 100%; height: 100%; object-fit: cover; }
.transform-text { display: flex; flex-direction: column; gap: 0; }

/* ===========================================================
   SOBRE MIM (JV)
   =========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.about-photo-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--bd2);
  aspect-ratio: 3/4;
}
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-name {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-name span { color: var(--gold-light); }
.about-bio {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.75;
  margin-bottom: 28px;
}
.about-credentials {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-credentials li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--t2);
  line-height: 1.65;
}
.about-credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px rgba(212,168,67,0.4);
}
.about-credentials li strong { color: var(--t1); font-weight: 600; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .rounds-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { gap: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 260px; margin: 0 auto; }
  .transform-grid { grid-template-columns: 1fr; }
  .transform-img { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 88px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .guarantee-box { padding: 40px 24px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 12px; }
  nav .nav-cta { display: none; }
}
