/* =============================================
       DESIGN TOKENS & VARIÁVEIS
    ============================================= */
:root {
  --vn-bg: #0a0f0d;
  --vn-bg-2: #0f1612;
  --vn-bg-card: #141c18;
  --vn-bg-card-alt: #1a2420;
  --vn-green: #2ee87a;
  --vn-green-dim: #1db85c;
  --vn-green-glow: rgba(46, 232, 122, 0.18);
  --vn-amber: #f5c842;
  --vn-amber-dim: rgba(245, 200, 66, 0.15);
  --vn-red: #ff5a5a;
  --vn-text: #e8f0eb;
  --vn-text-muted: #7a9485;
  --vn-text-dim: #3d5248;
  --vn-border: rgba(46, 232, 122, 0.12);
  --vn-border-card: rgba(255, 255, 255, 0.06);
  --vn-radius: 14px;
  --vn-radius-lg: 22px;
  --vn-ff-head: "Poppins", sans-serif;
  --vn-ff-body: "Inter", sans-serif;
  --vn-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--vn-bg);
  color: var(--vn-text);
  font-family: var(--vn-ff-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--vn-green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--vn-green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================
       UTILITÁRIOS
    ============================================= */
.vn-container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 60px);
}

.vn-section {
  padding-block: clamp(64px, 9vw, 120px);
}

.vn-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--vn-ff-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vn-green);
  background: var(--vn-green-glow);
  border: 1px solid rgba(46, 232, 122, 0.25);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.vn-section-title {
  font-family: var(--vn-ff-head);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--vn-text);
  margin-bottom: 16px;
}

.vn-section-title em {
  font-style: normal;
  color: var(--vn-green);
}

.vn-section-sub {
  font-size: 1.05rem;
  color: var(--vn-text-muted);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.vn-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--vn-green), transparent);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* =============================================
       BOTÕES
    ============================================= */
.vn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--vn-ff-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--vn-transition),
    box-shadow var(--vn-transition),
    background var(--vn-transition);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.vn-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}

.vn-btn:hover::after {
  opacity: 1;
}

.vn-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(46, 232, 122, 0.35);
}

.vn-btn:active {
  transform: translateY(0) scale(0.98);
}

.vn-btn-primary {
  background: linear-gradient(135deg, var(--vn-green) 0%, #1fc965 100%);
  color: #051008;
  padding: 17px 36px;
  font-size: 1.08rem;
}

.vn-btn-primary:hover {
  background: linear-gradient(135deg, #3dfb8a 0%, var(--vn-green) 100%);
  color: #051008;
}

.vn-btn-outline {
  background: transparent;
  color: var(--vn-green);
  border: 1.5px solid var(--vn-green);
  padding: 15px 32px;
}

.vn-btn-outline:hover {
  background: var(--vn-green-glow);
  box-shadow: 0 8px 28px rgba(46, 232, 122, 0.2);
}

.vn-btn-lg {
  padding: 20px 52px;
  font-size: 1.18rem;
}
/* =============================================
   SCROLL REVEAL
============================================= */

/* fallback: conteúdo visível por padrão */
.vn-reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* só esconde se o JS estiver ativo */
.js .vn-reveal {
  opacity: 0;
  transform: translateY(28px);
}

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

.vn-reveal-delay-1 {
  transition-delay: 0.1s;
}

.vn-reveal-delay-2 {
  transition-delay: 0.2s;
}

.vn-reveal-delay-3 {
  transition-delay: 0.3s;
}

.vn-reveal-delay-4 {
  transition-delay: 0.4s;
}

.vn-reveal-delay-5 {
  transition-delay: 0.5s;
}
/* =============================================
       STICKY CTA
    ============================================= */
.vn-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(0deg, rgba(10, 15, 13, 0.97) 70%, transparent);
  padding: 14px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid var(--vn-border);
  backdrop-filter: blur(8px);
}

.vn-sticky-cta.vn-sticky-visible {
  transform: translateY(0);
}

.vn-sticky-cta.vn-sticky-hidden {
  transform: translateY(100%);
}

.vn-sticky-cta .vn-btn-primary {
  padding: 14px 28px;
  font-size: 0.95rem;
  flex: 1;
  max-width: 380px;
}

.vn-sticky-price {
  font-family: var(--vn-ff-head);
  font-size: 0.82rem;
  color: var(--vn-text-muted);
  text-align: center;
  white-space: nowrap;
}

.vn-sticky-price strong {
  display: block;
  font-size: 1rem;
  color: var(--vn-green);
}

@media (max-width: 600px) {
  .vn-sticky-price {
    display: none;
  }
}

/* =============================================
       NAVBAR
    ============================================= */
.vn-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10, 15, 13, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vn-border);
  padding: 14px 0;
}

