/* ================================================================
   VOXEL — index.css  (optimized for Lighthouse 90+)
   Design: preto | branco | amarelo #ffc501
   Fonte: Montserrat (carregada via <link> no HTML — não mais @import)
   ================================================================ */

/* ================================================================
   TOKENS
   ================================================================ */
:root {
  --gold: #ffc501;
  --gold-20: rgba(255, 197, 1, .20);
  --gold-35: rgba(255, 197, 1, .35);
  --gold-bd: rgba(255, 197, 1, .30);
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1c1c1c;
  --bd: rgba(255, 255, 255, .08);
  --white: #ffffff;
  --w70: rgba(255, 255, 255, .70);
  --w40: rgba(255, 255, 255, .40);
  --font: 'Montserrat', sans-serif;
  --ease: 0.25s ease;
}

/* ================================================================
   RESET
   ================================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

/* ── Wrapper ──────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Componentes de seção reutilizáveis ───────────────────────── */
.sec-hd {
  text-align: center;
  margin-bottom: 56px;
}

.sec-eyebrow {
  display: inline-block;
  background: var(--gold-20);
  color: var(--gold);
  border: 1px solid var(--gold-bd);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.sec-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}

.sec-title2 {
  font-size: clamp(1.7rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #ffc501;
  line-height: 1.25;
  margin-top: 12px;
}

.sec-title em {
  color: var(--gold);
  font-style: normal;
}

.sec-cta {
  text-align: center;
  margin-top: 52px;
}

/* ── CTA global — botão dourado ─────────────────────────────────
   PERF: will-change:transform declara ao browser que só o transform
         muda — cria layer GPU, evita repaint a cada frame do pulse.
   ───────────────────────────────────────────────────────────── */
.cta-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #d4900a 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1vw;
  padding: 18px 35px;
  border-radius: 8px;
  width: fit-content;
  box-shadow: 0 4px 14px var(--gold-35);
  transition: transform .18s ease, box-shadow .18s ease;
  will-change: transform;
  /* ← GPU layer */
  animation: heroPulse 2.5s ease 1.2s infinite;
}

.cta-gold:hover {
  background: #ffce30;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-35);
  animation: none;
}

.cta-gold--big {
  padding: 22px 52px;
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 16px 40px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 1.1vw;
  transition: all var(--ease);
}

.cta-outline:hover {
  background: var(--gold-20);
  transform: translateY(-2px);
}

/* ── Animações ────────────────────────────────────────────────── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PERF FIX: animação usa apenas transform:scale (100% compositable).
   Antes usava box-shadow no keyframe — isso forçava repaint a cada
   frame. Agora o box-shadow fica estático no elemento e só o scale
   anima na GPU sem tocar no layout.                              */
@keyframes heroPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.018);
  }
}

@keyframes scrollTape {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes waPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

/* ── Scroll reveal ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger>.reveal:nth-child(1) {
  transition-delay: 0ms;
}

.stagger>.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.stagger>.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.stagger>.reveal:nth-child(4) {
  transition-delay: 270ms;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ================================================================
   HERO — APROVADO / NÃO MEXA
   ================================================================ */
.hero {
  position: relative;
  min-height: 91vh;
  display: flex;
  align-items: center;
  background-image: url('image/f1.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 18%;
  padding-right: 90px;
  align-items: center;
  min-height: 91vh;
  box-sizing: border-box;
}

.hero__image-col {}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: heroFadeUp .8s ease both;
}

.hero__logo {
  width: 150px;
  padding-bottom: 30px;
}

.hero__headline {
  font-family: var(--font);
  font-weight: 800;
  font-size: 2.2vw;
  color: var(--white);
  line-height: 1.38;
  margin: 0;
}

.hero__headline--gold {
  font-size: 2.2vw;
  color: var(--gold);
  font-weight: 800;
  text-shadow: 0 0 40px rgba(255, 197, 1, .4);
}

.hero__headline--sub {
  font-size: 2.3vw;
  font-weight: 800;
  color: var(--white);
}

.hero__marca {
  font-weight: 800;
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
  text-decoration: none;
}

.hero__proof {
  font-size: 1.2vw;
  color: var(--white);
  line-height: 1.45;
  margin: 0;
  padding-right: 90px;
  letter-spacing: .04em;
}

.hero__proof strong {
  color: var(--white);
}

/* PERF: will-change avisa a GPU com antecedência */
.hero__cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #d4900a 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1vw;
  padding: 20px 40px;
  border-radius: 8px;
  width: fit-content;
  box-shadow: 0 4px 14px var(--gold-35);
  transition: transform .18s ease, box-shadow .18s ease;
  will-change: transform;
  /* ← GPU layer */
  animation: heroPulse 2.5s ease 1.2s infinite;
}

