.elementor-206 .elementor-element.elementor-element-498d058{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}body.elementor-page-206:not(.elementor-motion-effects-element-type-background), body.elementor-page-206 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000154;}/* Start custom CSS *//* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep:          #000154;
  --deeper:        #000141;
  --blue:          #125AD0;
  --gray:          #D9D9D9;
  --white:         #FFFFFF;

  --blue-10:       rgba(18, 90, 208, 0.10);
  --blue-18:       rgba(18, 90, 208, 0.18);
  --blue-25:       rgba(18, 90, 208, 0.25);
  --white-06:      rgba(255, 255, 255, 0.06);
  --white-10:      rgba(255, 255, 255, 0.10);
  --gray-50:       rgba(217, 217, 217, 0.50);
  --gray-35:       rgba(217, 217, 217, 0.35);
  --red-dim:       rgba(255, 70, 70, 0.12);
  --red:           #FF4646;

  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --ease-sharp:    cubic-bezier(0.7, 0, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--deep);
  color: var(--gray);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--blue); color: var(--white); }

/* ============================================================
   UTILITIES
============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

/* Divider line */
.line-h {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-25), transparent);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Cards com animação contínua: após visible, a transform é controlada pela keyframe */
.pain-card.visible,
.method-card.visible,
.analysis-card.visible {
  transition: opacity 0.65s var(--ease);
  transform: none;
}
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue);
  color: var(--white);
  padding: 18px 36px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px -10px rgba(18, 90, 208, 0.55);
}
.btn-primary:hover::after { transform: translateX(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-50);
  padding: 17px 28px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(217,217,217,0.15);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--white); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 0;
  background: rgba(0, 1, 84, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--white-06);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(0, 1, 65, 0.97);
  box-shadow: 0 4px 32px -8px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-img {
  width: 230px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--white);
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

.nav-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(217,217,217,0.4);
}
.nav-badge-dot {
  width: 6px; height: 6px;
  background: #22D36E;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,211,110,0.18);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(34,211,110,0.18); }
  50%       { opacity: 0.5; box-shadow: 0 0 0 6px rgba(34,211,110,0.06); }
}

/* ============================================================
   FLOAT SYSTEM — continuous ambient motion
============================================================ */
/* gentle vertical bob */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
/* smaller counter-phase bob */
@keyframes floatYb {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}
/* slow diagonal drift for large glows */
@keyframes floatDrift {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(26px, -20px); }
  66%      { transform: translate(-18px, 16px); }
}
/* opposite diagonal drift */
@keyframes floatDriftB {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(-30px, 18px); }
  66%      { transform: translate(20px, -22px); }
}
/* bob + subtle tilt for icons/glyphs */
@keyframes floatSway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-7px) rotate(2.5deg); }
}
/* soft breathing scale for play button / pills */
@keyframes floatBreathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-4px) scale(1.03); }
}
/* drift that preserves centered translate(-50%,-50%) */
@keyframes floatCenter {
  0%, 100% { transform: translate(-50%, -50%); }
  33%      { transform: translate(calc(-50% + 22px), calc(-50% - 16px)); }
  66%      { transform: translate(calc(-50% - 18px), calc(-50% + 14px)); }
}

/* ============================================================
   ANIMAÇÕES IMPORTADAS DA LANDING PAGE PRINCIPAL
============================================================ */

/* Grid bg deriva continuamente */
@keyframes grid-drift {
  to { background-position: 56px 56px; }
}
@keyframes grid-drift-rev {
  to { background-position: -56px -56px; }
}

/* W background gira */
@keyframes bg-w-spin {
  0%  { transform: translateY(-50%) rotate(0deg); }
  to  { transform: translateY(-50%) rotate(360deg); }
}
@keyframes bg-w-spin-2 {
  0%  { transform: translateY(-50%) rotate(0deg); }
  to  { transform: translateY(-50%) rotate(-360deg); }
}

/* Navbar drop */
@keyframes nav-drop {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Hero entrada cascata */
@keyframes hero-up {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Flutuação com variantes */
@keyframes float-a {
  0%,100% { transform: translateY(0) rotate(0deg); }
  25%     { transform: translateY(-14px) rotate(1.5deg); }
  75%     { transform: translateY(6px)  rotate(-1deg); }
}
@keyframes float-b {
  0%,100% { transform: translateY(0) rotate(0deg); }
  30%     { transform: translateY(8px) rotate(-2deg); }
  70%     { transform: translateY(-12px) rotate(1deg); }
}
@keyframes float-c {
  0%,100% { transform: translateY(0) translateX(0); }
  33%     { transform: translateY(-10px) translateX(6px); }
  66%     { transform: translateY(5px)  translateX(-4px); }
}
@keyframes float-d {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-8px) scale(1.04); }
}

