/* ══════════════════════════════════════════════════════
   VITI TRAINING — Landing Page
   Dark, premium sports, mobile-first
══════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
/* Cores Primárias - Extraídas da Logo VITI */
  --primary:        #5a18ee; /* O roxo vibrante da base da logo */
  --primary-hover:  #7c3aed; /* Um tom acima para o hover */
  --primary-dark:   #2d0066; /* Roxo profundo para contrastes */
  
  /* Efeitos de Transparência baseados na logo */
  --primary-glow:   rgba(90, 24, 238, 0.4); 
  --primary-subtle: rgba(90, 24, 238, 0.08);
  --primary-dim:    rgba(90, 24, 238, 0.15);

  /* Fundos */
  --bg:    #050505; /* Um preto ainda mais profundo para destacar o roxo */
  --bg2:   #0a0a0c;
  --bg3:   #121214;
  --bg4:   #1a1a1e;
  --card:  #0d0d0f;

  /* Bordas */
  --border:  rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.13);

  /* Texto */
  --text:   #f2f2f2;
  --text2:  #c8c8c8;
  --muted:  #666;
  --muted2: #999;

  /* Semânticas */
  --green:       #22c55e;
  --green-dim:   rgba(34, 197, 94, 0.12);
  --whatsapp:    #25d366;

  /* Espaçamento */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Bordas arredondadas */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Fontes */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Sombras */
--shadow-card: 0 8px 32px rgba(0, 0, 0, 0.8);
--shadow-glow: 0 0 40px rgba(90, 24, 238, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(90, 24, 238, 0.3);  
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 30px var(--primary-glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--border2);
  color: var(--text);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.btn-sm  { padding: 10px 20px; font-size: 14px; }
.btn-lg  { padding: 16px 36px; font-size: 16px; }
.btn-xl  { padding: 18px 40px; font-size: 17px; }
.btn-full { width: 100%; }

.btn-success {
  background: var(--green);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.header.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.logo-wrap {
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--text);
  line-height: 1;
}
.logo-text span {
  color: var(--primary);
}

.logo-text-sm {
  font-size: 20px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  transition: color 0.2s;
}
.header-nav a:hover {
  color: var(--text);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SECTION BASE ── */
.section {
  padding: var(--space-3xl) 0;
}

.section-dark {
  background: var(--bg2);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
}

.section-badge {
  display: inline-block;
  background: var(--primary-subtle);
  border: 1px solid var(--primary-dim);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.section-title em {
  font-style: normal;
  color: var(--primary);
}

.section-sub {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(90, 24, 238, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-subtle);
  border: 1px solid var(--primary-dim);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.hero-title em {
  font-style: normal;
  color: var(--primary);
}

.hero-sub {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: var(--space-xl);
}
.hero-sub strong {
  color: var(--text);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border2);
}

/* ── HERO MOCKUP ── */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup-phone {
  width: 260px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 36px;
  padding: 16px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
}

.mockup-screen {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/18;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
}

.mockup-placeholder {
  text-align: center;
  padding: var(--space-lg);
}
.mockup-placeholder-icon { font-size: 40px; margin-bottom: var(--space-sm); }
.mockup-placeholder-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 4px;
}
.mockup-placeholder-hint {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

.mockup-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg4);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-card);
  max-width: 200px;
}
.mockup-badge-icon { font-size: 22px; flex-shrink: 0; }
.mockup-badge-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.mockup-badge-sub {
  font-size: 11px;
  color: var(--muted2);
  margin-top: 2px;
}
.mockup-badge-1 {
  top: 10%;
  right: -10%;
  transform: rotate(2deg);
}
.mockup-badge-2 {
  bottom: 15%;
  left: -15%;
  transform: rotate(-2deg);
}

/* ── PROOF STRIP ── */
.proof-strip {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
}

.proof-label-wrap {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.proof-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Marquee ── */
.proof-marquee-outer {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  margin-bottom: var(--space-lg);
}

@keyframes proof-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.proof-marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: proof-marquee var(--marquee-dur, 20s) linear infinite;
  padding: 10px 0;
}
.proof-marquee-track:hover { animation-play-state: paused; }