.hero__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px rgba(219, 169, 5, 0.6);
  animation: none;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.hero__bullet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
}

@media (max-width: 768px) {
  .hero__content {
    align-items: center;
    text-align: center;
  }

  .hero__headline {
    align-items: center;
  }

  .hero__proof {
    text-align: center;
  }

  .hero__bullets {
    align-items: center;
  }

  .marca {
    background: none;
    color: inherit;
  }

  .hero__marca {
    background: none;
    -webkit-text-fill-color: var(--white);
    display: inline;
  }
}


/* ================================================================
   LOGOS BAR — Scroll infinito
   ================================================================ */
.logos-bar {
  background: var(--bg2);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 44px 0 40px;
}

.logos-bar__label {
  text-align: center;
  font-size: 0.94vw;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 28px;
}

.logos-tape {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
}

.logos-tape::before,
.logos-tape::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logos-tape::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg2), transparent);
}

.logos-tape::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg2), transparent);
}

.logos-tape__track {
  display: flex;
  gap: 46px;
  width: max-content;
}

.logos-tape__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  overflow: hidden;
}

.logos-tape__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(1.4);
  transition: filter var(--ease);
}

.logos-tape__item:hover img {
  filter: grayscale(0) brightness(1);
}

.pulse-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 24px;
  justify-content: center;
}

.pulse-stat strong {
  color: #fff;
  font-weight: 700;
}

.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f5c518;
  flex-shrink: 0;
  animation: breathe-dot 3s ease-in-out infinite;
}

@keyframes breathe-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}


/* ================================================================
   DOBRA 2 — DOR
   ================================================================ */
.dor {
  background: var(--bg);
  padding: 70px 40px 80px;
}