.vn-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vn-logo {
  font-family: var(--vn-ff-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--vn-text);
  letter-spacing: -0.02em;
}

@media (max-width: 540px) {
  .vn-logo {
    font-size: 1.1rem;
  }
}

.vn-logo span {
  color: var(--vn-green);
}

.vn-nav-cta {
  font-size: 0.85rem;
  padding: 10px 22px;
}

/* =============================================
       SEÇÃO 1: HERO
    ============================================= */
.vn-hero {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.vn-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(46, 232, 122, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.vn-hero-inner {
  display: grid;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (max-width: 1024px) {
  .vn-hero-inner {
    gap: clamp(32px, 5vw, 60px);
  }
}

@media (max-width: 860px) {
  .vn-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .vn-hero {
    padding-top: clamp(40px, 5vw, 60px);
    padding-bottom: clamp(40px, 5vw, 60px);
  }

  .vn-hero-inner {
    gap: 32px;
  }

  .vn-hero-eyebrow {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }

  .vn-h1 {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .vn-hero-sub {
    font-size: clamp(0.85rem, 2.8vw, 0.95rem);
    margin-bottom: 20px;
    line-height: 1.65;
  }

  .vn-hero-bullets {
    gap: 8px;
    margin-bottom: 20px;
  }

  .vn-hero-bullets li {
    font-size: 0.85rem;
    gap: 8px;
  }

  .vn-hero-cta-group {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }

  .vn-hero-cta-group .vn-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .vn-trust-seals {
    flex-direction: row;
    align-items: flex-start;
    margin: 20px auto;
  }

  .vn-seal {
    font-size: 0.7rem;
  }
}

.vn-hero-eyebrow {
  font-family: var(--vn-ff-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vn-green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vn-h1 {
  font-family: var(--vn-ff-head);
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--vn-text);
  margin-bottom: 20px;
}

.vn-h1 .vn-h1-accent {
  color: var(--vn-green);
}

.vn-h1 .vn-h1-strike {
  position: relative;
  color: var(--vn-text-muted);
}

.vn-h1 .vn-h1-strike::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  background: var(--vn-red);
  transform: rotate(-2deg);
}

.vn-hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--vn-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.vn-hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.vn-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--vn-text);
  line-height: 1.5;
}

.vn-hero-bullets li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--vn-green);
  font-weight: 700;
  margin-top: 2px;
  font-size: 0.9rem;
  background: var(--vn-green-glow);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vn-hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.vn-trust-seals {
  display: flex;
  gap: 16px;
  margin: 30px auto;
  font-size: 1.2rem;
}

.vn-seal {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--vn-text-muted);
  font-weight: 500;
  line-height: 1.4;
}

.vn-seal-icon {
  font-size: 1rem;
}

.vn-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* VIDEO PLACEHOLDER */
.vn-video-wrap {
  position: relative;
  border-radius: var(--vn-radius-lg);
  overflow: hidden;
  background: var(--vn-bg-card);
  border: 1px solid var(--vn-border-card);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 100%;
}

.vn-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 860px) {
  .vn-video-wrap {
    aspect-ratio: 16/9;
  }
}

.vn-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #0f1a14 0%, #0a1a11 100%);
  cursor: pointer;
}

.vn-video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(46, 232, 122, 0.1) 0%,
    transparent 65%
  );
}

.vn-play-btn {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--vn-green), var(--vn-green-dim));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(46, 232, 122, 0.4);
  animation: vn-pulse-play 2.5s infinite;
  transition: transform 0.3s;
  position: relative;
  z-index: 1;
}

.vn-play-btn:hover {
  transform: scale(1.12);
}

.vn-play-btn svg {
  margin-left: 5px;
}

@keyframes vn-pulse-play {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 232, 122, 0.45);
  }

  70% {
    box-shadow: 0 0 0 22px rgba(46, 232, 122, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 232, 122, 0);
  }
}