/* Logo mark balança */
@keyframes logo-rock {
  0%,100% { transform: rotate(0deg) scale(1); }
  20%     { transform: rotate(5deg) scale(1.05); }
  50%     { transform: rotate(-4deg) scale(1.02); }
  80%     { transform: rotate(3deg) scale(1.04); }
}

/* Eyebrow linha anima */
@keyframes eyebrow-slide {
  0%,100% { width: 24px; transform: translateX(0); }
  50%     { width: 38px; transform: translateX(4px); }
}

/* Hero badge ondula */
@keyframes tag-wave {
  0%,100% { transform: translateX(0) scale(1); }
  30%     { transform: translateX(4px) scale(1.02); }
  70%     { transform: translateX(-3px) scale(0.99); }
}

/* Stat values sobem */
@keyframes stat-bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* Pain / problem cards sobem individualmente */
@keyframes card-rise {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* Ícones giram e escalam */
@keyframes icon-spin-pulse {
  0%,100% { transform: rotate(0deg) scale(1); }
  25%     { transform: rotate(-12deg) scale(1.15); }
  50%     { transform: rotate(8deg) scale(1.1); }
  75%     { transform: rotate(-5deg) scale(1.05); }
}

/* Method cards número flutua */
@keyframes num-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%     { transform: translateY(-12px) rotate(2deg); }
  66%     { transform: translateY(5px) rotate(-1deg); }
}

/* Metric / analysis items metric-bob */
@keyframes metric-bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* Check / analysis icons quicam */
@keyframes check-bounce {
  0%,100% { transform: scale(1) rotate(0deg); }
  30%     { transform: scale(1.25) rotate(-10deg); }
  60%     { transform: scale(0.9) rotate(5deg); }
  80%     { transform: scale(1.1) rotate(-3deg); }
}

/* Testemunhal / trap cards oscilam */
@keyframes card-sway {
  0%,100% { transform: rotate(0deg) translateY(0); }
  20%     { transform: rotate(0.6deg) translateY(-5px); }
  50%     { transform: rotate(-0.5deg) translateY(3px); }
  80%     { transform: rotate(0.3deg) translateY(-2px); }
}

/* Logo strip items flutuam */
@keyframes logo-float {
  0%,100% { transform: translateY(0) scale(1);     opacity: 0.35; }
  50%     { transform: translateY(-7px) scale(1.05); opacity: 0.75; }
}

/* Badge flutua */
@keyframes badge-float {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-5px) scale(1.04); }
}

/* Shimmer em botões */
@keyframes btn-shimmer {
  0%   { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(250%) skewX(-20deg); }
}

/* Glow pulse nos botões */
@keyframes btn-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(18,90,208,0); }
  50%      { box-shadow: 0 0 0 6px rgba(18,90,208,0.28); }
}

/* Final btn breathe */
@keyframes final-btn-breathe {
  0%, 100% { box-shadow: 0 20px 60px -10px rgba(18,90,208,0.5), 0 0 0 0 rgba(18,90,208,0); }
  50%      { box-shadow: 0 20px 60px -10px rgba(18,90,208,0.7), 0 0 0 8px rgba(18,90,208,0.18); }
}

/* Arrow bounce */
@keyframes arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(5px); }
}

/* Scan grid deriva */
.scan-grid { animation: grid-drift 8s linear infinite; }