.dor__eyebrow {
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.dor__headline {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 72px;
}

.dor__headline--gold {
  color: var(--gold);
  font-style: normal;
  text-shadow: 0 0 30px rgba(255, 197, 1, .3);
}

.dor__headline--sub {
  display: block;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  color: var(--gold);
  margin-top: 14px;
}

/* ================================================================
   DOBRA 2 — CARDS VERTICAIS
   ================================================================ */
.dor__cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.dor__card {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  padding: 44px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.dor__card--problema {
  background: linear-gradient(180deg, #150303 0%, #0a0101 100%);
  border: 1px solid #5a1515;
}

.dor__card--cinza {
  background: linear-gradient(180deg, #141414 0%, #090909 100%);
  border: 1px solid #222222;
}

.dor__card--virada {
  background: linear-gradient(180deg, #081a0f 0%, #040e09 100%);
  border: 1px solid #0f3d1e;
}

.dor__card-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 999px;
  white-space: nowrap;
}

.dor__card--problema .dor__card-badge {
  background: linear-gradient(135deg, #3d0707 0%, #280404 100%);
  color: #ffffff;
  border: 1px solid #5a1515;
}

.dor__card--cinza .dor__card-badge {
  background: linear-gradient(135deg, #222222 0%, #141414 100%);
  color: #ffffff;
  border: 1px solid #333333;
}

.dor__card--virada .dor__card-badge {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  border: 1px solid #22c55e;
}

.dor__card-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.dor__card-item {
  border-radius: 10px;
  padding: 11px 14px;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.dor__card-item .ico {
  font-style: normal;
  font-size: .9rem;
  flex-shrink: 0;
  min-width: 16px;
  text-align: center;
  color: var(--gold);
  font-weight: 900;
}

.ico--red {
  color: #f87171 !important;
}

.ico--gray {
  color: #9ca3af !important;
}

.dor__card-item--green {
  background: #1e0b0b;
  color: #ffffff;
}

.dor__card-item--green .ico {
  color: var(--gold);
}

.dor__card-item--red {
  background: #160505;
  color: #ffffff;
}

.dor__card-item--red .ico {
  color: #f87171;
}

.dor__card-item--dark {
  background: #111111;
  color: #ffffff;
  font-style: italic;
}

.dor__card-item--dark .ico {
  color: #9ca3af;
}

.dor__card-item--ghost {
  background: transparent;
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
  padding: 6px 4px;
}

.dor__card-item--ghost .ico {
  color: var(--gold);
}

.dor__card-item--gold {
  background: #081a0f;
  color: #ffffff;
}

.dor__card-item--gold .ico {
  color: var(--gold);
}

.dor__card-text {
  font-size: .88rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
  margin: 16px 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 197, 1, .07) 0%, transparent 100%);
  border: none;
  border-left: 2px solid rgba(255, 197, 1, .5);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
}

.dor__card--cinza .dor__card-text {
  border-left-color: rgba(107, 114, 128, .6);
  background: linear-gradient(90deg, rgba(107, 114, 128, .1) 0%, transparent 100%);
}

.dor__card-text strong {
  color: #ffffff;
  font-weight: 800;
}

.dor__card-text--virada {
  font-size: .92rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.dor__card-text--virada strong {
  color: #ffffff;
  font-weight: 900;
}

.dor__cta-wrap {
  text-align: center;
  margin-top: 48px;
}

.check-green {
  color: #4ade80;
  font-weight: 900;
  margin-right: 6px;
}

.check-gold {
  color: var(--gold);
  font-weight: 900;
  margin-right: 6px;
}

.x-red {
  color: #f87171;
  font-weight: 900;
  margin-right: 6px;
}

@media (max-width: 600px) {
  .dor {
    padding: 60px 16px 70px;
  }

  .dor__card {
    padding: 32px 14px 24px;
    max-width: 100%;
  }

  .dor__card-item {
    font-size: .84rem;
    padding: 10px 12px;
  }

  .dor__card-text {
    font-size: .84rem;
    padding: 10px 12px;
  }

  .dor__cards-wrap {
    gap: 32px;
  }
}

/* ================================================================
   DOBRA 3 — PROVA SOCIAL
   ================================================================ */
.prova {
  background: linear-gradient(90deg, #0c0c0c 0%, var(--bg2) 40%, var(--bg2) 60%, #111111 100%);
  padding: 100px 40px;
}

.prova__sub {
  font-size: 1rem;
  color: #ffffff;
  margin-top: 12px;
  line-height: 1.6;
}

.prova__section-label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 52px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bd);
}

@media (max-width: 700px) {
  .prova__section-label {
    text-align: center;
  }
}

/* ================================================================
   STATS
   ================================================================ */
.prova__stats {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 8px;
  align-items: stretch;
}

.prova__stat2 {
  background: #ffc501;
  border-radius: 12px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 8px 40px rgba(255, 196, 1, 0.10);
  flex: 1;
}

.prova__stat2 .prova__stat-num {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.prova__stat2 .prova__stat-label {
  font-size: .88rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.prova__stat-row {
  display: flex;
  flex: 1;
}

.prova__stat {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
  flex: 1;
  transition: border-color var(--ease);
}

.prova__stat:hover {
  border-color: var(--gold-bd);
}

.prova__stat-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.prova__stat-label {
  font-size: .8rem;
  color: #ffffff;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .prova__stats {
    flex-direction: column;
  }

  .prova__stat2 {
    padding: 28px 24px;
  }
}

/* ================================================================
   VÍDEOS COM DEPOIMENTO
   ================================================================ */
.prova__videos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pvideo {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--ease);
}

.pvideo:hover {
  border-color: var(--gold-bd);
}

.pvideo__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
  padding: 24px;
}

.pvideo__video-col {
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.pvideo__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pvideo__auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pvideo__av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-weight: 900;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.pvideo__av img,
.pcard__av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.pvideo__auth strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}

.pvideo__auth span {
  display: block;
  font-size: .85rem;
  color: var(--w40);
  margin-top: 2px;
}

.pvideo__quote {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.75;
  font-style: italic;
  border-left: 2px solid var(--gold-bd);
  padding-left: 12px;
  margin: 0;
}

@media (max-width: 700px) {
  .pvideo__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
    text-align: center;
  }

  .pvideo__auth {
    justify-content: center;
  }

  .pvideo__quote {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }
}

/* ================================================================
   CARDS DE TEXTO EMPILHADOS
   ================================================================ */
.prova__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pcard {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--ease);
}

.pcard:hover {
  border-color: var(--gold-bd);
}

.pcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pcard__auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pcard__av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-20);
  border: 1.5px solid var(--gold-bd);
  color: var(--gold);
  font-weight: 900;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.pcard__auth strong {
  display: block;
  font-size: .88rem;
  color: var(--white);
  font-weight: 700;
}

.pcard__auth span {
  display: block;
  font-size: .73rem;
  color: var(--w40);
  margin-top: 1px;
}

.pcard__stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.pcard__txt {
  font-size: .9rem;
  color: #ffffff;
  line-height: 1.65;
  font-style: italic;
}

/* ================================================================
   CASO REAL COM NÚMERO
   ================================================================ */
.caso-real {
  background: var(--bg);
  border: 1px solid var(--gold-bd);
  border-radius: 16px;
  padding: 40px 36px;
  margin-top: 52px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
}

.caso-real__video-col {
  flex-shrink: 0;
  width: 280px;
}

.caso-real__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.caso-real__badge {
  display: inline-block;
  background: var(--gold-20);
  color: var(--gold);
  border: 1px solid var(--gold-bd);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  align-self: flex-start;
}

.caso-real__num {
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.caso-real__desc {
  font-size: 1.1rem;
  color: var(--w70);
  margin-top: -10px;
}

.caso-real__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.caso-real__mini {
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.caso-real__mini span {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.caso-real__mini small {
  font-size: .82rem;
  color: var(--w40);
  line-height: 1.4;
}

.caso-real__mini--red {
  background: rgba(248, 113, 113, .08);
  border: 1px solid rgba(248, 113, 113, .2);
}

.caso-real__mini--red span {
  color: #f87171;
}

.caso-real__mini--gold {
  background: var(--gold-20);
  border: 1px solid var(--gold-bd);
}

.caso-real__mini--gold span {
  color: var(--gold);
}

.caso-real__auth {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}

.caso-real__av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-weight: 900;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--gold-bd);
}

.caso-real__av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.caso-real__auth strong {
  display: block;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
}

.caso-real__auth span {
  display: block;
  font-size: .82rem;
  color: var(--w40);
  margin-top: 2px;
}

.caso-real__quote {
  font-size: 1rem;
  color: var(--w70);
  line-height: 1.75;
  font-style: italic;
  border-left: 2px solid var(--gold-bd);
  padding-left: 16px;
  margin: 0;
}

@media (max-width: 700px) {
  .caso-real {
    flex-direction: column;
    gap: 28px;
    padding: 24px 20px;
    text-align: center;
    align-items: center;
  }

  .caso-real__video-col {
    width: 100%;
    order: 2;
  }

  .caso-real__body {
    order: 1;
    align-items: center;
  }

  .caso-real__badge {
    align-self: center;
  }

  .caso-real__quote {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }

  .caso-real__auth {
    justify-content: center;
  }

  .caso-real__row {
    grid-template-columns: 1fr;
  }

  .pcard__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ================================================================
   DOBRA 4 — PROPOSTA DE VALOR
   ================================================================ */
.valor {
  background: var(--bg);
  padding: 100px 40px;
}

.valor__sub {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 16px;
  text-align: center;
}

.valor__section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--w40);
  margin: 52px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bd);
}

