/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --preto-hero:   #101217;
  --navy-dark:    #363A4C;
  --gold:         #F1CD71;
  --gold-dark:    #d4a83c;
  --off-white:    #F4F5FA;
  --cream:        #F3F1ED;
  --carvao:       #323134;
  --vermelho:     #A71011;
  --branco:       #FFFFFF;
  --font:         'Plus Jakarta Sans', sans-serif;
  --ease:         cubic-bezier(.22,.61,.36,1);
}

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

/* ─── UTILITY ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.gold { color: var(--gold); }
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ─── BOTÕES ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 4px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .22s var(--ease);
  letter-spacing: .02em;
}
.btn-gold { background: var(--gold); color: var(--preto-hero); border-color: var(--gold); }
.btn-gold:hover { background: #e8be52; border-color: #e8be52; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(241,205,113,.3); }
.btn-outline { background: transparent; color: var(--branco); border-color: rgba(255,255,255,.45); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--carvao); border-color: var(--carvao); }
.btn-outline-dark:hover { background: var(--carvao); color: var(--branco); }
.btn-gold-lg { background: var(--gold); color: var(--preto-hero); border-color: var(--gold); font-size: 15px; padding: 16px 36px; }
.btn-gold-lg:hover { background: #e8be52; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(241,205,113,.35); }

/* ══════════════════════════════════════════════════════════ */
/*  01. NAVBAR                                               */
/* ══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(16,18,23,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--branco);
  letter-spacing: -.01em;
}
.navbar__logo-icon {
  width: 34px;
  height: 34px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.navbar__logo-icon svg { width: 20px; height: 20px; }
.navbar__nav { display: flex; align-items: center; gap: 32px; }
.navbar__nav a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.75); transition: color .2s; }
.navbar__nav a:hover { color: var(--gold); }
.navbar__cta { margin-left: 8px; }

/* ══════════════════════════════════════════════════════════ */
/*  02. HERO                                                 */
/* ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--preto-hero);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1664575602554-2087b04935a5?w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: .18;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); opacity: .22; } }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(16,18,23,.92) 45%, rgba(16,18,23,.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .7s var(--ease) .2s forwards;
}
.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}
.hero__h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--branco);
  letter-spacing: -.02em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .4s forwards;
}
.hero__h1 em { font-style: normal; color: var(--gold); }
.hero__sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  max-width: 460px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .6s forwards;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .8s forwards;
}
.hero__right {
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .7s forwards;
}
.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(241,205,113,.25);
  border-radius: 12px;
  padding: 32px;
  backdrop-filter: blur(8px);
  max-width: 340px;
  width: 100%;
}
.hero__card-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__stat { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.hero__stat-num { font-size: 48px; font-weight: 800; color: var(--branco); line-height: 1; }
.hero__stat-label { font-size: 13px; color: rgba(255,255,255,.55); max-width: 120px; line-height: 1.4; }
.hero__divider { height: 1px; background: rgba(255,255,255,.1); margin: 20px 0; }
.hero__items { display: flex; flex-direction: column; gap: 14px; }
.hero__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.hero__item-dot {
  width: 6px; height: 6px; min-width: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp .6s var(--ease) 1.2s forwards;
  cursor: pointer;
}
.hero__scroll span { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.hero__scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════ */
/*  03. PROBLEMAS                                            */
/* ══════════════════════════════════════════════════════════ */
.problemas { background: var(--off-white); padding: 96px 0 0; }
.problemas__header { text-align: center; margin-bottom: 56px; }
.problemas__title { font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--carvao); line-height: 1.25; letter-spacing: -.02em; }
.problemas__title em { font-style: normal; color: var(--gold-dark); }
.problemas__grid { display: grid; grid-template-columns: 1fr 1fr; position: relative; margin-bottom: 56px; border-radius: 14px; overflow: hidden; min-height: 420px; }
.problemas__bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.problemas__col { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: space-evenly; padding: 48px 40px; background: transparent; }
.problemas__col--right { align-items: flex-end; }
.problema-item { display: flex; align-items: flex-start; gap: 10px; max-width: 300px; background: var(--branco); border-radius: 10px; padding: 12px 16px; box-shadow: 0 2px 12px rgba(0,0,0,.1); }
.problema-item--right { flex-direction: row-reverse; text-align: right; }
.problema-icon { width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: rgba(167,16,17,.1); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.problema-icon svg { width: 12px; height: 12px; }
.problema-text { font-size: 14px; font-weight: 500; color: var(--carvao); line-height: 1.5; }
.problemas__banner { background: var(--gold); padding: 36px 48px; display: flex; align-items: center; justify-content: center; gap: 20px; position: relative; overflow: hidden; }
.problemas__banner::after { content: ''; position: absolute; top: 0; left: -60%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent); animation: bannerShine 3.5s ease-in-out infinite; pointer-events: none; }
@keyframes bannerShine { 0% { left: -60%; } 100% { left: 160%; } }
.problemas__banner-icon svg { width: 34px; height: 34px; color: var(--preto-hero); }
.problemas__banner-text { font-size: clamp(18px, 2.2vw, 26px); font-weight: 800; color: var(--preto-hero); letter-spacing: -.02em; }