/* Navbar */
.navbar { animation: nav-drop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* Logo mark */
.logo-mark { animation: logo-rock 3s ease-in-out infinite; }

/* Hero badge / tag */
.hero-badge { animation: tag-wave 4s ease-in-out infinite !important; }

/* Hero — entrada cascata */
.hero-content.entered h1        { animation: hero-up 0.8s 0.25s cubic-bezier(0.22,1,0.36,1) both; }
.hero-content.entered .hero-desc { animation: hero-up 0.8s 0.4s cubic-bezier(0.22,1,0.36,1) both; }
.hero-content.entered .hero-actions { animation: hero-up 0.8s 0.55s cubic-bezier(0.22,1,0.36,1) both; }

/* Eyebrow linha */
.eyebrow::before { animation: eyebrow-slide 3.5s ease-in-out infinite; }

/* Pain cards sobem em cascata — só depois de visíveis */
.pain-card.visible:nth-child(1) { animation: card-rise 5s 0.0s ease-in-out infinite; }
.pain-card.visible:nth-child(2) { animation: card-rise 5s 0.8s ease-in-out infinite; }
.pain-card.visible:nth-child(3) { animation: card-rise 5s 1.6s ease-in-out infinite; }
.pain-card.visible:nth-child(4) { animation: card-rise 5s 2.4s ease-in-out infinite; }
.pain-card.visible:nth-child(5) { animation: card-rise 5s 3.2s ease-in-out infinite; }
.pain-card.visible:nth-child(6) { animation: card-rise 5s 4.0s ease-in-out infinite; }
.pain-card:hover { animation-play-state: paused; }

/* Pain card icons giram */
.pain-ico { animation: icon-spin-pulse 4s ease-in-out infinite !important; }
.pain-grid .pain-card:nth-of-type(1) .pain-ico { animation-delay: 0.0s !important; }
.pain-grid .pain-card:nth-of-type(2) .pain-ico { animation-delay: 0.6s !important; }
.pain-grid .pain-card:nth-of-type(3) .pain-ico { animation-delay: 1.2s !important; }
.pain-grid .pain-card:nth-of-type(4) .pain-ico { animation-delay: 1.8s !important; }
.pain-grid .pain-card:nth-of-type(5) .pain-ico { animation-delay: 2.4s !important; }
.pain-grid .pain-card:nth-of-type(6) .pain-ico { animation-delay: 3.0s !important; }

/* Trap cards oscilam */
.trap-panel { animation: card-sway 5s ease-in-out infinite; }
.trap-panel:hover { animation-play-state: paused; }

/* Trap icons */
.trap-ico { animation: check-bounce 2.8s ease-in-out infinite !important; }
.trap-item:nth-of-type(1) .trap-ico { animation-delay: 0.0s !important; }
.trap-item:nth-of-type(2) .trap-ico { animation-delay: 0.9s !important; }
.trap-item:nth-of-type(3) .trap-ico { animation-delay: 1.8s !important; }

/* Method card números flutuam */
.method-card:nth-child(1) .method-n { animation: num-float 5s 0.0s ease-in-out infinite; }
.method-card:nth-child(2) .method-n { animation: num-float 5s 0.6s ease-in-out infinite; }
.method-card:nth-child(3) .method-n { animation: num-float 5s 1.2s ease-in-out infinite; }
.method-card:nth-child(4) .method-n { animation: num-float 5s 1.8s ease-in-out infinite; }
.method-card:nth-child(5) .method-n { animation: num-float 5s 2.4s ease-in-out infinite; }
.method-card:nth-child(6) .method-n { animation: num-float 5s 3.0s ease-in-out infinite; }
.method-card:nth-child(7) .method-n { animation: num-float 5s 3.6s ease-in-out infinite; }
.method-card:nth-child(8) .method-n { animation: num-float 5s 4.2s ease-in-out infinite; }

/* Method cards flutuam — só depois de visíveis */
.method-card.visible:nth-child(1) { animation: float-d 6s 0.0s ease-in-out infinite; }
.method-card.visible:nth-child(2) { animation: float-d 6s 0.75s ease-in-out infinite; }
.method-card.visible:nth-child(3) { animation: float-d 6s 1.5s ease-in-out infinite; }
.method-card.visible:nth-child(4) { animation: float-d 6s 2.25s ease-in-out infinite; }
.method-card.visible:nth-child(5) { animation: float-d 6s 3.0s ease-in-out infinite; }
.method-card.visible:nth-child(6) { animation: float-d 6s 3.75s ease-in-out infinite; }
.method-card.visible:nth-child(7) { animation: float-d 6s 4.5s ease-in-out infinite; }
.method-card.visible:nth-child(8) { animation: float-d 6s 5.25s ease-in-out infinite; }
.method-card:hover        { animation-play-state: paused; }

/* Analysis icons quicam em sequência */
.analysis-ico { animation: check-bounce 2.8s ease-in-out infinite !important; }
.analysis-card:nth-of-type(1) .analysis-ico { animation-delay: 0.0s !important; }
.analysis-card:nth-of-type(2) .analysis-ico { animation-delay: 0.5s !important; }
.analysis-card:nth-of-type(3) .analysis-ico { animation-delay: 1.0s !important; }
.analysis-card:nth-of-type(4) .analysis-ico { animation-delay: 1.5s !important; }
.analysis-card:nth-of-type(5) .analysis-ico { animation-delay: 2.0s !important; }

/* Analysis cards flutuam — só depois de visíveis */
.analysis-card.visible:nth-child(1) { animation: float-c 6.5s 0.0s ease-in-out infinite; }
.analysis-card.visible:nth-child(2) { animation: float-c 6.5s 1.3s ease-in-out infinite; }
.analysis-card.visible:nth-child(3) { animation: float-c 6.5s 2.6s ease-in-out infinite; }
.analysis-card.visible:nth-child(4) { animation: float-c 6.5s 3.9s ease-in-out infinite; }
.analysis-card.visible:nth-child(5) { animation: float-c 6.5s 5.2s ease-in-out infinite; }
.analysis-card:hover        { animation-play-state: paused; transform: translateY(-4px) !important; }

/* Logo strip items */
.logo-ph:nth-child(1) { animation: logo-float 3.0s 0.0s ease-in-out infinite; }
.logo-ph:nth-child(2) { animation: logo-float 3.0s 0.6s ease-in-out infinite; }
.logo-ph:nth-child(3) { animation: logo-float 3.0s 1.2s ease-in-out infinite; }
.logo-ph:nth-child(4) { animation: logo-float 3.0s 1.8s ease-in-out infinite; }
.logo-ph:nth-child(5) { animation: logo-float 3.0s 2.4s ease-in-out infinite; }

/* Final tag flutua */
.final-tag { animation: badge-float 3.5s ease-in-out infinite !important; }

/* Final btn breathe + shimmer */
.final-btn {
  animation: final-btn-breathe 2.5s ease-in-out infinite;
}
.final-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: btn-shimmer 2.8s ease-in-out infinite;
  z-index: 2;
}
.final-btn:hover {
  animation: none;
}