/* ── Lista de serviços ── */
.valor__lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vlista__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 22px 24px;
  transition: border-color var(--ease), transform var(--ease);
}

.vlista__item:hover {
  border-color: var(--gold-bd);
  transform: translateX(4px);
}

.vlista__item--destaque {
  border-color: rgba(255, 197, 1, .25);
  background: rgba(255, 197, 1, .04);
}

.vlista__item--destaque:hover {
  border-color: var(--gold);
}

.vlista__ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-20);
  border: 1px solid var(--gold-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--ease);
}

.vlista__item:hover .vlista__ico {
  background: var(--gold);
  color: #111;
}

.vlista__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vlista__body strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.vlista__body p {
  font-size: .9rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.65;
}

.vlista__badge {
  display: inline-block;
  background: var(--gold);
  color: #111;
  font-size: .72rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 999px;
  margin-top: 4px;
  align-self: flex-start;
}

/* ── Grid 2×2 ── */
.valor__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.vcard {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
  text-align: center;
  align-items: center;
}

/* PERF FIX: animava width (não compositable) → agora usa scaleX
   (100% GPU compositable, zero layout thrash)                   */
.vcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
}

.vcard:hover {
  border-color: var(--gold-bd);
  transform: translateY(-4px);
}

.vcard:hover::before {
  transform: scaleX(1);
}