/* ══════════════════════════════════════════════════════════ */
/*  04. CONSULTORIA                                          */
/* ══════════════════════════════════════════════════════════ */
.consultoria { padding: 96px 0; background: var(--branco); }
.consultoria__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.consultoria__img-wrap { position: relative; }
.consultoria__img { width: 100%; height: 480px; object-fit: cover; border-radius: 10px; }
.consultoria__img-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--navy-dark);
  color: var(--branco);
  padding: 20px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  max-width: 180px;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.consultoria__img-badge strong { display: block; font-size: 28px; font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.consultoria__title { font-size: clamp(26px, 2.8vw, 38px); font-weight: 800; color: var(--carvao); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 12px; }
.consultoria__subtitle { font-size: clamp(26px, 2.8vw, 38px); font-weight: 300; color: var(--carvao); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 40px; }
.diferenciais { display: flex; flex-direction: column; gap: 28px; }
.diferencial { display: flex; gap: 18px; align-items: flex-start; }
.diferencial__icon { width: 44px; height: 44px; min-width: 44px; background: rgba(241,205,113,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.diferencial__icon svg { width: 22px; height: 22px; color: var(--gold-dark); }
.diferencial__title { font-size: 15px; font-weight: 700; color: var(--carvao); margin-bottom: 4px; }
.diferencial__desc { font-size: 14px; color: #6b6b70; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════ */
/*  05. MÉTODO                                               */
/* ══════════════════════════════════════════════════════════ */
.metodo { background: var(--navy-dark); padding: 96px 0; }
.metodo__header { text-align: center; margin-bottom: 56px; }
.metodo__title { font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--branco); letter-spacing: -.02em; }
.metodo__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; position: relative; }
.metodo__logo-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 180px; height: 180px; background: var(--navy-dark); border-radius: 16px; z-index: 2; }
.metodo-step { background: var(--gold); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; min-height: 260px; cursor: default; }
.metodo-step:nth-child(1) { padding-right: 76px; padding-bottom: 76px; }
.metodo-step:nth-child(2) { padding-left:  76px; padding-bottom: 76px; }
.metodo-step:nth-child(3) { padding-right: 76px; padding-top:    76px; }
.metodo-step:nth-child(4) { padding-left:  76px; padding-top:    76px; }
.metodo-step__row { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.metodo-step__num { font-size: 52px; font-weight: 800; color: var(--navy-dark); line-height: 1; letter-spacing: -.03em; white-space: nowrap; }
.metodo-step__title { font-size: 18px; font-weight: 800; color: var(--navy-dark); line-height: 1.25; letter-spacing: -.01em; }
.metodo-step__title--right { text-align: right; }
.metodo-step__desc { font-size: 14px; color: var(--navy-dark); line-height: 1.65; opacity: .75; }
.metodo-step__desc--right { text-align: right; }

/* ══════════════════════════════════════════════════════════ */
/*  06. QUEM SOMOS                                           */
/* ══════════════════════════════════════════════════════════ */
.quem-somos { padding: 96px 0; background: var(--off-white); }
.quem-somos__intro { max-width: 760px; margin: 0 auto 72px; text-align: center; }
.quem-somos__title { font-size: clamp(26px, 2.8vw, 38px); font-weight: 800; color: var(--carvao); letter-spacing: -.02em; line-height: 1.2; margin-bottom: 20px; }
.quem-somos__desc { font-size: 16px; line-height: 1.75; color: #5a5a60; }
.quem-somos__tagline { margin: 28px auto; text-align: center; font-size: 18px; font-weight: 700; color: var(--carvao); letter-spacing: -.01em; display: flex; align-items: center; justify-content: center; gap: 12px; }
.quem-somos__tagline::before, .quem-somos__tagline::after { content: ''; height: 1.5px; width: 48px; background: var(--gold-dark); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: var(--branco); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.06); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.team-card__img { width: 100%; height: 280px; object-fit: cover; object-position: center top; filter: grayscale(20%); transition: filter .4s; }
.team-card:hover .team-card__img { filter: grayscale(0%); }
.team-card__body { padding: 24px; }
.team-card__role { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px; }
.team-card__name { font-size: 18px; font-weight: 700; color: var(--carvao); margin-bottom: 10px; letter-spacing: -.01em; }
.team-card__bio { font-size: 13px; color: #7a7a82; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════ */
/*  07. SOLUÇÕES                                             */
/* ══════════════════════════════════════════════════════════ */
.solucoes { background: var(--preto-hero); padding: 96px 0; }
.solucoes__header { text-align: center; margin-bottom: 56px; }
.solucoes__title { font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--branco); letter-spacing: -.02em; }
.solucoes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solucao-card { position: relative; border-radius: 10px; overflow: hidden; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); transition: border-color .3s, transform .3s var(--ease); cursor: default; }
.solucao-card:hover { border-color: rgba(241,205,113,.4); transform: translateY(-4px); }
.solucao-card--large { grid-column: span 2; }
.solucao-card__img { width: 100%; height: 220px; object-fit: cover; opacity: .45; transition: opacity .4s; }
.solucao-card--large .solucao-card__img { height: 260px; }
.solucao-card:hover .solucao-card__img { opacity: .6; }
.solucao-card__body { padding: 24px; }
.solucao-card__tag { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.solucao-card__title { font-size: 18px; font-weight: 700; color: var(--branco); margin-bottom: 10px; letter-spacing: -.01em; }
.solucao-card__desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; }
.solucao-card__list { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.solucao-card__list li { font-size: 13px; color: rgba(255,255,255,.55); padding-left: 14px; position: relative; line-height: 1.5; }
.solucao-card__list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ══════════════════════════════════════════════════════════ */
/*  08. PARA QUEM É                                          */
/* ══════════════════════════════════════════════════════════ */
.para-quem { background: var(--cream); padding: 96px 0; }
.para-quem__header { text-align: center; margin-bottom: 64px; }
.para-quem__title { font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--carvao); letter-spacing: -.02em; }
.para-quem__layout { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0 48px; align-items: center; max-width: 960px; margin: 0 auto; }
.para-quem__col { display: flex; flex-direction: column; gap: 36px; }
.para-quem__col--right { align-items: flex-end; text-align: right; }
.publico-item { max-width: 240px; }
.publico-item__title { font-size: 15px; font-weight: 700; color: var(--carvao); margin-bottom: 6px; letter-spacing: -.01em; }
.publico-item__desc { font-size: 13px; color: #7a7a82; line-height: 1.6; }
.para-quem__center { display: flex; flex-direction: column; align-items: center; }
.para-quem__circle { width: 200px; height: 200px; border-radius: 50%; background: var(--navy-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; border: 6px solid var(--gold); box-shadow: 0 0 0 12px rgba(241,205,113,.1); text-align: center; padding: 20px; }
.para-quem__circle-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.para-quem__circle-title { font-size: 22px; font-weight: 800; color: var(--gold); line-height: 1.1; letter-spacing: -.02em; }

/* ══════════════════════════════════════════════════════════ */
/*  09. NÚMEROS                                              */
/* ══════════════════════════════════════════════════════════ */
.numeros { background: var(--off-white); padding: 80px 0; }
.numeros__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--gold); border-radius: 10px; overflow: hidden; margin-bottom: 48px; }
.numero-item { background: var(--branco); padding: 36px 28px; text-align: center; transition: background .25s; }
.numero-item:hover { background: rgba(241,205,113,.06); }
.numero-item__num { font-size: 52px; font-weight: 800; color: var(--navy-dark); letter-spacing: -.03em; line-height: 1; margin-bottom: 8px; }
.numero-item__plus { color: var(--gold-dark); }
.numero-item__label { font-size: 13px; color: #7a7a82; line-height: 1.5; max-width: 140px; margin: 0 auto; }
.numeros__banner { background: var(--gold); padding: 18px 40px; border-radius: 6px; text-align: center; font-size: 17px; font-weight: 700; color: var(--preto-hero); letter-spacing: -.01em; }

/* ─── LOGOS ──────────────────────────────────────────────── */
.logos-section { padding: 48px 0; background: var(--off-white); border-top: 1px solid rgba(0,0,0,.06); }
.logos-section__label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #aaaaaB0; margin-bottom: 32px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-item { font-size: 18px; font-weight: 800; color: #c4c4cc; letter-spacing: -.02em; transition: color .2s; }
.logo-item:hover { color: var(--carvao); }

/* ══════════════════════════════════════════════════════════ */
/*  10. POR QUE HANGAR                                       */
/* ══════════════════════════════════════════════════════════ */
.porque { background: var(--cream); padding: 96px 0; }
.porque__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.porque__title { font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: var(--carvao); letter-spacing: -.02em; margin-bottom: 12px; line-height: 1.15; }
.porque__subtitle { font-size: 16px; color: #7a7a82; line-height: 1.7; margin-bottom: 36px; }
.porque__items { display: flex; flex-direction: column; gap: 16px; }
.porque-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: var(--branco); border-radius: 8px; border-left: 3px solid var(--gold); transition: box-shadow .25s, transform .25s; }
.porque-item:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateX(4px); }
.porque-item__icon { width: 36px; height: 36px; min-width: 36px; background: rgba(241,205,113,.15); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.porque-item__icon svg { width: 18px; height: 18px; color: var(--gold-dark); }
.porque-item__text { font-size: 14px; font-weight: 500; color: var(--carvao); line-height: 1.55; }
.porque__img-wrap { position: relative; }
.porque__img { width: 100%; height: 500px; object-fit: cover; border-radius: 10px; }

/* ══════════════════════════════════════════════════════════ */
/*  11. CTA FINAL                                            */
/* ══════════════════════════════════════════════════════════ */
.cta-final { background: var(--navy-dark); padding: 100px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(241,205,113,.08); }
.cta-final::after  { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 900px; height: 900px; border-radius: 50%; border: 1px solid rgba(241,205,113,.04); }
.cta-final__inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-final__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.cta-final__title { font-size: clamp(30px, 4vw, 50px); font-weight: 800; color: var(--branco); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 16px; }
.cta-final__sub { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 40px; }
.cta-final__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════ */
/*  FOOTER                                                   */
/* ══════════════════════════════════════════════════════════ */
.footer { background: var(--preto-hero); padding: 28px 32px; text-align: center; }
.footer__text { font-size: 13px; color: rgba(255,255,255,.3); }
.footer__text a { color: var(--gold); }