/* Btn primary shimmer + glow */
.btn-primary {
  animation: btn-glow-pulse 2.5s ease-in-out infinite;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: btn-shimmer 2.8s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
.btn-primary:hover {
  animation: none;
}

/* Arrow icons bounce nos links */
.nav-cta svg,
.btn-primary svg,
.final-btn svg,
.faq-link svg {
  animation: arrow-bounce 1.8s ease-in-out infinite;
}

/* FAQ toggle bounce ao hover */
.faq-item.open .faq-tog {
  animation: check-bounce 0.5s ease-in-out;
}

/* Reduced motion override */
@media (prefers-reduced-motion: reduce) {
  .scan-grid, .logo-mark, .hero-badge, .eyebrow::before,
  .pain-card, .pain-ico, .trap-panel, .trap-ico,
  .method-card, .method-n, .analysis-card, .analysis-ico,
  .logo-ph, .final-tag, .final-btn, .btn-primary,
  .nav-cta svg, .btn-primary svg, .final-btn svg, .faq-link svg {
    animation: none !important;
  }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.01em;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--white); color: var(--deep); }

/* ============================================================
   HERO
============================================================ */
@media (max-width: 768px) {

    .hero{
        padding-top: 470px !important; 
        
    }
    
    .hero-actions {
  margin-bottom: 32px !important;
    }
    
    .logo-strip {
  padding-top: 32px !important;
    }

    .hero {
    z-index:-1;
    background-image:url(https://wertx.com.br/wp-content/uploads/2026/07/Camada-223111-scaled.webp) !important;
        background-size:cover;
        background-position:center top;
}

.hero-badge{
    display: none !important;
}


}

.hero {
  position: relative;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex;
  padding:120px 0 100px;
   background-image:url(https://wertx.com.br/wp-content/uploads/2026/07/HERO2-scaled.webp);
        background-size:cover;
        background-position:center top;
  overflow: hidden;
}

/* — Scanner background — */
.hero-scanner {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.scan-beam {
  position: absolute;
  left: 0; right: 0;
  height: 160px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(18, 90, 208, 0.06) 40%,
    rgba(18, 90, 208, 0.10) 50%,
    rgba(18, 90, 208, 0.06) 60%,
    transparent 100%);
  animation: scanDown 11s ease-in-out infinite;
  top: -160px;
}
.scan-hairline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(18, 90, 208, 0.12) 15%,
    rgba(18, 90, 208, 0.35) 50%,
    rgba(18, 90, 208, 0.12) 85%,
    transparent 100%);
  animation: scanDown 11s ease-in-out infinite;
  top: -80px;
}
@keyframes scanDown {
  0%   { transform: translateY(0); }
  100% { transform: translateY(calc(100vh + 160px)); }
}