.vcard__sigla {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}

.vcard__label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--w40);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.4;
}

.vcard__desc {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-top: 4px;
}

/* ── Reunião mensal ── */
.valor__reuniao {
  background: var(--bg2);
  border: 1px solid var(--gold-bd);
  border-radius: 16px;
  padding: 36px 32px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.valor__reuniao-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.valor__reuniao-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  flex-shrink: 0;
}

.valor__reuniao-header strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
}

.valor__reuniao-header span {
  display: block;
  font-size: .82rem;
  color: var(--w40);
  margin-top: 3px;
}

.valor__reuniao-txt {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.7;
  border-left: 2px solid var(--gold-bd);
  padding-left: 16px;
}

.valor__reuniao-txt strong {
  color: var(--gold);
  font-weight: 800;
}

.valor__reuniao-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.valor__reuniao-checks li {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

/* ── Consultor disponível ── */
.valor__consultor {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 12px;
  transition: border-color var(--ease);
}

.valor__consultor:hover {
  border-color: var(--gold-bd);
}

.valor__consultor-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-20);
  border: 1px solid var(--gold-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--ease);
}

.valor__consultor:hover .valor__consultor-ico {
  background: var(--gold);
  color: #111;
}

.valor__consultor strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.valor__consultor p {
  font-size: .9rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.65;
}

.valor__cta-pre {
  font-size: 1rem;
  font-style: italic;
  color: var(--w70);
  margin-bottom: 20px;
}

.valor__cta-selos {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.valor__cta-selos span {
  font-size: .82rem;
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 900px) {
  .valor__grid {
    grid-template-columns: 1fr;
  }

  .valor__reuniao {
    padding: 24px 20px;
  }

  .valor__section-label {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .vlista__item {
    flex-direction: column;
    gap: 12px;
  }

  .valor__consultor {
    flex-direction: column;
    gap: 12px;
  }

  .valor__reuniao-header {
    flex-direction: column;
    gap: 12px;
  }
}

/* ================================================================
   DOBRA 5 — FECHAMENTO
   ================================================================ */
.fechamento {
  position: relative;
  background: var(--bg2);
  border-top: 1px solid var(--bd);
  padding: 100px 40px;
  overflow: hidden;
}

.fechamento__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 197, 1, .06) 0%, transparent 65%);
  pointer-events: none;
}

.fechamento__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.fechamento__hl {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

.fechamento__hl em {
  color: var(--gold);
  font-style: italic;
}

.fechamento__sub {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.65;
  margin-top: -8px;
}

.fechamento__sub strong {
  color: var(--white);
  font-weight: 800;
}

.fechamento__vagas {
  background: var(--bg);
  border: 1px solid var(--gold-bd);
  border-radius: 16px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fechamento__vagas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fechamento__vagas-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff;
}

.fechamento__vagas-badge {
  background: rgba(248, 113, 113, .15);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, .3);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
}

.fechamento__vagas-num {
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.fechamento__vagas-desc {
  font-size: .92rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.6;
  margin-top: -4px;
}

.fechamento__vagas-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.fechamento__vagas-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  font-weight: 600;
  color: #ffffff;
}

.fechamento__vagas-bar {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  overflow: hidden;
}

.fechamento__vagas-fill {
  height: 100%;
  width: 61%;
  background: var(--gold);
  border-radius: 999px;
}

.fechamento__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.fechamento__btns .cta-gold--big {
  width: 100%;
  justify-content: center;
}

.fechamento__btns .cta-outline {
  width: 100%;
  justify-content: center;
}

.fechamento__selos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.fechamento__selos span {
  font-size: .82rem;
  font-weight: 600;
  color: #ffffff;
}

