/* ============================================
   Ergofly LP — Premium Tech Direction
   Mix clean light + dark featured section + mockup cards
   ============================================ */

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #FFFFFF;
}

:focus-visible {
  outline: 2px solid #7DB5AC;
  outline-offset: 2px;
}

/* ============================================
   Animações
   ============================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(125, 181, 172, 0.45);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(125, 181, 172, 0);
  }
}

@keyframes featuredGlow {
  0%, 100% {
    box-shadow:
      0 0 60px rgba(37, 73, 146, 0.35),
      0 0 100px rgba(37, 73, 146, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
  50% {
    box-shadow:
      0 0 80px rgba(37, 73, 146, 0.45),
      0 0 130px rgba(37, 73, 146, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
}

.fade-in-up-delay-1 { animation-delay: 0.08s; }
.fade-in-up-delay-2 { animation-delay: 0.16s; }
.fade-in-up-delay-3 { animation-delay: 0.24s; }
.fade-in-up-delay-4 { animation-delay: 0.32s; }
.fade-in-up-delay-5 { animation-delay: 0.40s; }

.dot-pulse {
  animation: dotPulse 2s ease-in-out infinite;
}

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.scroll-reveal-delay-1 { transition-delay: 0.08s; }
.scroll-reveal-delay-2 { transition-delay: 0.16s; }
.scroll-reveal-delay-3 { transition-delay: 0.24s; }
.scroll-reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================
   Hero — mesh gradient sutil (canto sup direito → meio)
   ============================================ */

.hero-bg {
  position: relative;
  background:
    /* Wine principal — canto superior direito, mais intenso */
    radial-gradient(ellipse 60% 50% at 92% 8%, rgba(37, 73, 146, 0.28) 0%, rgba(37, 73, 146, 0.06) 45%, transparent 75%),
    /* Wine rosado — extensão até o meio superior */
    radial-gradient(ellipse 50% 42% at 68% 20%, rgba(249, 200, 39, 0.18) 0%, rgba(249, 200, 39, 0) 65%),
    /* Sage acento — meio-direita pra harmonia */
    radial-gradient(ellipse 38% 32% at 55% 32%, rgba(125, 181, 172, 0.14) 0%, transparent 70%),
    /* Sage canto esquerdo (mantém wash existente) */
    radial-gradient(ellipse 55% 45% at 18% 30%, rgba(125, 181, 172, 0.10) 0%, transparent 70%),
    #FFFFFF;
  overflow: hidden;
}

/* Mesh blur — aurora bem suave reforçando o canto sup direito */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 75%;
  height: 80%;
  background:
    radial-gradient(circle at 75% 35%, rgba(37, 73, 146, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 45% 50%, rgba(249, 200, 39, 0.16) 0%, transparent 60%),
    radial-gradient(circle at 60% 20%, rgba(125, 181, 172, 0.12) 0%, transparent 55%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26, 26, 26, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   Section badge (pill pequeno acima dos títulos)
   ============================================ */

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(125, 181, 172, 0.10);
  border: 1px solid rgba(125, 181, 172, 0.25);
  color: #5A8E86;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.section-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #7DB5AC;
}

/* Variante dark do badge */
.section-badge-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

.section-badge-dark .dot {
  background: #7DB5AC;
  box-shadow: 0 0 10px rgba(125, 181, 172, 0.7);
}

/* ============================================
   Section title
   ============================================ */

.section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #1A1A1A;
}

.section-title-dark {
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 2.875rem; }
}

.section-subhead {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.65;
}

.section-subhead-dark {
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .section-subhead { font-size: 1.0625rem; }
}