/* Cada item: tamanho fixo padronizado */
.proof-logo-item {
  width: 130px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .5;
  filter: grayscale(1);
  transition: opacity .3s, filter .3s;
}
.proof-logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
}
.proof-logo-item img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.proof-logo-item span {
  display: none; /* exibido via JS onerror */
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .05em;
  color: var(--muted2);
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.proof-tagline-wrap { text-align: center; }

.proof-tagline {
  font-size: 14px;
  font-style: italic;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── FEATURE HERO CARD ── */
.feature-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.feature-hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.feature-hero-media video,
.feature-hero-media img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
}

.feature-hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-subtle) 0%, transparent 70%);
  pointer-events: none;
}

.feature-hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-md);
}

.feature-hero-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.feature-hero-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.feature-hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.feature-hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
}
.feature-hero-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── MEDIA PLACEHOLDERS ── */
.media-placeholder {
  background: var(--bg4);
  border: 2px dashed var(--border2);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  gap: var(--space-sm);
  color: var(--muted);
}
.media-placeholder-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted2);
}
.media-placeholder-hint {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 260px;
}
.media-tall   { min-height: 320px; }
.media-wide   { min-height: 260px; width: 100%; }
.media-square { min-height: 300px; aspect-ratio: 1; }
.media-sm     { min-height: 120px; }

.admin-screen-wrap { width: 100%; }

.feature-hero-media img,
.feature-gif {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}

/* ── CARROSEL DE FEATURES ── */
.carousel-outer {
  overflow: hidden;
  cursor: grab;
  scroll-snap-type: x mandatory;
  /* fade nas bordas para indicar que continua */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.carousel-outer:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: var(--space-lg);
  width: max-content;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  justify-content: space-between;
  width: 280px;
  scroll-snap-align: start;
  flex-shrink: 0;

  display: flex;
  flex-direction: column;

  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.feature-img {
  width: 100%;
  height: 170px;

  object-fit: contain;
  object-position: center;

  background: var(--bg4);

  padding: 10px;

  border-radius: 16px;

  border-radius: 16px;

  margin-top: 18px;

  border: 1px solid var(--border);
}

.feature-card:hover {
  border-color: var(--border2);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    0 0 20px rgba(90, 24, 238, 0.08);

  transform: translateY(-4px);
}

.feature-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  border-radius: 14px;

  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);

  color: var(--primary);

  flex-shrink: 0;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.feature-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.feature-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}

.feature-media {
  margin-top: var(--space-md);
}
.feature-media .media-placeholder {
  min-height: 120px;
  font-size: 11px;
}
.feature-media .media-placeholder span {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
}

/* ── ADMIN SHOWCASE ── */
.admin-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.admin-screen-placeholder {
  width: 100%;
}
.admin-img {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.admin-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.admin-feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.admin-feature-icon {
  width: 44px;
  height: 44px;

  min-width: 44px;
  min-height: 44px;

  background: var(--bg3);
  border: 1px solid var(--border);

  border-radius: var(--r-md);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);

  flex-shrink: 0;
}

.admin-feature-icon svg {
  width: 20px;
  height: 20px;

  stroke: currentColor;
  stroke-width: 2;

  display: block;

  flex-shrink: 0;
}

.admin-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.admin-feature-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
}

/* ── WHITE LABEL ── */
.wl-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg4) 100%);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  padding: var(--space-2xl);
}

.wl-title {
  text-align: left;
}

.wl-sub {
  text-align: left;
}

.wl-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.wl-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(90, 24, 238, 0.28) 0%,
    rgba(90, 24, 238, 0.08) 45%,
    transparent 72%
  );
  pointer-events: none;
}

.wl-media img {
  position: relative;
  z-index: 1;
  border-radius: var(--r-lg);
  animation: float 5s ease-in-out infinite;
  filter:
    drop-shadow(0 24px 48px rgba(90, 24, 238, 0.35))
    drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

@keyframes float {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-14px); }
}

.wl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
.wl-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
}
.wl-list li::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
}

/* ── PERSONAL TRAINER SECTION ── */
.personal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.personal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, transform .2s;
}
.personal-card:hover {
  border-color: rgba(90,24,238,.35);
  transform: translateY(-3px);
}
.personal-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-hover);
  flex-shrink: 0;
}
.personal-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.personal-card-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  flex: 1;
}
.personal-card-cta {
  background: linear-gradient(135deg, rgba(90,24,238,.18) 0%, rgba(90,24,238,.06) 100%);
  border-color: rgba(90,24,238,.32);
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.personal-card-price-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--primary-hover);
}
.personal-card-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.personal-card-price strong { font-size: 42px; }
.personal-card-price span  { font-size: 16px; font-weight: 400; color: var(--muted2); }
.personal-card-price-desc {
  font-size: 13px;
  color: var(--muted2);
}