.fechamento__eyebrow {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold-20);
  color: var(--gold);
  border: 1px solid var(--gold-bd);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
}

@media (max-width: 600px) {
  .fechamento {
    padding: 70px 24px !important;
  }

  .fechamento__inner {
    align-items: center !important;
  }

  .fechamento__eyebrow {
    display: block !important;
    text-align: center !important;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
  }

  .fechamento__hl {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
    text-align: center !important;
    width: 100% !important;
  }

  .fechamento__sub {
    text-align: center !important;
    width: 100% !important;
  }

  .fechamento__vagas {
    padding: 22px 18px !important;
    text-align: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .fechamento__vagas-header {
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .fechamento__vagas-label,
  .fechamento__vagas-desc {
    text-align: center !important;
  }

  .fechamento__vagas-num {
    font-size: 3.5rem !important;
  }

  .fechamento__selos {
    justify-content: center !important;
  }

  .fechamento__vagas-bar-wrap {
    width: 100% !important;
  }

  .fechamento__vagas-bar-labels {
    flex-direction: row !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .fechamento__vagas-bar {
    width: 100% !important;
  }
}

/* ================================================================
   DOBRA 6 — FORMULÁRIO
   ================================================================ */
.formulario {
  background: var(--bg);
  padding: 100px 40px;
}

.form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.form__hl {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin: 16px 0 32px;
}

.form__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form__steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--bd);
}

.form__steps li:first-child {
  border-top: 1px solid var(--bd);
}

.form__step-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-weight: 900;
  font-size: .72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.form__steps p {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.6;
}

.form__steps p strong {
  color: var(--white);
  font-weight: 800;
}

.form__badge {
  display: inline-block;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--gold-bd);
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  padding: 1px 9px;
  border-radius: 5px;
  vertical-align: middle;
  line-height: 1.7;
}

.form__destaque {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-top: 28px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.form__selos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
}

.form__selos span {
  font-size: .85rem;
  font-weight: 400;
  color: #ffffff;
}

.form__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__side-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
}