/* ============================================
   Botão CTA — clean flat wine
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  background: #254992;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 73, 146, 0.22);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 1024px) {
  .btn-primary {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

.btn-primary:hover {
  background: #1B3870;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 73, 146, 0.32);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary .arrow {
  transition: transform 0.2s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

/* Botão secundário (outline) */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  background: #FFFFFF;
  color: #1A1A1A;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-secondary:hover {
  border-color: rgba(125, 181, 172, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

/* ============================================
   Glass pill (badge pre-headline)
   ============================================ */

.glass-pill {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(125, 181, 172, 0.35);
}

/* ============================================
   Cred cards (Hero — embaixo) — clean solid
   ============================================ */

.cred-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cred-card:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 181, 172, 0.45);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.cred-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(125, 181, 172, 0.18) 0%, rgba(37, 73, 146, 0.08) 100%);
  color: #5A8E86;
}

/* ============================================
   Stat cards LIGHT (Seção 2 — Números, versão light)
   ============================================ */

.stat-card-light {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #FAFAFB;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 20px;
  padding: 40px 28px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.stat-card-light:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 181, 172, 0.45);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.stat-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(125, 181, 172, 0.18) 0%, rgba(37, 73, 146, 0.08) 100%);
  color: #5A8E86;
  margin-bottom: 20px;
}

.stat-card-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.stat-number-light {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #254992 0%, #1B3870 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
  .stat-number-light { font-size: 4.5rem; }
}

@media (min-width: 1024px) {
  .stat-number-light { font-size: 5rem; }
}

.stat-card-text {
  margin-top: 18px;
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.55;
}

.stat-card-text strong {
  color: #1A1A1A;
  font-weight: 600;
}

/* Counter no Hero — evita pulinho de largura */
.headline-counter {
  font-variant-numeric: tabular-nums;
  display: inline-block;
}

/* ============================================
   DARK SECTION (Seção 2 — Números)
   Estilo Ref 1: fundo escuro premium + featured card glow
   ============================================ */

.dark-section {
  position: relative;
  background: linear-gradient(180deg, #070B1A 0%, #0C1428 100%);
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

/* SVG dividers — curvas sutis na mesma direção (pico subindo no meio) */
.dark-section-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 5;
  pointer-events: none;
  display: block;
}

.dark-section-divider-top {
  top: -1px; /* -1px evita gap de subpixel */
}

.dark-section-divider-bottom {
  bottom: -1px;
}

@media (max-width: 767px) {
  .dark-section-divider {
    height: 24px;
  }
}

/* Dot grid sutil em branco (visível só na parte escura central) */
.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 75% 50% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 50% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Glow animado de fundo — 3 blobs flutuantes */
.dark-section-glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.dark-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  will-change: transform, opacity;
}

.dark-glow-blob-1 {
  top: 10%;
  left: 18%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(37, 73, 146, 0.55) 0%, rgba(37, 73, 146, 0) 65%);
  animation: glowDrift1 14s ease-in-out infinite;
}

.dark-glow-blob-2 {
  top: 40%;
  right: 12%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(125, 181, 172, 0.4) 0%, rgba(125, 181, 172, 0) 60%);
  animation: glowDrift2 16s ease-in-out infinite;
}

.dark-glow-blob-3 {
  bottom: -10%;
  left: 45%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 200, 39, 0.35) 0%, rgba(249, 200, 39, 0) 60%);
  animation: glowDrift3 18s ease-in-out infinite;
}

@keyframes glowDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(80px, 60px) scale(1.15); opacity: 0.9; }
}

@keyframes glowDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.65; }
  50% { transform: translate(-70px, 80px) scale(1.2); opacity: 0.85; }
}

@keyframes glowDrift3 {
  0%, 100% { transform: translate(-50%, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50px) scale(1.18); opacity: 0.8; }
}

.dark-section-glow-sage {
  position: absolute;
  bottom: -10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(125, 181, 172, 0.18) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Dark card (regular) — centralizado vertical e horizontal */
.dark-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.dark-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  pointer-events: none;
}

.dark-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