.vn-video-label {
  font-family: var(--vn-ff-head);
  font-size: 0.85rem;
  color: var(--vn-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* =============================================
       SEÇÃO 2: DIAGNÓSTICO
    ============================================= */
.vn-diag {
  background: var(--vn-bg-2);
}

.vn-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 640px) {
  .vn-compare-grid {
    grid-template-columns: 1fr;
  }
}

.vn-compare-card {
  border-radius: var(--vn-radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--vn-border-card);
}

.vn-compare-card.vn-card-dark {
  background: var(--vn-bg-card);
}

.vn-compare-card.vn-card-bright {
  background: linear-gradient(
    135deg,
    rgba(46, 232, 122, 0.07) 0%,
    rgba(46, 232, 122, 0.02) 100%
  );
  border-color: rgba(46, 232, 122, 0.2);
}

.vn-compare-header {
  font-family: var(--vn-ff-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vn-compare-header.vn-bad {
  color: var(--vn-text-muted);
}

.vn-compare-header.vn-good {
  color: var(--vn-green);
}

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

.vn-compare-list li {
  font-size: 0.93rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.vn-compare-list li .vn-ico {
  flex-shrink: 0;
  margin-top: 1px;
}

.vn-check-mini {
  background: var(--vn-green);
  color: #051008;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

.vn-x-mini {
  background: rgba(255, 90, 90, 0.15);
  color: var(--vn-red);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.vn-checklist {
  background: var(--vn-bg-card);
  border: 1px solid var(--vn-border-card);
  border-radius: var(--vn-radius-lg);
  padding: 32px 36px;
  margin-bottom: 40px;
}

.vn-checklist-title {
  font-family: var(--vn-ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--vn-amber);
}

.vn-checklist ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

@media (max-width: 600px) {
  .vn-checklist ul {
    grid-template-columns: 1fr;
  }
}

.vn-checklist ul li {
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--vn-text-muted);
}

.vn-checklist ul li .vn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vn-amber);
  flex-shrink: 0;
  margin-top: 6px;
}

/* =============================================
       SEÇÃO 3: AUTORIDADE
    ============================================= */
.vn-authority {
  position: relative;
}

/* ───────────────────────────────────────
           LAYOUT WRAPPER - História + Galeria
        ───────────────────────────────────────── */
.vn-auth-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (max-width: 1024px) {
  .vn-auth-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ───────────────────────────────────────
           HISTÓRIA - TEXTO NARRATIVO
        ───────────────────────────────────────── */
.vn-auth-story {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vn-auth-story p {
  color: var(--vn-text-muted);
  line-height: 1.9;
  font-size: 1rem;
  margin: 0;
}

.vn-auth-story p strong {
  color: var(--vn-text);
  font-weight: 700;
}

.vn-auth-story .vn-callout {
  border-left: 4px solid var(--vn-green);
  padding-left: 20px;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--vn-text);
  margin: 8px 0;
  line-height: 1.8;
}

/* ───────────────────────────────────────
           STATS - NÚMEROS DO CHRIS
        ───────────────────────────────────────── */
.vn-auth-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 100px 0 80px;
}

@media (max-width: 768px) {
  .vn-auth-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 80px 0 60px;
  }
}

@media (max-width: 640px) {
  .vn-auth-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 60px 0 50px;
  }
}

.vn-stat-card {
  background: linear-gradient(
    135deg,
    rgba(46, 232, 122, 0.05) 0%,
    rgba(46, 232, 122, 0.01) 100%
  );
  border: 1px solid rgba(46, 232, 122, 0.15);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.vn-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.vn-stat-card:hover {
  border-color: rgba(46, 232, 122, 0.3);
  background: linear-gradient(
    135deg,
    rgba(46, 232, 122, 0.1) 0%,
    rgba(46, 232, 122, 0.03) 100%
  );
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(46, 232, 122, 0.15);
}

.vn-stat-card:hover::before {
  left: 100%;
}

.vn-stat-number {
  font-family: var(--vn-ff-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--vn-green);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.vn-stat-text {
  font-size: 0.9rem;
  color: var(--vn-text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ───────────────────────────────────────
           BENEFÍCIOS - O QUE MUDA NA PRÁTICA
        ───────────────────────────────────────── */
.vn-auth-benefits {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--vn-border-card);
}

.vn-auth-benefits-title {
  font-family: var(--vn-ff-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vn-text);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.3px;
}

.vn-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .vn-benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.vn-benefit-card {
  background: var(--vn-bg-card);
  border: 1.5px solid var(--vn-border-card);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.vn-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vn-green), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vn-benefit-card:hover {
  border-color: var(--vn-green);
  background: linear-gradient(
    135deg,
    rgba(46, 232, 122, 0.05) 0%,
    var(--vn-bg-card) 100%
  );
  box-shadow: 0 16px 48px rgba(46, 232, 122, 0.12);
  transform: translateY(-6px);
}

.vn-benefit-card:hover::before {
  opacity: 1;
}

.vn-benefit-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vn-benefit-card:hover .vn-benefit-icon {
  transform: scale(1.15) rotateZ(-5deg);
}

.vn-benefit-name {
  font-family: var(--vn-ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vn-text);
  margin-bottom: 10px;
  margin: 0 0 10px 0;
}

.vn-benefit-desc {
  font-size: 0.95rem;
  color: var(--vn-text-muted);
  line-height: 1.7;
  margin: 0;
}

.vn-story-block {
  display: none;
}

.vn-avatar-block {
  display: none;
}

.vn-avatar-content {
  display: none;
}

.vn-stats-grid {
  display: none;
}

/* =============================================
       CARROSSEL RESPONSIVO - PREMIUM
    ============================================= */
.vn-carousel-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 100px auto 80px;
  padding: 0 16px;
}

.vn-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--vn-radius-lg);
  aspect-ratio: 16/9;
  background: var(--vn-bg-card);
  border: 1.5px solid rgba(46, 232, 122, 0.2);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(46, 232, 122, 0.1);
}

.vn-carousel-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
  pointer-events: none;
  border-radius: var(--vn-radius-lg);
}