/* ── AUDIENCE SELECTOR ── */
.audience-selector {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.audience-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 40px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted2);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.audience-btn:hover {
  border-color: rgba(109,19,232,.4);
  color: var(--text);
}
.audience-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.audience-btn:not(.active):hover {
  border-color: rgba(90,24,238,.4);
  color: var(--text);
}

/* ── CTA TIPO ── */
.cta-tipo-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.cta-tipo-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.5);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  justify-content: center;
}
.cta-tipo-btn:hover {
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
}
.cta-tipo-btn.active {
  background: rgba(109,19,232,.25);
  border-color: rgba(109,19,232,.5);
  color: #fff;
}

/* ── PRICING ── */
.porte-selector {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.porte-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 24px;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  color: var(--text2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.porte-btn span {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted2);
}
.porte-btn:hover {
  border-color: var(--border2);
  color: var(--text);
}
.porte-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px var(--primary-glow);
}
.porte-btn.active span {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.pricing-card-featured {
  background: var(--bg4);
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-glow);
  transform: scale(1.02);
}
.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-2px);
}

.pricing-badge-top {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-md);
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--text2);
  margin-bottom: var(--space-sm);
}

.pricing-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--text2);
  padding-bottom: 6px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1;
}
.pricing-period {
  font-size: 14px;
  color: var(--muted2);
  padding-bottom: 8px;
}

.pricing-setup {
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: var(--space-md);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-xl);
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
}
.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}

/* ── COMPARE TABLE ── */
.pricing-compare {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
}

.compare-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-lg);
}

.compare-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text2);
  align-items: center;
}
.compare-row:last-child { border-bottom: none; }

.compare-row-head {
  background: var(--bg4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted2);
}

.compare-row-highlight {
  background: var(--primary-subtle);
  border-color: var(--primary-dim);
  color: var(--text);
}

.compare-price { font-weight: 700; color: var(--text); }
.compare-check { color: var(--green); font-weight: 900; font-size: 16px; }
.compare-no    { color: #ef4444; font-weight: 900; font-size: 16px; }
.compare-partial { color: var(--muted2); }

.compare-note {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.6;
  font-style: italic;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-xl);
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--border2);
}

.testimonial-placeholder {
  opacity: 0.6;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--primary);
  line-height: 0.5;
  margin-bottom: var(--space-md);
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: var(--primary-dim);
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.testimonial-role {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

/* ── CTA FINAL ── */
.cta-section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(90, 24, 238, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  max-width: 680px;
  text-align: center;
}

.cta-badge {
  display: inline-block;
  background: var(--primary-subtle);
  border: 1px solid var(--primary-dim);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-md);
}

.cta-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.cta-title em {
  font-style: normal;
  color: var(--primary);
}