/* Dark card FEATURED (center one — alinhado com os outros, glow vinho) */
.dark-card-featured {
  position: relative;
  background:
    radial-gradient(ellipse at center top, rgba(37, 73, 146, 0.45) 0%, rgba(27, 56, 112, 0.3) 45%, rgba(12, 20, 40, 0.65) 100%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(37, 73, 146, 0.5);
  animation: featuredGlow 5s ease-in-out infinite;
}

.dark-card-featured:hover {
  transform: translateY(-3px);
}

/* Featured top badge */
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.featured-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background: white;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
}

/* Dark card icon — wrapper com bg + suporte pra SVG custom dentro */
.dark-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(125, 181, 172, 0.12);
  border: 1px solid rgba(125, 181, 172, 0.22);
  color: #9DCBC3;
  margin-bottom: 24px;
}

.dark-card-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.dark-card-featured .dark-card-icon {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

/* Dark number */
.dark-number {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

@media (min-width: 768px) {
  .dark-number {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .dark-number {
    font-size: 5rem;
  }
}

/* Featured number — branco puro com glow */
.dark-card-featured .dark-number {
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  background: none;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.35);
}

/* Dark card text */
.dark-card-text {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.55;
}

.dark-card-text strong {
  color: #FFFFFF;
  font-weight: 600;
}

.dark-card-featured .dark-card-text {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   Step cards premium (Seção 3 — mockups)
   Estilo Ref 2: cards com mockup ilustrativo
   ============================================ */

.step-card-premium {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.step-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
  border-color: rgba(125, 181, 172, 0.4);
}

.step-mockup {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #F4F9F8 0%, #FDF5F8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.step-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26, 26, 26, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.7;
  pointer-events: none;
}

.step-mockup-svg {
  position: relative;
  z-index: 1;
  max-width: 85%;
  max-height: 85%;
  filter: drop-shadow(0 12px 28px rgba(15, 23, 42, 0.12));
}

/* Imagem real no mockup (passo 4, app em campo): inteira, sem corte */
.step-mockup-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Card com foto real: fundo branco (combina com o fundo da imagem) e sem textura */
.step-mockup-photo {
  background: #FFFFFF;
}

.step-mockup-photo::before {
  display: none;
}

.step-meta {
  padding: 28px 28px 30px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(125, 181, 172, 0.12);
  border: 1px solid rgba(125, 181, 172, 0.25);
  color: #5A8E86;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

/* ============================================
   FAQ accordion — clean
   ============================================ */

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[data-open="true"] {
  border-color: rgba(37, 73, 146, 0.25);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.4;
  transition: color 0.2s ease;
}

@media (min-width: 1024px) {
  .faq-trigger {
    padding: 24px 28px;
    font-size: 1.0625rem;
  }
}

.faq-trigger:hover { color: #254992; }

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #7DB5AC;
  transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item[data-open="true"] .faq-chevron {
  transform: rotate(180deg);
  color: #254992;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-content-inner {
  padding: 0 24px 22px 24px;
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.65;
}

@media (min-width: 1024px) {
  .faq-content-inner {
    padding: 0 28px 24px 28px;
    font-size: 1rem;
  }
}

.faq-content-inner strong {
  color: #1A1A1A;
  font-weight: 600;
}

/* ============================================
   CTA Final card — clean com wash suave
   ============================================ */

.cta-final-card {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(37, 73, 146, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(125, 181, 172, 0.12) 0%, transparent 65%),
    #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  padding: 48px 28px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

@media (min-width: 768px) {
  .cta-final-card {
    padding: 72px 48px;
  }
}

/* ============================================
   VSL placeholder (Hero — direita)
   ============================================ */

.vsl-frame {
  position: relative;
  background: #0A1020;
}

.play-button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-button:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 50px -10px rgba(37, 73, 146, 0.4);
}

/* ============================================
   Section background (Seções light)
   ============================================ */

.section-bg {
  position: relative;
  background: #FFFFFF;
  z-index: 2;
}

.section-bg-soft {
  position: relative;
  background: #FFFFFF;
  z-index: 2;
}

/* FAQ — bg tint sutil pra quebrar monotonia branca */
.section-bg-tint {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(125, 181, 172, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(37, 73, 146, 0.04) 0%, transparent 65%),
    #FAFBFC;
  z-index: 2;
}

.hero-bg {
  position: relative;
  z-index: 2;
}

.site-footer {
  position: relative;
  z-index: 2;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: #FAFBFC;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer-link {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #254992;
}

/* ============================================
   VSL dashboard mock (Hero — direita)
   ============================================ */

.vsl-dashboard-mock {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.vsl-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(11, 5, 18, 0.35) 0%, rgba(11, 5, 18, 0.6) 70%, rgba(11, 5, 18, 0.75) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ============================================
   Hero — cred card destaque + mini selos
   ============================================ */

.cred-card-hero {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(37, 73, 146, 0.05) 0%, rgba(125, 181, 172, 0.05) 100%), #FFFFFF;
  border: 1px solid rgba(37, 73, 146, 0.15);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cred-card-hero:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 73, 146, 0.3);
  box-shadow: 0 14px 32px rgba(37, 73, 146, 0.10);
}

.cred-card-hero-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #254992 0%, #1B3870 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(37, 73, 146, 0.28);
}

.cred-card-hero-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cred-card-hero-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1A1A1A;
}

@media (min-width: 1024px) {
  .cred-card-hero-number {
    font-size: 2.25rem;
  }
}

.cred-card-hero-label {
  margin-top: 6px;
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.4;
}

.cred-mini {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 14px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cred-mini:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 181, 172, 0.4);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.cred-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(125, 181, 172, 0.14);
  color: #5A8E86;
}

.cred-mini-text {
  min-width: 0;
}

.cred-mini-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.2;
}