.vn-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.vn-carousel-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a2420 0%, #0f1612 100%);
}

.vn-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.vn-carousel-slide:hover img {
  transform: scale(1.08);
}

/* Indicador de Slides */
.vn-carousel-indicator {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(10, 15, 13, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(46, 232, 122, 0.3);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: var(--vn-ff-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vn-green);
  letter-spacing: 0.05em;
}

/* Barra de Progresso */
.vn-carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--vn-green) 0%,
    var(--vn-green-dim) 100%
  );
  transition: width 0.1s linear;
  z-index: 5;
  border-radius: 1px;
}

/* Botões de Navegação */
.vn-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(46, 232, 122, 0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(46, 232, 122, 0.4);
  color: var(--vn-green);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0;
}

.vn-carousel-btn:hover {
  background: rgba(46, 232, 122, 0.2);
  border-color: var(--vn-green);
  box-shadow:
    0 0 25px rgba(46, 232, 122, 0.4),
    inset 0 0 15px rgba(46, 232, 122, 0.1);
  transform: translateY(-50%) scale(1.15);
}

.vn-carousel-btn:active {
  transform: translateY(-50%) scale(0.92);
}

.vn-carousel-prev {
  left: 20px;
}

.vn-carousel-next {
  right: 20px;
}

/* Indicadores (Dots) */
.vn-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.vn-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(46, 232, 122, 0.2);
  border: 1.5px solid rgba(46, 232, 122, 0.35);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.vn-carousel-dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.vn-carousel-dot:hover {
  background: rgba(46, 232, 122, 0.35);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(46, 232, 122, 0.25);
}

.vn-carousel-dot.active {
  background: var(--vn-green);
  border-color: var(--vn-green);
  box-shadow:
    0 0 20px rgba(46, 232, 122, 0.5),
    inset 0 0 8px rgba(255, 255, 255, 0.2);
  transform: scale(1.25);
  animation: vn-pulse-dot 0.6s ease-out;
}

@keyframes vn-pulse-dot {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.35);
  }
  100% {
    transform: scale(1.25);
    opacity: 1;
  }
}

/* Responsivo - Tablet */
@media (max-width: 1024px) {
  .vn-carousel-container {
    max-width: 100%;
    margin: 80px auto 60px;
  }

  .vn-carousel-btn {
    width: 42px;
    height: 42px;
  }

  .vn-carousel-prev {
    left: 14px;
  }

  .vn-carousel-next {
    right: 14px;
  }

  .vn-carousel-indicator {
    font-size: 0.77rem;
    padding: 6px 14px;
    top: 12px;
    right: 12px;
  }
}

/* Responsivo - Mobile */
@media (max-width: 640px) {
  .vn-carousel-container {
    margin: 60px auto 40px;
  }

  .vn-carousel-btn {
    width: 38px;
    height: 38px;
  }

  .vn-carousel-btn svg {
    width: 18px;
    height: 18px;
  }

  .vn-carousel-prev {
    left: 10px;
  }

  .vn-carousel-next {
    right: 10px;
  }

  .vn-carousel-dots {
    gap: 8px;
    margin-top: 18px;
  }

  .vn-carousel-dot {
    width: 8px;
    height: 8px;
  }

  .vn-carousel-indicator {
    font-size: 0.75rem;
    padding: 5px 12px;
    top: 10px;
    right: 10px;
  }
}