.cta-sub {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.cta-input {
  width: 100%;
  background: var(--bg3);
  border: 1.5px solid var(--border2);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.cta-input::placeholder { color: var(--muted); }
.cta-input:focus { border-color: var(--primary); }

.cta-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.cta-select option { background: #1e1e1e; }

.cta-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: var(--space-sm);
}

.cta-alternativo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  font-size: 14px;
  color: var(--muted2);
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-2xl) 0 0;
  background: var(--bg2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.6;
  margin-top: var(--space-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-2xl);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: var(--space-xs);
}
.footer-col a {
  font-size: 14px;
  color: var(--muted2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

/* ── ANIMATE ON SCROLL ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.05s; }
.feature-card:nth-child(5) { transition-delay: 0.15s; }
.feature-card:nth-child(6) { transition-delay: 0.25s; }
.pricing-card:nth-child(2) { transition-delay: 0.1s; }
.pricing-card:nth-child(3) { transition-delay: 0.2s; }
.testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card:nth-child(3) { transition-delay: 0.2s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  :root {
    --space-3xl: 72px;
    --space-2xl: 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-mockup {
    order: -1;
  }

  .mockup-phone {
    width: 220px;
  }

  .mockup-badge-1 { right: 2%; }
  .mockup-badge-2 { left: 2%; }

  .feature-hero-card {
    grid-template-columns: 1fr;
  }

  .admin-showcase {
    grid-template-columns: 1fr;
  }

  .wl-card {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card-featured {
    transform: scale(1);
    order: -1;
  }
  .pricing-card-featured:hover {
    transform: translateY(-2px);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .compare-row {
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr 0.8fr;
    font-size: 12px;
    padding: 10px 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --space-3xl: 60px;
    --space-2xl: 40px;
  }

  .container {
    padding: 0 var(--space-md);
  }
  .hamburger {
    display: flex;
    z-index: 101;
    position: relative;
  }

  /* Hero */
  .hero {
    padding: 120px 0 72px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: var(--space-md);
  }
  .mockup-badge-1,
  .mockup-badge-2 {
    display: none;
  }

  .feature-hero-card {
    padding: var(--space-lg);
  }

  /* CTA form */
  .cta-form-row {
    grid-template-columns: 1fr;
  }

  /* Compare table — ocultar colunas extras */
  .compare-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .compare-row > :nth-child(4),
  .compare-row > :nth-child(5) {
    display: none;
  }

  /* Pricing */
  .porte-selector {
    gap: var(--space-xs);
  }
  .porte-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Footer */
  .footer-links {
    flex-direction: column;
    gap: var(--space-xl);
  }

  /* CTA alternativo */
  .cta-alternativo {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

/* ═════════════════════════════════════
   MOBILE RESPONSIVE
═════════════════════════════════════ */

@media (max-width: 768px) {

  html {
    font-size: 14px;
  }

  .container {
    padding: 0 18px;
  }

  /* ── HEADER ── */

  .header {
    padding: 14px 0;
  }

  .hamburger {
    display: flex;
    z-index: 120;
  }

  .header-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    background: rgba(10,10,12,0.96);
    border: 1px solid var(--border);
    border-radius: 20px;
    backdrop-filter: blur(16px);

    flex-direction: column;
    align-items: stretch;
    gap: 0;

    overflow: hidden;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);

    transition: .25s ease;
  }

  .header-nav.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .header-nav a {
    padding: 18px;
    border-bottom: 1px solid var(--border);
  }

  .header-nav a:last-child {
    border-bottom: none;
  }

  /* ── HERO ── */

  .hero {
    padding: 120px 0 70px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats {
    justify-content: center;
    gap: 18px;
  }

  .hero-stat-divider {
    display: none;
  }

  .mockup-phone {
    width: min(100%, 290px);
  }

  /* ── SECTIONS ── */

  .section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-title br,
  .hero-title br,
  .cta-title br {
    display: none;
  }

  .section-sub {
    font-size: 15px;
  }

  /* ── FEATURE HERO ── */

  .feature-hero-card {
    grid-template-columns: 1fr;
    padding: 26px;
    gap: 30px;
  }

  /* ── CAROUSEL ── */

  .carousel-outer {
    overflow-x: auto;
    padding-bottom: 10px;

    -webkit-mask-image: none;
    mask-image: none;

    scrollbar-width: none;
  }

  .carousel-outer::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    width: 85vw;
    max-width: 320px;
    padding: 22px;
  }

  /* ── ADMIN ── */

  .admin-showcase {
    grid-template-columns: 1fr;
  }

  /* ── WHITE LABEL ── */

  .wl-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .wl-title,
  .wl-sub {
    text-align: left;
  }

  /* ── PRICING ── */

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

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-2px);
  }

  /* ── TABELA ── */

  .pricing-compare {
    overflow-x: auto;
  }

  .compare-table {
    min-width: 720px;
  }

  /* ── TESTIMONIALS ── */

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

  /* ── CTA ── */

  .cta-form-row {
    grid-template-columns: 1fr;
  }

  .cta-alternativo {
    flex-direction: column;
  }

  /* ── FOOTER ── */

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

    .feature-card {
    width: 78vw;
    max-width: 270px;
    padding: 18px;
  }

  .feature-img {
    height: 150px;
  }

  .feature-title {
    font-size: 15px;
  }

  .feature-desc {
    font-size: 13px;
    line-height: 1.55;
  }

  .carousel-track {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* personal grid mobile */
  .personal-grid { grid-template-columns: 1fr; }
  .personal-card-cta { grid-column: 1; }

  /* audience selector mobile */
  .audience-selector { gap: 8px; }
  .audience-btn { font-size: 14px; padding: 10px 18px; }

  /* cta tipo mobile */
  .cta-tipo-row { flex-direction: column; gap: 8px; }
  .cta-tipo-btn { justify-content: center; }

}