.cred-mini-sub {
  font-size: 0.6875rem;
  color: #6B7280;
  line-height: 1.3;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .cred-card-hero {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px;
  }
  .cred-mini {
    padding: 12px 10px;
  }
  .cred-mini-title { font-size: 0.75rem; }
  .cred-mini-sub { font-size: 0.625rem; }
}

/* ============================================
   CTA Final — versão premium
   ============================================ */

.cta-final-card-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(37, 73, 146, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(125, 181, 172, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
  border: 1px solid rgba(37, 73, 146, 0.18);
  border-radius: 32px;
  padding: 56px 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(37, 73, 146, 0.03);
  isolation: isolate;
}

@media (min-width: 768px) {
  .cta-final-card-premium {
    padding: 80px 64px;
  }
}

.cta-final-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-final-glow-wine,
.cta-final-glow-sage {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.cta-final-glow-wine {
  top: -20%;
  right: -10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(37, 73, 146, 0.45) 0%, rgba(37, 73, 146, 0) 65%);
}

.cta-final-glow-sage {
  bottom: -25%;
  left: -15%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(125, 181, 172, 0.45) 0%, rgba(125, 181, 172, 0) 65%);
}

.cta-guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: rgba(125, 181, 172, 0.14);
  border: 1px solid rgba(125, 181, 172, 0.35);
  color: #5A8E86;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Botão grande pro CTA final */
.btn-primary-lg {
  padding: 18px 36px;
  font-size: 1.0625rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(37, 73, 146, 0.28);
}

@media (min-width: 1024px) {
  .btn-primary-lg {
    padding: 20px 40px;
    font-size: 1.125rem;
  }
}

.btn-primary-lg:hover {
  box-shadow: 0 14px 36px rgba(37, 73, 146, 0.4);
}

.cta-final-seals {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}

.cta-final-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1A1A1A;
}

.cta-final-seal svg {
  color: #7DB5AC;
}

/* ============================================
   Footer — expandido
   ============================================ */

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 16px;
}

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

.footer-list .footer-link {
  font-size: 0.875rem;
  line-height: 1.4;
}

.footer-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link-icon svg {
  color: #7DB5AC;
  flex-shrink: 0;
}