/* Pipeline nodes */
.scan-nodes { position: absolute; inset: 0; }
.node {
  position: absolute;
  width: 5px; height: 5px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px 2px var(--blue-25);
  animation: nodeFlash 8s ease-in-out infinite;
}
.node::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  border: 1px solid var(--blue-25);
  border-radius: 50%;
}
.node:nth-child(1)  { top: 18%; left: 12%; animation-delay: 0.0s; }
.node:nth-child(2)  { top: 32%; left: 26%; animation-delay: 0.6s; }
.node:nth-child(3)  { top: 52%; left: 40%; animation-delay: 1.2s; }
.node:nth-child(4)  { top: 68%; left: 58%; animation-delay: 1.8s; }
.node:nth-child(5)  { top: 24%; left: 65%; animation-delay: 2.4s; }
.node:nth-child(6)  { top: 44%; left: 78%; animation-delay: 3.0s; }
.node:nth-child(7)  { top: 75%; left: 20%; animation-delay: 0.9s; }
.node:nth-child(8)  { top: 14%; left: 50%; animation-delay: 1.5s; }
.node:nth-child(9)  { top: 82%; left: 72%; animation-delay: 2.1s; }
.node:nth-child(10) { top: 60%; left: 88%; animation-delay: 2.7s; }
@keyframes nodeFlash {
  0%, 100%     { opacity: 0;    transform: scale(1); }
  50%          { opacity: 0.38; transform: scale(1.12); }
}

/* Glow orbs */
.hero-glow-a {
  position: absolute;
  top: -120px; right: -60px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(18,90,208,0.14) 0%, transparent 70%);
  pointer-events: none;
  animation: floatDrift 19s ease-in-out infinite;
}
.hero-glow-b {
  position: absolute;
  bottom: -180px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(18,90,208,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: floatDriftB 24s ease-in-out infinite;
  animation-delay: -6s;
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 800px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-10);
  border: 1px solid var(--blue-25);
  border-radius: 3px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(217,217,217,0.6);
  margin-bottom: 32px;
  animation: floatY 6s ease-in-out infinite;
}
.hero-badge span {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(18,90,208,0.25);
}

.hero h1 {
  font-size: clamp(36px, 5.2vw, 70px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-50);
  max-width: 620px;
  margin-bottom: 48px;
}
.hero-desc strong { color: var(--white); font-weight: 600; }

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 72px;
}

/* Logos strip */
.logo-strip {
  padding-top: 48px;
  border-top: 1px solid var(--white-06);
  position: relative;
  z-index: 2;
}
.logo-strip-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(217,217,217,0.25);
  margin-bottom: 24px;
}
.logo-strip-items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.logo-ph {
  height: 26px;
  border-radius: 3px;
  background: rgba(217,217,217,0.06);
  border: 1px solid rgba(217,217,217,0.08);
  position: relative;
  overflow: hidden;
}
.logo-ph:nth-child(1) { width: 110px; }
.logo-ph:nth-child(2) { width: 90px; }
.logo-ph:nth-child(3) { width: 125px; }
.logo-ph:nth-child(4) { width: 95px; }
.logo-ph:nth-child(5) { width: 105px; }
.logo-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: shimmer 2.5s linear infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ============================================================
   SECTION HEADER
============================================================ */
.sec-hd { margin-bottom: 64px; }
.sec-hd h2 {
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-top: 16px;
}
.sec-hd h2 em { font-style: italic; color: var(--blue); }
.sec-hd p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-50);
  max-width: 580px;
  margin-top: 16px;
}

/* ============================================================
   VSL SECTION
============================================================ */
.vsl-sec {
  padding: 60px 0 100px;
  background: var(--deep);
  position: relative;
  z-index: 2;
}

.vsl-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

/* Moldura externa com glow */
.vsl-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--deeper);
  border: 1px solid var(--blue-25);
  box-shadow:
    0 0 0 1px var(--blue-10),
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 60px -10px rgba(18, 90, 208, 0.20);
  aspect-ratio: 16 / 9;
}

/* Glow atrás do frame */
.vsl-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110%; height: 120%;
  background: radial-gradient(ellipse, rgba(18,90,208,0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: floatCenter 17s ease-in-out infinite;
}

/* Placeholder — substitua pelo iframe quando tiver o vídeo */
.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(18,90,208,0.06) 0%, transparent 60%),
    var(--deeper);
  cursor: pointer;
}