/* Avatar simples */
.vn-avatar-content {
  position: relative;
  z-index: 2;
}

.vn-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--vn-green-glow),
    var(--vn-bg-card-alt)
  );
  border: 2px solid rgba(46, 232, 122, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin: 0 auto 16px;
}

.vn-avatar-name {
  font-family: var(--vn-ff-head);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.vn-avatar-role {
  font-size: 0.82rem;
  color: var(--vn-text-muted);
  margin-bottom: 24px;
}

.vn-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vn-stat-item {
  text-align: center;
}

.vn-stat-num {
  font-family: var(--vn-ff-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--vn-green);
  line-height: 1;
  margin-bottom: 4px;
}

.vn-stat-label {
  font-size: 0.72rem;
  color: var(--vn-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* =============================================
       SEÇÃO 4: MECANISMO
    ============================================= */
.vn-mechanism {
  background: var(--vn-bg-2);
}

.vn-objection-box {
  background: linear-gradient(
    135deg,
    rgba(245, 200, 66, 0.06) 0%,
    transparent 100%
  );
  border: 1px solid rgba(245, 200, 66, 0.2);
  border-radius: var(--vn-radius-lg);
  padding: 32px 36px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 680px) {
  .vn-objection-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.vn-objection-label {
  font-family: var(--vn-ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.vn-objection-label.vn-myth {
  color: var(--vn-red);
}

.vn-objection-label.vn-truth {
  color: var(--vn-green);
}

.vn-objection-text {
  font-family: var(--vn-ff-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.vn-objection-arrow {
  font-size: 1.6rem;
  color: var(--vn-text-dim);
  text-align: center;
}

.vn-errors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 720px) {
  .vn-errors-grid {
    grid-template-columns: 1fr;
  }
}

.vn-error-card {
  background: var(--vn-bg-card);
  border: 1px solid var(--vn-border-card);
  border-radius: var(--vn-radius);
  padding: 26px 22px;
  position: relative;
}

.vn-error-num {
  font-family: var(--vn-ff-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--vn-text-dim);
  line-height: 1;
  margin-bottom: 12px;
}

.vn-error-title {
  font-family: var(--vn-ff-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vn-red);
  margin-bottom: 8px;
}

.vn-error-desc {
  font-size: 0.87rem;
  color: var(--vn-text-muted);
  line-height: 1.6;
}

.vn-budget-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 12px;
}

@media (max-width: 560px) {
  .vn-budget-compare {
    grid-template-columns: 1fr;
  }
}

.vn-budget-card {
  background: var(--vn-bg-card);
  border: 1px solid var(--vn-border-card);
  border-radius: var(--vn-radius);
  padding: 24px;
}

.vn-budget-card.vn-bc-bad {
  border-color: rgba(255, 90, 90, 0.2);
}

.vn-budget-card.vn-bc-good {
  border-color: rgba(46, 232, 122, 0.2);
}

.vn-budget-label {
  font-family: var(--vn-ff-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vn-budget-label.vn-bad {
  color: var(--vn-red);
}

.vn-budget-label.vn-good {
  color: var(--vn-green);
}

.vn-budget-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--vn-border-card);
  font-size: 0.85rem;
}

.vn-budget-item:last-of-type {
  border-bottom: none;
}

.vn-budget-item .vn-key {
  color: var(--vn-text-muted);
}

.vn-budget-item .vn-val {
  font-weight: 600;
  color: var(--vn-text);
}

.vn-budget-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1.5px solid;
  font-family: var(--vn-ff-head);
  font-weight: 700;
  font-size: 1rem;
}

.vn-bc-bad .vn-budget-total {
  border-color: rgba(255, 90, 90, 0.3);
  color: var(--vn-red);
}

.vn-bc-good .vn-budget-total {
  border-color: rgba(46, 232, 122, 0.3);
  color: var(--vn-green);
}

.vn-disclaimer {
  font-size: 0.75rem;
  color: var(--vn-text-dim);
  text-align: center;
  font-style: italic;
  margin-top: 8px;
}

/* =============================================
       SEÇÃO 5: PRODUTO
    ============================================= */

/* Carrossel de Trilhas */
.vn-passport {
  margin: 52px 0 64px;
  position: relative;
}

.vn-passport__title {
  text-align: center;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  color: var(--vn-text-muted);
  font-style: italic;
  margin-bottom: 28px;
}

.vn-passport__track-wrap {
  overflow: hidden;
  border-radius: var(--vn-radius-lg);
  position: relative;
}

.vn-passport__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.vn-ticket {
  flex: 0 0 100%;
  background: linear-gradient(135deg, #0d3348 0%, #1a5978 100%);
  border-radius: var(--vn-radius-lg);
  padding: 24px;
  color: var(--vn-text-invert, white);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 860px) {
  .vn-ticket {
    flex: 0 0 calc(50% - 12px);
    margin-right: 24px;
  }
}

.vn-ticket::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vn-amber), var(--vn-green));
}

.vn-ticket::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 18px solid rgba(255, 255, 255, 0.04);
}

.vn-ticket__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.vn-ticket__trilha-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vn-amber);
  background: rgba(245, 200, 66, 0.12);
  border: 1px solid rgba(245, 200, 66, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
}

.vn-ticket__stamp {
  font-size: 1.8rem;
  opacity: 0.7;
}

.vn-ticket__title {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
}

.vn-ticket__learns {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.vn-ticket__learn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.vn-ticket__learn::before {
  content: "→";
  color: var(--vn-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.vn-ticket__result {
  background: rgba(46, 232, 122, 0.12);
  border: 1px solid rgba(46, 232, 122, 0.2);
  border-radius: var(--vn-radius-sm);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--vn-green);
  font-weight: 600;
}

.vn-ticket__result::before {
  content: "✓ ";
}

/* Módulos e Aulas */
.vn-ticket__modules {
  flex: 1;
  margin-bottom: 12px;
}

.vn-ticket__module {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vn-ticket__module:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.vn-ticket__module-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vn-amber);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vn-ticket__module-aulas {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vn-ticket__aula {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.vn-ticket__aula strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  display: block;
}

.vn-ticket__aula-details {
  list-style: none;
  padding: 4px 0 0 12px;
  margin: 2px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.vn-ticket__aula-details li::before {
  content: "◦ ";
  color: var(--vn-green);
  margin-right: 4px;
}

.vn-passport__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.vn-passport__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--vn-green);
  color: var(--vn-text);
  background: var(--vn-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--vn-transition);
}

.vn-passport__btn:hover {
  background: var(--vn-green);
  color: var(--vn-bg);
}

.vn-passport__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.vn-passport__dots {
  display: flex;
  gap: 8px;
}

.vn-passport__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vn-border-card);
  cursor: pointer;
  transition: all var(--vn-transition);
  border: none;
  padding: 0;
}

.vn-passport__dot.vn-active {
  background: var(--vn-amber);
  width: 24px;
  border-radius: 999px;
}

.vn-bonus-card {
  background: linear-gradient(
    135deg,
    rgba(245, 200, 66, 0.08) 0%,
    rgba(245, 200, 66, 0.02) 100%
  );
  border: 1.5px solid rgba(245, 200, 66, 0.3);
  border-radius: var(--vn-radius-lg);
  padding: 32px 36px;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

@media (max-width: 640px) {
  .vn-bonus-card {
    flex-direction: column;
    gap: 16px;
  }
}

.vn-bonus-badge {
  background: var(--vn-amber);
  color: #1a0f00;
  font-family: var(--vn-ff-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 4px;
}

.vn-bonus-content {
  flex: 1;
}

.vn-bonus-title {
  font-family: var(--vn-ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vn-amber);
  margin-bottom: 8px;
}

.vn-bonus-desc {
  font-size: 0.92rem;
  color: var(--vn-text-muted);
  line-height: 1.65;
}

.vn-for-whom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .vn-for-whom {
    grid-template-columns: 1fr;
  }
}

.vn-for-card {
  background: var(--vn-bg-card);
  border: 1px solid var(--vn-border-card);
  border-radius: var(--vn-radius);
  padding: 24px;
}

.vn-for-card .vn-for-title {
  font-family: var(--vn-ff-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vn-for-card.vn-for-yes .vn-for-title {
  color: var(--vn-green);
}

.vn-for-card.vn-for-no .vn-for-title {
  color: var(--vn-red);
}

.vn-for-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.vn-for-card ul li {
  font-size: 0.87rem;
  color: var(--vn-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

/* =============================================
       CARROSSEL CRIATIVO 3D COM PERSPECTIVA
    ============================================= */
.vn-gallery {
  margin: 60px 0 0;
  position: relative;
}

.vn-gallery__question {
  text-align: center;
  font-family: var(--vn-ff-head);
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--vn-text);
  line-height: 1.3;
}

.vn-gallery__wrapper {
  perspective: 1200px;
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.vn-gallery__container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 850px;
}

.vn-gallery__track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
}

.vn-gallery__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8) rotateY(45deg) translateZ(-150px);
  transition: all 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  filter: brightness(0.6);
}

.vn-gallery__slide.vn-active {
  opacity: 1;
  transform: scale(1) rotateY(0deg) translateZ(0);
  pointer-events: auto;
  z-index: 10;
  filter: brightness(1);
}

.vn-gallery__slide.vn-prev {
  opacity: 0.3;
  transform: scale(0.75) rotateY(-45deg) translateZ(-150px);
  z-index: 5;
}

.vn-gallery__img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.vn-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vn-gallery__slide.vn-active .vn-gallery__img {
  transform: scale(1.08);
}

.vn-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(10, 15, 13, 0.5) 100%
  );
  pointer-events: none;
  border-radius: 16px;
}