.footer-seal {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 9999px;
  background: rgba(125, 181, 172, 0.1);
  border: 1px solid rgba(125, 181, 172, 0.22);
  color: #5A8E86;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================
   Scroll Darken Veil
   Overlay fixo que cobre o viewport e fade in/out
   conforme a Seção 2 entra/sai do viewport.
   ============================================ */

.scroll-darken-veil {
  position: fixed;
  inset: 0;
  background: #070B1A;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  will-change: opacity;
  transition: opacity 0.15s linear;
}

/* Conteúdo da dark-section acima do veil — exclui glow, dividers e dot-grid */
.dark-section > div:not(.dark-section-glow):not(.dark-section-divider) {
  position: relative;
  z-index: 10;
}

/* ============================================
   SST — elementos novos (cores nova identidade)
   ============================================ */

/* Marca-texto dourado (linha de oferta no hero) */
.hl-gold {
  background-image: linear-gradient(transparent 55%, rgba(249, 200, 39, 0.55) 55%);
  padding: 0 2px;
}

/* Número "4" destacado no título "Como funciona, em 4 passos" */
.hl-gold-num {
  display: inline-block;
  background: #F9C827;
  color: #1A1A1A;
  border-radius: 10px;
  padding: 0 0.18em;
  line-height: 1.05;
}

/* Cápsula azul — "Confiam na metodologia" */
.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 9999px;
  background: #254992;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  box-shadow: 0 6px 16px rgba(37, 73, 146, 0.25);
}

/* Pill dourado do PASSO 04 */
.step-number-pill-gold {
  background: rgba(249, 200, 39, 0.18);
  border-color: rgba(249, 200, 39, 0.55);
  color: #8A6400;
}

/* ============================================
   Formulário de captação (#form)
   ============================================ */

.form-section {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.95) 100%),
    url('assets/form-bg.png') center / cover no-repeat;
  z-index: 2;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-field input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #FFFFFF;
  font-family: inherit;
  font-size: 1rem;
  color: #1A1A1A;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-field input::placeholder {
  color: #9AA1AD;
}

.lead-field input:focus {
  outline: none;
  border-color: #254992;
  box-shadow: 0 0 0 3px rgba(37, 73, 146, 0.15);
}

.lead-submit {
  width: 100%;
  margin-top: 4px;
  padding: 17px 24px;
  border: none;
  border-radius: 14px;
  background: #254992;
  color: #FFFFFF;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.0625rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 73, 146, 0.28);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.lead-submit:hover {
  background: #1B3870;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 73, 146, 0.36);
}

.lead-submit:active {
  transform: translateY(0);
}

.lead-msg {
  text-align: center;
  font-size: 0.9375rem;
  margin-top: 6px;
  min-height: 1.2em;
}

.lead-msg-error {
  color: #C0392B;
}

.lead-msg-success {
  color: #2E7D58;
  font-weight: 600;
}

/* ============================================
   Botão de som do vídeo do hero
   ============================================ */

.vsl-sound-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  background: rgba(7, 11, 26, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vsl-sound-btn:hover {
  background: rgba(7, 11, 26, 0.78);
  transform: translateY(-1px);
}

.vsl-sound-ic {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.vsl-sound-ic-on {
  display: none;
}

.vsl-sound-btn.is-on .vsl-sound-ic-off {
  display: none;
}

.vsl-sound-btn.is-on .vsl-sound-ic-on {
  display: inline;
}

/* ============================================
   Banner de cookies (LGPD)
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 50;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.16);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-text {
  margin: 0;
  font-size: 0.8125rem;
  color: #5C5C72;
  line-height: 1.5;
}

.cookie-btn {
  flex-shrink: 0;
  padding: 10px 22px;
  border: none;
  border-radius: 10px;
  background: #254992;
  color: #FFFFFF;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-btn:hover {
  background: #1B3870;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 12px;
  }
  .cookie-btn {
    width: 100%;
  }
}