/* Grid sutil no placeholder */
.vsl-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--blue-10) 1px, transparent 1px),
    linear-gradient(90deg, var(--blue-10) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.6;
}

/* Botão play */
.vsl-play {
  position: relative;
  z-index: 2;
  width: 72px; height: 72px;
  background: var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 12px rgba(18,90,208,0.15), 0 12px 32px -8px rgba(18,90,208,0.5);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.vsl-placeholder:hover .vsl-play {
  transform: scale(1.1);
  box-shadow: 0 0 0 18px rgba(18,90,208,0.12), 0 16px 40px -8px rgba(18,90,208,0.6);
}
.vsl-play svg { margin-left: 4px; }

.vsl-play-label {
  position: relative;
  z-index: 2;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(217,217,217,0.4);
}

/* Linha de contexto abaixo do vídeo */
.vsl-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(217,217,217,0.3);
  font-weight: 400;
}
.vsl-caption::before,
.vsl-caption::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-18));
}
.vsl-caption::after {
  background: linear-gradient(270deg, transparent, var(--blue-18));
}

/* Iframe embed (ativo quando tiver o vídeo) */
.vsl-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   PAIN SECTION
============================================================ */
.pain-sec {
  padding: 120px 0;
  background: var(--deeper);
  position: relative;
}
.pain-sec::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-25), transparent); }
.pain-sec::after  { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-25), transparent); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--blue-18);
  border: 1px solid var(--blue-18);
  border-radius: 8px;
  overflow: hidden;
}

.pain-card {
  background: var(--deeper);
  padding: 36px 32px;
  position: relative;
  transition: background 0.3s ease;
}
.pain-card:hover { background: rgba(18, 90, 208, 0.06); }

.pain-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--blue-25);
  margin-bottom: 16px;
  display: block;
}
.pain-ico {
  width: 40px; height: 40px;
  background: var(--blue-10);
  border: 1px solid var(--blue-18);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--blue);
  margin-bottom: 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
  animation: floatSway 6.5s ease-in-out infinite;
}
.pain-grid .pain-card:nth-of-type(2) .pain-ico { animation-delay: -1.6s; }
.pain-grid .pain-card:nth-of-type(3) .pain-ico { animation-delay: -3.2s; }
.pain-grid .pain-card:nth-of-type(4) .pain-ico { animation-delay: -0.8s; }
.pain-grid .pain-card:nth-of-type(5) .pain-ico { animation-delay: -2.4s; }
.pain-grid .pain-card:nth-of-type(6) .pain-ico { animation-delay: -4.2s; }
.pain-card:hover .pain-ico { background: var(--blue-18); border-color: var(--blue-25); }
.pain-card h3 { font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.35; margin-bottom: 10px; }
.pain-card p  { font-size: 13px; line-height: 1.65; color: rgba(217,217,217,0.5); }

/* ============================================================
   TRAP SECTION
============================================================ */
.trap-sec {
  padding: 120px 0;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.trap-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(18,90,208,0.07) 0%, transparent 70%);
  pointer-events: none;
  animation: floatCenter 21s ease-in-out infinite;
  animation-delay: -8s;
}

.trap-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.trap-content { padding-top: 8px; }
.trap-content h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 24px;
}
.trap-content h2 em { font-style: italic; color: var(--blue); }
.trap-content > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-50);
  margin-bottom: 28px;
}
.trap-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  background: var(--blue-10);
  border-left: 3px solid var(--blue);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
}

/* Right panel */
.trap-panel {
  background: var(--deeper);
  border: 1px solid var(--blue-18);
  border-radius: 8px;
  padding: 40px 36px;
}
.trap-panel-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(217,217,217,0.25);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.trap-panel-eyebrow::before {
  content: '';
  width: 16px; height: 1px;
  background: rgba(217,217,217,0.2);
}

.trap-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--white-06);
}
.trap-item:last-of-type { border-bottom: none; }
.trap-ico {
  width: 36px; height: 36px;
  background: var(--red-dim);
  border: 1px solid rgba(255,70,70,0.2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--red);
  animation: floatYb 5.5s ease-in-out infinite;
}
.trap-item:nth-of-type(2) .trap-ico { animation-delay: -1.4s; }
.trap-item:nth-of-type(3) .trap-ico { animation-delay: -2.8s; }
.trap-item h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.trap-item p  { font-size: 13px; line-height: 1.55; color: rgba(217,217,217,0.4); margin: 0; }