.vn-gallery__badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 13, 0.98) 0%,
    transparent 100%
  );
  padding: 50px 28px 28px;
  text-align: center;
  border-radius: 16px;
  z-index: 5;
}

.vn-gallery__label {
  font-family: var(--vn-ff-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vn-green);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(15px);
  animation: vn-gallery-label-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s
    forwards;
}

.vn-gallery__title {
  font-family: var(--vn-ff-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--vn-text);
  line-height: 1.3;
  opacity: 0;
  transform: translateY(15px);
  animation: vn-gallery-label-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s
    forwards;
}

@keyframes vn-gallery-label-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vn-gallery__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.vn-gallery__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--vn-green);
  background: transparent;
  color: var(--vn-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vn-gallery__btn:hover:not(:disabled) {
  background: var(--vn-green);
  color: var(--vn-bg);
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(46, 232, 122, 0.3);
}

.vn-gallery__btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.vn-gallery__dots {
  display: flex;
  gap: 10px;
}

.vn-gallery__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(46, 232, 122, 0.15);
  border: 1px solid rgba(46, 232, 122, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0;
}

.vn-gallery__dot:hover:not(.vn-active) {
  background: rgba(46, 232, 122, 0.3);
}

.vn-gallery__dot.vn-active {
  background: var(--vn-green);
  width: 28px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .vn-gallery__wrapper {
    height: 300px;
  }

  .vn-gallery__title {
    font-size: 1.1rem;
  }

  .vn-gallery__btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .vn-gallery__nav {
    gap: 16px;
  }
}

/* =============================================
       SEÇÃO 6: OFERTA
    ============================================= */
.vn-offer {
  background: var(--vn-bg-2);
  position: relative;
  overflow: hidden;
}

.vn-offer::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(46, 232, 122, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.vn-offer-box {
  max-width: 910px;
  margin: 0 auto;
  background: var(--vn-bg-card);
  border: 1px solid rgba(46, 232, 122, 0.25);
  border-radius: var(--vn-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media (max-width: 560px) {
  .vn-offer-box {
    flex-direction: column;
  }
}

.vn-offer-top {
  background: linear-gradient(
    135deg,
    rgba(46, 232, 122, 0.1) 0%,
    rgba(46, 232, 122, 0.03) 100%
  );
  padding: 32px 36px;
  border-bottom: 1px solid var(--vn-border);
}

.vn-offer-title {
  font-family: var(--vn-ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.vn-offer-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.vn-offer-includes li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.92rem;
  color: var(--vn-text-muted);
}

.vn-offer-includes li .vn-check-mini {
  margin-top: 2px;
  flex-shrink: 0;
}

.vn-offer-middle {
  padding: 36px 36px;
  text-align: center;
}

.vn-price-block {
  margin-bottom: 28px;
}

.vn-price-installment {
  font-family: var(--vn-ff-head);
  font-size: 1rem;
  color: var(--vn-text-muted);
  margin-bottom: 4px;
}

.vn-price-main {
  font-family: var(--vn-ff-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--vn-green);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.vn-price-main .vn-price-small {
  font-size: 1.4rem;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.vn-price-or {
  font-size: 0.82rem;
  color: var(--vn-text-dim);
  margin-bottom: 4px;
}

.vn-price-installments {
  font-size: 0.95rem;
  color: var(--vn-text-muted);
}

.vn-price-installments strong {
  color: var(--vn-text);
  font-family: var(--vn-ff-head);
}

/* Pulse animation para preço */
@keyframes vn-price-pulse {
  0% {
    text-shadow: 0 0 0px rgba(46, 232, 122, 0);
  }

  50% {
    text-shadow: 0 0 30px rgba(46, 232, 122, 0.5);
  }

  100% {
    text-shadow: 0 0 0px rgba(46, 232, 122, 0);
  }
}

.vn-price-main.vn-pulse {
  animation: vn-price-pulse 1.8s ease-in-out 2;
}

.vn-offer-cta-btn {
  width: 100%;
  max-width: 460px;
  padding: 20px 36px;
  font-size: 1.12rem;
  margin-bottom: 20px;
}

.vn-security-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.vn-security-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--vn-text-dim);
}

.vn-guarantee-banner {
  background: linear-gradient(
    135deg,
    rgba(245, 200, 66, 0.06) 0%,
    transparent 100%
  );
  border-top: 1px solid var(--vn-border-card);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 480px) {
  .vn-guarantee-banner {
    flex-direction: column;
    text-align: center;
  }
}

.vn-guarantee-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.vn-guarantee-text strong {
  font-family: var(--vn-ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vn-amber);
  display: block;
  margin-bottom: 4px;
}

.vn-guarantee-text p {
  font-size: 0.85rem;
  color: var(--vn-text-muted);
  line-height: 1.55;
}

/* ESCASSEZ ÉTICA */
.vn-scarcity {
  text-align: center;
  margin-bottom: 32px;
}

.vn-scarcity-note {
  display: inline-block;
  background: rgba(245, 200, 66, 0.08);
  border: 1px solid rgba(245, 200, 66, 0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.8rem;
  color: var(--vn-amber);
  font-weight: 500;
}

/* =============================================
       SEÇÃO 7: FAQ
    ============================================= */

.vn-faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 64px;
}

.vn-faq-item {
  background: var(--vn-bg-card);
  border: 1px solid var(--vn-border-card);
  border-radius: var(--vn-radius);
  overflow: hidden;
  transition: border-color var(--vn-transition);
}

.vn-faq-item[data-open="true"] {
  border-color: rgba(46, 232, 122, 0.25);
}

.vn-faq-trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--vn-text);
  font-family: var(--vn-ff-body);
  font-size: 0.97rem;
  font-weight: 500;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color var(--vn-transition);
}

.vn-faq-trigger:hover {
  color: var(--vn-green);
}

.vn-faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--vn-text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--vn-transition),
    border-color var(--vn-transition),
    background var(--vn-transition);
  font-size: 0.8rem;
}

.vn-faq-item[data-open="true"] .vn-faq-arrow {
  transform: rotate(45deg);
  border-color: var(--vn-green);
  background: var(--vn-green-glow);
  color: var(--vn-green);
}

.vn-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vn-faq-panel[aria-hidden="false"] {
  /* max-height set by JS */
}

.vn-faq-panel-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--vn-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--vn-border-card);
  padding-top: 16px;
}