.form__box {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form__field label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.form__field input,
.form__field select {
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: .92rem;
  transition: border-color var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form__field input::placeholder {
  color: var(--w40);
}

.form__field input:focus,
.form__field select:focus {
  border-color: var(--gold);
}

/* PERF: will-change declara ao browser → GPU layer pré-alocado */
.form__btn {
  background: var(--gold);
  color: #ffffff;
  padding: 18px;
  border-radius: 9px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1vw;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
  will-change: transform;
  /* ← GPU layer */
  animation: heroPulse 2.5s ease 1s infinite;
}

.form__btn:hover {
  background: #ffce30;
  transform: translateY(-2px);
  animation: none;
}

.form__disclaimer {
  font-size: .75rem;
  color: var(--w40);
  text-align: center;
}

@media (max-width: 900px) {
  .form__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .formulario {
    padding: 70px 24px !important;
  }

  .formulario .sec-hd,
  .formulario .sec-eyebrow {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .form__inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .form__box {
    padding: 24px 20px !important;
  }

  .form__hl {
    text-align: center !important;
    width: 100% !important;
  }

  .form__steps li {
    justify-content: center !important;
  }

  .form__destaque {
    text-align: center !important;
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 3px solid var(--gold) !important;
    padding-top: 12px !important;
    width: 100% !important;
  }

  .form__selos {
    align-items: center !important;
    text-align: center !important;
  }

  .form__selos span {
    text-align: center !important;
  }

  .form__side-title {
    text-align: center !important;
    width: 100% !important;
  }
}

.form__destaque-grip {
  display: inline;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 5px;
  font-weight: 800;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ================================================================
   RODAPÉ
   ================================================================ */
.rodape {
  background: var(--bg2);
  border-top: 1px solid var(--bd);
  padding: 48px 40px;
}

.rodape__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.rodape__logo-text {
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--white);
}

.rodape__tagline {
  font-size: .88rem;
  color: var(--w70);
}

.rodape__copy {
  font-size: .76rem;
  color: var(--w40);
  margin-top: 4px;
}

/* ================================================================
   HELPERS
   ================================================================ */
.check-green {
  color: #4ade80;
  font-weight: 900;
  margin-right: 8px;
}

.check-gold {
  color: var(--gold);
  font-weight: 900;
  margin-right: 10px;
}

.x-red {
  color: #f87171;
  font-weight: 900;
  margin-right: 8px;
}

/* ================================================================
   RESPONSIVO — TABLET (≤ 900px)
   ================================================================ */
@media (max-width: 900px) {
  .wrap {
    padding: 0 24px;
  }

  .dor,
  .prova,
  .valor,
  .fechamento,
  .formulario {
    padding: 70px 24px;
  }

  .valor__grid {
    grid-template-columns: 1fr;
  }

  .form__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fechamento__btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-gold--big,
  .cta-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ================================================================
   RESPONSIVO — HERO MOBILE (≤ 768px)
   ================================================================ */
@media (max-width: 768px) {
  .hero {
    background-image: url('image/f1-mob.webp');
    background-position: center top;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 1vw;
    padding-bottom: 5vw;
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero__image-col {
    display: none;
  }

  .hero__logo {
    width: 100px;
    padding-bottom: 51vw;
    text-align: left;
  }

  .hero__headline {
    font-size: 4.5vw;
  }

  .hero__headline--gold {
    font-size: 4.5vw;
  }

  .hero__headline--sub {
    font-size: 4.7vw;
  }

  .hero__proof {
    font-size: 3.5vw;
    padding-right: 0;
    padding-bottom: 1vw;
  }

  .hero__cta {
    font-size: 11px;
    padding: 16px 10px;
    width: 100%;
    text-align: center;
  }

  .logos-bar__label {
    font-size: 3.15vw;
    padding: 6px 4px;
    width: 100%;
    text-align: center;
  }

  .hero__bullet {
    font-size: 3.4vw;
  }

  .hero__bullet-icon {
    width: 22px;
    height: 22px;
    font-size: 3vw;
  }
}

/* ================================================================
   RESPONSIVO — MOBILE (≤ 600px)
   ================================================================ */
@media (max-width: 600px) {
  .logos-bar {
    padding: 32px 0;
  }

  .sec-title {
    font-size: clamp(1.4rem, 5.5vw, 1.9rem);
  }

  .dor__headline {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .fechamento__hl {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .form__box {
    padding: 24px 20px;
  }

  .cta-gold,
  .cta-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 11px;
  }

  .cta-gold--big {
    padding: 16px 20px;
    font-size: 11px;
  }

  .form__btn {
    font-size: 12px;
  }

  .pulse-stat {
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  .prova__stat-row {
    justify-content: center !important;
  }

  .prova__stat {
    text-align: center !important;
    align-items: center !important;
  }

  .prova__stat-num,
  .prova__stat-label {
    text-align: center !important;
    width: 100% !important;
  }
}

@media (max-width: 600px) {
  .valor__reuniao {
    align-items: center !important;
    text-align: center !important;
  }

  .valor__reuniao-header {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .valor__reuniao-header div {
    text-align: center !important;
  }

  .valor__reuniao-txt {
    text-align: center !important;
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 2px solid var(--gold-bd) !important;
    padding-top: 12px !important;
  }

  .valor__reuniao-checks {
    align-items: center !important;
    width: 100% !important;
  }

  .valor__reuniao-checks li {
    text-align: center !important;
    justify-content: center !important;
  }
}

/* ================================================================
   MODAL SUCESSO
   ================================================================ */
.modal-sucesso {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.modal-sucesso.ativo {
  opacity: 1;
  visibility: visible;
}

.modal-sucesso__card {
  background: var(--bg2);
  border: 1px solid var(--gold-bd);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  transform: translateY(20px) scale(.95);
  transition: transform .35s ease;
}

.modal-sucesso.ativo .modal-sucesso__card {
  transform: translateY(0) scale(1);
}

.modal-sucesso__ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #111;
}

.modal-sucesso__titulo {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.modal-sucesso__msg {
  font-family: var(--font);
  font-size: .95rem;
  color: var(--w70);
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal-sucesso__btn {
  background: linear-gradient(135deg, var(--gold) 0%, #d4900a 100%);
  color: #111;
  font-family: var(--font);
  font-weight: 800;
  font-size: .95rem;
  padding: 14px 36px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 4px 14px var(--gold-35);
}

.modal-sucesso__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-35);
}