.trap-cta-wrap { margin-top: 32px; }
.trap-cta-wrap .btn-primary { width: 100%; justify-content: center; }

/* ============================================================
   METHOD SECTION
============================================================ */
.method-sec {
  padding: 120px 0;
  background: var(--deeper);
  position: relative;
}
.method-sec::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-25), transparent); }

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--blue-18);
  border: 1px solid var(--blue-18);
  border-radius: 8px;
  overflow: hidden;
}

.method-card {
  background: var(--deeper);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.method-card:hover { background: rgba(18,90,208,0.07); }

.method-n {
  font-size: 52px;
  font-weight: 700;
  color: rgba(18,90,208,0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.method-card:hover .method-n { color: rgba(18,90,208,0.22); }
.method-card h3 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.method-card p  { font-size: 13px; line-height: 1.6; color: rgba(217,217,217,0.45); }

.method-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.method-card:hover .method-bar { transform: scaleX(1); }

.method-warn {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--blue-10);
  border: 1px solid var(--blue-18);
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-50);
}
.method-warn strong { color: var(--white); font-weight: 600; }

/* ============================================================
   ANALYSIS SECTION
============================================================ */
.analysis-sec {
  padding: 120px 0;
  background: var(--deep);
  position: relative;
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.analysis-card {
  background: var(--deeper);
  border: 1px solid var(--blue-18);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s var(--ease);
}
.analysis-card:hover {
  border-color: var(--blue-25);
  transform: translateY(-4px);
}
.analysis-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.analysis-card:hover::before { transform: scaleX(1); }

.analysis-ico {
  width: 44px; height: 44px;
  background: var(--blue-10);
  border: 1px solid var(--blue-18);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--blue);
  margin-bottom: 20px;
  transition: background 0.3s ease;
  animation: floatSway 7s ease-in-out infinite;
}
.analysis-card:nth-of-type(2) .analysis-ico { animation-delay: -1.2s; }
.analysis-card:nth-of-type(3) .analysis-ico { animation-delay: -2.4s; }
.analysis-card:nth-of-type(4) .analysis-ico { animation-delay: -3.6s; }
.analysis-card:nth-of-type(5) .analysis-ico { animation-delay: -4.8s; }
.analysis-card:nth-of-type(6) .analysis-ico { animation-delay: -0.6s; }
.analysis-card:hover .analysis-ico { background: var(--blue-18); }
.analysis-card h3 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.analysis-card p  { font-size: 13px; line-height: 1.65; color: rgba(217,217,217,0.5); }

/* ============================================================
   FAQ
============================================================ */
.faq-sec {
  padding: 120px 0;
  background: var(--deeper);
  position: relative;
}
.faq-sec::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-25), transparent); }

.faq-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-side h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 16px 0 16px;
}
.faq-side h2 em { font-style: italic; color: var(--blue); }
.faq-side p { font-size: 15px; line-height: 1.7; color: var(--gray-50); margin-bottom: 32px; }
.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s ease;
}
.faq-link:hover { gap: 14px; }

.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--deep);
  border: 1px solid var(--blue-10);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: var(--blue-25); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  text-align: left;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--blue); }

.faq-tog {
  width: 28px; height: 28px;
  background: var(--blue-10);
  border: 1px solid var(--blue-18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue);
  transition: background 0.3s ease, transform 0.35s var(--ease);
}
.faq-item.open .faq-tog { background: var(--blue); color: var(--white); transform: rotate(45deg); }

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-item.open .faq-ans { max-height: 280px; }
.faq-ans-in {
  padding: 0 24px 24px;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(217,217,217,0.55);
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-sec {
  padding: 160px 0;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(18,90,208,0.18) 0%, transparent 68%);
  pointer-events: none;
  animation: glowPulse 10s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.62; transform: translate(calc(-50% + 16px), calc(-50% - 14px)) scale(1.04); }
}
.final-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18,90,208,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,90,208,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.final-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(217,217,217,0.35);
  margin-bottom: 36px;
  animation: floatY 6.5s ease-in-out infinite;
}
.final-tag-dot {
  width: 6px; height: 6px;
  background: #22D36E;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,211,110,0.18);
}
.final-sec h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.final-sec h2 em { font-style: italic; color: var(--blue); }
.final-sec > .final-inner > p {
  font-size: 17px;
  color: var(--gray-50);
  line-height: 1.65;
  margin-bottom: 52px;
}
.final-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--blue);
  color: var(--white);
  padding: 22px 52px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  margin-bottom: 36px;
}
.final-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.final-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 64px -12px rgba(18,90,208,0.65);
}
.final-btn:hover::after { transform: translateX(0); }