/* CTA FINAL */
.vn-final-cta {
  text-align: center;
  padding: 64px 20px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(46, 232, 122, 0.04) 50%,
    transparent 100%
  );
  border-radius: var(--vn-radius-lg);
  margin-bottom: 64px;
}

.vn-final-headline {
  font-family: var(--vn-ff-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.vn-final-headline .vn-gray {
  color: var(--vn-text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--vn-text-dim);
}

.vn-final-headline .vn-bright {
  color: var(--vn-green);
}

.vn-final-sub {
  font-size: 1rem;
  color: var(--vn-text-muted);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 36px;
}

/* FOOTER */
.vn-footer {
  border-top: 1px solid var(--vn-border-card);
  padding: 36px 0;
  color: var(--vn-text-dim);
  font-size: 0.8rem;
}

.vn-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}

.vn-footer-brand {
  font-family: var(--vn-ff-head);
  font-weight: 700;
  color: var(--vn-text-muted);
  margin-bottom: 6px;
}

.vn-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vn-footer-links a {
  color: var(--vn-text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.vn-footer-links a:hover {
  color: var(--vn-green);
}

.vn-footer-legal {
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.7;
  color: var(--vn-text-dim);
}

/* =============================================
       MEDIA QUERIES GERAIS
    ============================================= */
@media (max-width: 480px) {
  .vn-btn-lg {
    padding: 18px 32px;
    font-size: 1rem;
  }

  .vn-offer-middle {
    padding: 28px 22px;
  }

  .vn-offer-top {
    padding: 24px 22px;
  }

  .vn-price-main {
    font-size: 2.4rem;
  }
}

/* Scrollbar estilizada */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--vn-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--vn-text-dim);
  border-radius: 3px;
}