.final-checks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.final-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(217,217,217,0.35);
}
.final-check::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--deeper);
  border-top: 1px solid var(--blue-10);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy { font-size: 13px; color: rgba(217,217,217,0.25); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(217,217,217,0.25); transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .method-grid    { grid-template-columns: repeat(2, 1fr); }
  .trap-inner     { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 900px) {
  .pain-grid      { grid-template-columns: repeat(2, 1fr); }
  .analysis-grid  { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap       { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 640px) {
  .container      { padding: 0 20px; }
  .pain-grid      { grid-template-columns: 1fr; }
  .method-grid    { grid-template-columns: 1fr; }
  .analysis-grid  { grid-template-columns: 1fr; }
  .hero           { padding: 130px 0 80px; }
  .pain-sec,
  .trap-sec,
  .method-sec,
  .analysis-sec,
  .faq-sec,
  .final-sec      { padding: 88px 0; }
  .hero h1        { font-size: 38px; }
  .final-btn      { padding: 18px 32px; font-size: 14px; }
  .nav-badge      { display: none; }
}

/* ============================================================
   HERO ENTRANCE
============================================================ */
.hero-content {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.hero-content.entered { opacity: 1; transform: translateY(0); }

.logo-strip {
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
}
.logo-strip.entered { opacity: 1; }

/* ============================================================
   ACCESSIBILITY — respect reduced motion
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-glow-a, .hero-glow-b, .hero-badge, .vsl-glow, .trap-glow,
  .final-glow, .final-tag, .pain-ico, .trap-ico, .analysis-ico,
  .scan-beam, .scan-hairline, .node {
    animation: none !important;
  }
}

 .wertx-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  display: none;
  visibility: hidden !important;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.wertx-popup.is-open {
  opacity: 1;
  visibility: visible !important;
  display: flex;
  pointer-events: all;
}

/* Backdrop */
.wertx-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 1, 84, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Box */
.wertx-popup-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  background: #000154;
  border: 1px solid rgba(18, 90, 208, 0.35);
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(18, 90, 208, 0.12),
    0 40px 100px -20px rgba(0, 0, 0, 0.7),
    0 0 80px -20px rgba(18, 90, 208, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(32px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.wertx-popup.is-open .wertx-popup-box {
  transform: translateY(0) scale(1);
}

/* Header */
.wertx-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(18, 90, 208, 0.2);
  flex-shrink: 0;
}
.wertx-popup-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wertx-popup-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}
.wertx-popup-dot {
  width: 7px;
  height: 7px;
  background: #22D36E;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 211, 110, 0.22);
  animation: popup-dot-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes popup-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,211,110,0.22); }
  50%       { box-shadow: 0 0 0 6px rgba(34,211,110,0.08); }
}
.wertx-popup-steps {
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(99, 134, 172, 0.8);
  text-transform: uppercase;
}

/* Botão fechar */
.wertx-popup-close {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.wertx-popup-close:hover {
  background: rgba(18, 90, 208, 0.25);
  border-color: rgba(18, 90, 208, 0.5);
  color: #ffffff;
  transform: rotate(90deg);
}

/* Body — área do iframe */
.wertx-popup-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  /* scrollbar discreta */
  scrollbar-width: thin;
  scrollbar-color: rgba(18,90,208,0.3) transparent;
}
.wertx-popup-body::-webkit-scrollbar { width: 4px; }
.wertx-popup-body::-webkit-scrollbar-track { background: transparent; }
.wertx-popup-body::-webkit-scrollbar-thumb { background: rgba(18,90,208,0.35); border-radius: 4px; }

/* Footer */
.wertx-popup-footer {
  padding: 14px 28px;
  border-top: 1px solid rgba(18, 90, 208, 0.15);
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  color: rgba(99, 134, 172, 0.6);
  text-align: center;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* Responsivo mobile */
@media (max-width: 600px) {
  .wertx-popup { padding: 12px; }
  .wertx-popup-box { max-height: 95vh; border-radius: 10px; }
  .wertx-popup-header { padding: 16px 18px; flex-wrap: wrap; gap: 10px; }
  .wertx-popup-header-right { gap: 10px; }
  .wertx-popup-footer { padding: 12px 18px; }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .wertx-popup, .wertx-popup-box { transition: none; }
}/* End custom CSS */