/* ============================================
   Shape Sob Medida — Landing Page
   Design System + Global Styles
   Ref: BRANDING.md v2
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font: inherit;
}

/* Remove animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   DESIGN TOKENS
   ============================================ */

:root {
  /* === CORES PRIMÁRIAS === */
  --color-bg-base:        #0A0F1C;
  --color-bg-surface:     #0F1629;
  --color-bg-elevated:    #1E293B;
  --color-bg-subtle:      #162032;

  /* === NEON / ACCENT === */
  --color-neon:           #00E5FF;
  --color-neon-dim:       #00B8CC;
  --color-neon-ultra:     #00F0FF;
  --color-cyan-mid:       #00A3C4;
  --color-cyan-soft:      #0891B2;

  /* === TEXTO === */
  --color-text-primary:   #F5F7FA;
  --color-text-secondary: #94A3B8;
  --color-text-muted:     #64748B;
  --color-text-inverse:   #0A0F1C;

  /* === BORDAS === */
  --color-border-default: rgba(0, 229, 255, 0.10);
  --color-border-hover:   rgba(0, 229, 255, 0.25);
  --color-border-active:  rgba(0, 229, 255, 0.50);
  --color-border-subtle:  rgba(255, 255, 255, 0.05);

  /* === GRADIENTES === */
  --gradient-hero:        linear-gradient(135deg, #0A0F1C 0%, #0F2040 50%, #0A0F1C 100%);
  --gradient-neon-glow:   linear-gradient(135deg, #00E5FF 0%, #0891B2 100%);
  --gradient-card:        linear-gradient(145deg, #0F1629 0%, #162032 100%);
  --gradient-section-alt: linear-gradient(180deg, #0A0F1C 0%, #0D1930 50%, #0A0F1C 100%);

  /* === SOMBRAS === */
  --shadow-card:          0 4px 24px rgba(0, 0, 0, 0.40);
  --shadow-card-hover:    0 8px 40px rgba(0, 229, 255, 0.12);
  --shadow-neon-sm:       0 0 12px rgba(0, 229, 255, 0.35);
  --shadow-neon-md:       0 0 24px rgba(0, 229, 255, 0.25), 0 0 60px rgba(0, 229, 255, 0.10);
  --shadow-neon-lg:       0 0 40px rgba(0, 229, 255, 0.30), 0 0 100px rgba(0, 229, 255, 0.12);
  --shadow-button:        0 4px 20px rgba(0, 229, 255, 0.30);
  --shadow-button-hover:  0 6px 30px rgba(0, 229, 255, 0.50);

  /* === STATUS === */
  --color-success:        #10B981;
  --color-success-dim:    rgba(16, 185, 129, 0.15);
  --color-warning:        #F59E0B;
  --color-warning-dim:    rgba(245, 158, 11, 0.15);
  --color-error:          #EF4444;
  --color-error-dim:      rgba(239, 68, 68, 0.15);

  /* === TIPOGRAFIA === */
  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Tamanhos */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Line heights */
  --leading-tight:   1.2;
  --leading-snug:    1.35;
  --leading-normal:  1.5;
  --leading-relaxed: 1.65;

  /* Letter spacing */
  --tracking-tight:  -0.03em;
  --tracking-normal:  0em;
  --tracking-wide:    0.06em;
  --tracking-wider:   0.12em;

  /* === ESPAÇAMENTO === */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --container-max:     1200px;
  --container-narrow:  760px;
  --container-px:      1.5rem;
  --section-py:        5rem;
  --section-py-mobile: 3rem;
}


/* ============================================
   TIPOGRAFIA — CLASSES BASE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
}

h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.text-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.text-caption {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Telas muito pequenas (< 400px): reduz heading para evitar overflow */
@media (max-width: 400px) {
  h1 { font-size: var(--text-3xl); }
  .hero-content h1 { font-size: 1.75rem; line-height: 1.25; }
}

@media (min-width: 401px) and (max-width: 640px) {
  h1 { font-size: var(--text-4xl); }
  .hero-content h1 { font-size: var(--text-4xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-6xl); }
  h2 { font-size: var(--text-4xl); }
}


/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-py-mobile) 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: var(--section-py) 0;
  }
}


/* ============================================
   COMPONENTES — CARD
   ============================================ */

.card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-default);
  border-radius: 16px;
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}


/* ============================================
   COMPONENTES — BOTÕES
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--gradient-neon-glow);
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  padding: 0.875rem 2rem;
  border-radius: 12px;
  border: none;
  box-shadow: var(--shadow-button);
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-button-hover);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: transparent;
  color: var(--color-neon);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-base);
  padding: 0.875rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--color-border-active);
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(0, 229, 255, 0.08);
  box-shadow: var(--shadow-neon-sm);
}

/* Small variant for navbar */
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
}


/* ============================================
   COMPONENTES — BADGE
   ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.badge-neon {
  background: rgba(0, 229, 255, 0.10);
  color: var(--color-neon);
  border: 1px solid rgba(0, 229, 255, 0.20);
}


/* ============================================
   COMPONENTES — INPUT
   ============================================ */

.input {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-default);
  border-radius: 10px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.input:focus {
  outline: none;
  border-color: var(--color-border-active);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.10);
}

.input::placeholder {
  color: var(--color-text-muted);
}


/* ============================================
   EFEITOS VISUAIS
   ============================================ */

/* Glow em texto (hero title) */
.text-glow {
  background: linear-gradient(135deg, var(--color-neon) 0%, #FFFFFF 60%, var(--color-cyan-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Noise texture overlay */
.section-noise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* Grid background sutil */
.bg-grid {
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}


/* ============================================
   KEYFRAMES
   ============================================ */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: var(--shadow-neon-sm); }
  50%      { box-shadow: var(--shadow-neon-md); }
}

@keyframes scanLine {
  0%   { transform: translateY(-100%); opacity: 0.3; }
  100% { transform: translateY(100vh); opacity: 0; }
}

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


/* ============================================
   STAGGER DE ENTRADA — HERO
   ============================================ */

.hero-badge    { animation: fadeInUp 0.6s ease 0.1s both; }
.hero-title    { animation: fadeInUp 0.7s ease 0.2s both; }
.hero-subtitle { animation: fadeInUp 0.6s ease 0.35s both; }
.hero-cta      { animation: fadeInUp 0.6s ease 0.5s both; }
.hero-proof    { animation: fadeInUp 0.6s ease 0.6s both; }
.hero-visual   { animation: fadeIn  0.8s ease 0.4s both; }


/* ============================================
   UTILITÁRIOS DE ANIMAÇÃO
   ============================================ */

.animate-float      { animation: float 4s ease-in-out infinite; }
.animate-glow-pulse { animation: glowPulse 2.5s ease-in-out infinite; }
.animate-scan       { animation: scanLine 3s linear infinite; }


/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  border-bottom: 1px solid var(--color-border-subtle);
}

/* backdrop-filter em ::before evita criar containing block para .navbar-mobile (position: fixed) */
.navbar.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: auto;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}

.navbar-links a:hover {
  color: var(--color-text-primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
  margin-right: var(--space-3);
}

/* On mobile, hide the secondary "Entrar" link — only primary CTA visible */
.navbar-actions .btn-secondary {
  display: none;
}

/* Mobile hamburger */
.navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: 1001;
}

.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.navbar-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 28, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.navbar-mobile.open {
  display: flex;
}

.navbar-mobile a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}

.navbar-mobile a:hover {
  color: var(--color-text-primary);
}

.navbar-mobile .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

/* Desktop navbar */
@media (min-width: 1024px) {
  .navbar-links {
    display: flex;
  }

  .navbar-actions {
    margin-left: 0;
    margin-right: 0;
  }

  .navbar-actions .btn-secondary {
    display: inline-flex;
  }

  .navbar-toggle {
    display: none;
  }
}


/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--space-20) + var(--space-8));
  padding-bottom: var(--section-py-mobile);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Gradiente radial neon no centro-direita */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero-content h1 {
  max-width: 600px;
}

.hero-content .text-lead {
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Prova social inline */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-social-proof .stars {
  color: var(--color-warning);
  font-weight: 600;
}

.hero-social-proof span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.hero-social-proof .divider {
  width: 1px;
  height: 16px;
  background: var(--color-border-default);
}

/* Visual (lado direito / Mockup placeholder) */
.hero-visual-wrapper {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Clip floating cards so they don't bleed outside this column on mobile */
  overflow: hidden;
  padding: 20px 22px 26px;
}

/* Desktop: layout 60/40 */
@media (min-width: 1024px) {
  .hero {
    padding-top: 72px; /* garante conteúdo abaixo da navbar fixa */
    padding-bottom: 0;
  }

  .hero .container {
    flex-direction: row;
    align-items: center;
    min-height: calc(100vh - 72px);
    padding-top: var(--space-12);
  }

  .hero-content {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .hero-visual-wrapper {
    flex: 0 0 40%;
    max-width: 40%;
    min-height: 400px;
  }
}


/* ============================================
   SECTION UTILITIES
   ============================================ */

.section-alt {
  background: var(--gradient-section-alt);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header .text-caption {
  margin-bottom: var(--space-3);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  max-width: 540px;
  margin: 0 auto;
}


/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }


/* ============================================
   HERO — MINI WHATSAPP FRAME
   ============================================ */

.hero-wapp-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.hero-wapp-shell {
  background: #ECE5DD;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-wapp-header {
  background: #075E54;
  padding: 0.625rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-wapp-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00B8CC;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-wapp-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-wapp-name {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
}

.hero-wapp-status {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-wapp-dots {
  display: flex;
  gap: 3px;
  align-items: center;
}

.hero-wapp-dots span {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.hero-wapp-body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 160px;
}

.hero-wapp-bubble-in,
.hero-wapp-bubble-out {
  padding: 0.4rem 0.55rem 0.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.4;
  max-width: 82%;
}

.hero-wapp-bubble-in {
  background: #fff;
  border-radius: 0 9px 9px 9px;
  color: #111;
  align-self: flex-start;
}

.hero-wapp-bubble-out {
  background: #DCF8C6;
  border-radius: 9px 0 9px 9px;
  color: #111;
  align-self: flex-end;
}

.hero-wapp-time {
  display: block;
  font-size: 0.6rem;
  color: #94A3B8;
  margin-top: 1px;
  text-align: right;
}

.hero-wapp-read {
  color: #4FC3F7;
  font-weight: 600;
}

/* Floating streak card */
.hero-streak-card {
  position: absolute;
  bottom: -14px;
  left: -18px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-hover);
  border-radius: 12px;
  padding: 0.55rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-card), var(--shadow-neon-sm);
}

.hero-streak-emoji { font-size: 1.1rem; }

.hero-streak-number {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.hero-streak-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--color-text-muted);
}

/* Floating macro card */
.hero-macro-card {
  position: absolute;
  top: -12px;
  right: -14px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-default);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 120px;
  box-shadow: var(--shadow-card);
}

.hero-macro-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-macro-bar {
  height: 4px;
  background: rgba(0, 229, 255, 0.12);
  border-radius: 100px;
  overflow: hidden;
}

.hero-macro-fill {
  height: 100%;
  background: var(--gradient-neon-glow);
  border-radius: 100px;
}

.hero-macro-val {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-neon);
}


/* ============================================
   SEÇÃO 03 — PROOF TABS
   ============================================ */

.proof-tabs {
  width: 100%;
}

.tab-nav {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border-subtle);
  padding-bottom: var(--space-2);
}

.tab-btn {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 8px 8px 0 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon-glow);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tab-btn.active { color: var(--color-neon); }
.tab-btn.active::after { opacity: 1; }

.tab-panel { display: none; }
.tab-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.proof-copy {
  text-align: center;
  margin-top: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.proof-copy p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text-secondary);
}

.proof-copy p:first-child {
  color: var(--color-text-primary);
}


/* ============================================
   WHATSAPP MOCKUP — FULL (SEÇÃO 03)
   ============================================ */

.proof-wapp-wrapper {
  display: flex;
  justify-content: center;
}

.whatsapp-mockup {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  background: #ECE5DD;
}

.wapp-header {
  background: #075E54;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wapp-header-left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.wapp-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #00B8CC;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wapp-header-info { display: flex; flex-direction: column; gap: 1px; }

.wapp-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}

.wapp-online {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
}

.wapp-header-icons {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.wapp-body {
  background: #ECE5DD;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='3' cy='3' r='0.5' fill='rgba(0,0,0,0.04)'/%3E%3C/svg%3E");
  padding: 0.875rem;
  min-height: 320px;
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wapp-body::-webkit-scrollbar { display: none; }

/* Typing indicator */
.wapp-typing-wrap { align-self: flex-start; }

.wapp-bubble-typing {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 0.625rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0);  opacity: 0.4; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

.typing-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94A3B8;
  animation: typingDot 1.2s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.18s; }
.typing-dot:nth-child(3) { animation-delay: 0.36s; }

/* Messages */
.wapp-messages {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wapp-messages.visible { opacity: 1; }

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

.wapp-bubble {
  padding: 0.5625rem 0.75rem 0.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 82%;
  animation: msgFadeIn 0.35s ease both;
}

.wapp-bubble p { color: #1a1a1a; margin: 0; line-height: 1.5; }

.wapp-bubble-in {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  align-self: flex-start;
}

.wapp-bubble-out {
  background: #DCF8C6;
  border-radius: 10px 0 10px 10px;
  align-self: flex-end;
}

.wapp-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 2px;
}

.wapp-time { font-size: 0.65rem; color: #94A3B8; }
.wapp-read { font-size: 0.7rem; color: #4FC3F7; font-weight: 700; }

/* ── Bolha de foto enviada ── */
.wapp-photo-preview {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 4px;
}

.wapp-photo-bg {
  width: 100%;
  min-height: 110px;
  background: linear-gradient(135deg, #2d5016 0%, #3d6b1e 50%, #4a8028 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.wapp-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.12);
}

.wapp-photo-emoji {
  font-size: 3rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.wapp-photo-label {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 0 0 8px 8px;
  text-align: center;
}

.wapp-photo-caption {
  font-family: var(--font-body);
  font-size: 0.8125rem !important;
  color: #1a1a1a !important;
  padding: 6px 8px 0;
  line-height: 1.45;
  background: transparent;
}

/* Resposta com análise nutricional */
.wapp-nutrition-reply {
  background: #fff !important;
}

.wapp-nutrition-header {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #075E54;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wapp-nutrition-table {
  background: rgba(0, 229, 255, 0.04);
  border-radius: 6px;
  padding: 6px 8px;
  margin: 4px 0;
  border-left: 2px solid #25D366;
}

.wapp-nutrition-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #444;
  line-height: 1.6;
}

.wapp-nutrition-row strong {
  font-size: 0.72rem;
  color: #1a1a1a;
}

.wapp-nutrition-total {
  background: #DCF8C6;
  border-radius: 6px;
  padding: 5px 8px;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: #075E54;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.wapp-nutrition-verdict {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #1a1a1a;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Input bar */
.wapp-input-bar {
  background: #F0F0F0;
  padding: 0.5rem 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wapp-input-field {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 0.5rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94A3B8;
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.wapp-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #075E54;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}


/* ============================================
   DASHBOARD MOCKUP
   ============================================ */

.dashboard-mockup {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-default);
  border-radius: 20px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-card);
}

.dash-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-default);
  border-radius: 14px;
  padding: var(--space-4);
}

.dash-streak {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.dash-streak-emoji { font-size: 1.75rem; flex-shrink: 0; }

.dash-streak-text { flex: 1; }

.dash-streak-number {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-primary);
}

.dash-streak-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.dash-streak-badge {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-neon);
  background: rgba(0, 229, 255, 0.10);
  border: 1px solid rgba(0, 229, 255, 0.20);
  border-radius: 100px;
  padding: 0.2rem 0.625rem;
  white-space: nowrap;
}

.dash-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.dash-card-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.dash-card-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.weight-chart {
  width: 100%;
  height: auto;
  display: block;
}

.chart-delta {
  margin-top: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-success);
}

.chart-delta-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: var(--space-1);
}

.dash-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.macro-item { margin-bottom: var(--space-3); }
.macro-item:last-child { margin-bottom: 0; }

.macro-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.macro-val { font-weight: 600; color: var(--color-text-secondary); }

.macro-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
}

.macro-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1s ease;
}

.macro-protein { background: var(--gradient-neon-glow); }
.macro-carb    { background: linear-gradient(90deg, #00B8CC, #0891B2); }
.macro-fat     { background: linear-gradient(90deg, #0891B2, #075985); }

.meta-percent {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-neon);
  line-height: 1;
  margin-bottom: 2px;
}

.meta-desc {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.meta-track {
  height: 8px;
  background: rgba(0, 229, 255, 0.10);
  border-radius: 100px;
  overflow: hidden;
}

.meta-fill {
  height: 100%;
  background: var(--gradient-neon-glow);
  border-radius: 100px;
  box-shadow: var(--shadow-neon-sm);
}

@media (max-width: 479px) {
  .dash-bottom-row { grid-template-columns: 1fr; }
}


/* ============================================
   SEÇÃO 04 — OBJECTION CARDS
   ============================================ */

.section-header .text-lead {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-2);
}

.objection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-2);
}

.objection-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.objection-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--color-border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neon);
  flex-shrink: 0;
}

.objection-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--leading-snug);
  quotes: none;
  border: none;
  padding: 0;
  margin: 0;
}

.objection-answer {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  flex: 1;
}

.objection-answer em {
  color: var(--color-neon);
  font-style: normal;
  font-weight: 600;
}

@media (min-width: 768px) {
  .objection-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ============================================
   SEÇÃO 05 — COMO FUNCIONA
   ============================================ */

.steps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

/* Mobile: cada step-item como card com número + ícone em linha */
.step-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
}

/* Conector vertical entre passos no mobile */
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px; /* centro do icon-wrap (48px / 2 - 1px) */
  top: calc(var(--text-4xl) + var(--space-3) + 48px + var(--space-2));
  bottom: calc(-1 * var(--space-8) + var(--space-2));
  width: 1px;
  background: linear-gradient(to bottom, rgba(0, 229, 255, 0.25), transparent);
  pointer-events: none;
}

.step-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}

.step-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-neon);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.45);
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--color-border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neon);
  flex-shrink: 0;
}

.step-body {
  padding-left: 0;
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}

.step-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

/* Desktop — timeline horizontal */
@media (min-width: 768px) {
  .steps-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  /* Remover conector vertical */
  .step-item:not(:last-child)::after {
    display: none;
  }

  /* Linha horizontal atrás dos ícones */
  .steps-timeline::before {
    content: '';
    position: absolute;
    top: calc(var(--text-4xl) + var(--space-2) + 24px); /* step-number + gap + centro do ícone */
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(0, 229, 255, 0.30) 20%,
      rgba(0, 229, 255, 0.30) 80%,
      transparent
    );
    z-index: 0;
    pointer-events: none;
  }

  .step-item {
    padding: 0 var(--space-8);
    border-right: 1px solid var(--color-border-subtle);
    position: relative;
    z-index: 1;
  }

  .step-item:last-child {
    border-right: none;
  }

  .step-icon-wrap {
    background: rgba(0, 229, 255, 0.08);
    /* Garantir que o ícone fique "sobre" a linha */
    position: relative;
    z-index: 2;
  }
}

@media (min-width: 1024px) {
  .step-item {
    padding: 0 var(--space-10);
  }
}


/* ============================================
   SEÇÃO 06 — PROVA SOCIAL FORTE
   ============================================ */

/* ── 6A: Barra de métricas ── */
.metrics-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  background: var(--gradient-card);
  border: 1px solid var(--color-border-default);
  border-radius: 20px;
  padding: var(--space-8) var(--space-6);
  margin: var(--space-10) 0;
  box-shadow: var(--shadow-card);
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
  min-width: 110px;
}

.metric-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-neon);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.metric-star {
  font-size: var(--text-3xl);
  color: var(--color-neon);
  line-height: 1;
}

.metric-unit {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-neon);
  line-height: 1;
}

.metric-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.45;
  color: var(--color-text-secondary);
}

/* Separadores verticais — visíveis só no desktop */
.metric-sep {
  width: 1px;
  min-height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.22), transparent);
  align-self: stretch;
  display: none;
}

@media (min-width: 600px) {
  .metric-sep { display: block; }
  .metrics-bar {
    flex-wrap: nowrap;
    gap: var(--space-4);
    padding: var(--space-8) var(--space-10);
  }
  .metric-item { min-width: 0; flex: 1; }
}

/* ── 6B: Grid de depoimentos ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin: var(--space-10) 0;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-neon);
  border: 1px solid rgba(0, 229, 255, 0.18);
  flex-shrink: 0;
  letter-spacing: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.testimonial-headline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-neon);
  margin-top: 2px;
  line-height: 1.3;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  quotes: none;
  border: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-subtle);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.testimonial-sep-dot {
  color: var(--color-border-hover);
}

/* ── 6C: Antes e Depois ── */
.before-after-section {
  margin-top: var(--space-16);
}

.before-after-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.before-after-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
}

@media (min-width: 1024px) {
  .before-after-header h3 {
    font-size: var(--text-4xl);
  }
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 480px) {
  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .before-after-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.before-after-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-default);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.before-after-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card-hover);
}

.before-after-photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.before-after-photo {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}

@media (min-width: 1024px) {
  .before-after-photo {
    height: 200px;
  }
}

.before-after-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 15, 28, 0.7) 100%);
  pointer-events: none;
}

.before-after-badge {
  position: absolute;
  bottom: -14px;
  left: 16px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-active);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-neon);
  box-shadow: var(--shadow-neon-sm);
  white-space: nowrap;
  z-index: 1;
}

.before-after-body {
  padding: 28px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.before-after-identity {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.before-after-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text-primary);
}

.before-after-sep {
  color: var(--color-border-hover);
  font-size: var(--text-sm);
}

.before-after-city {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.before-after-quote {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  font-style: italic;
  margin: 0;
}

.before-after-time {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.before-after-time i[data-lucide] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}


/* ============================================
   SEÇÃO 07 — AMPLIFICAÇÃO DE VALOR
   ============================================ */

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-12);
}

@media (min-width: 640px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
}

.value-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.18);
  color: var(--color-neon);
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover .value-icon {
  background: rgba(0, 229, 255, 0.14);
  box-shadow: var(--shadow-neon-sm);
}

.value-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  line-height: var(--leading-snug);
}

.value-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}


/* ============================================
   SEÇÃO 08 — COMPARAÇÃO IMPLÍCITA
   ============================================ */

.comparison-wrap {
  margin-top: var(--space-12);
  position: relative;
  overflow: hidden;
}

.comparison-swipe-hint {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .comparison-swipe-hint {
    display: none;
  }
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid var(--color-border-default);
  /* Hide scrollbar visually but keep scrollable on mobile */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.comparison-table-wrap::-webkit-scrollbar {
  display: none;
}

.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-family: var(--font-body);
}

/* Header row */
.comparison-table thead tr {
  background: var(--color-bg-surface);
}

.comparison-table thead th {
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  text-align: center;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--color-border-default);
  white-space: nowrap;
}

.comparison-feature-col {
  text-align: left !important;
  min-width: 180px;
}

/* Highlight column — Shape Sob Medida */
.comparison-col-highlight {
  background: rgba(0, 229, 255, 0.04) !important;
  border-left: 1px solid rgba(0, 229, 255, 0.25) !important;
  border-right: 1px solid rgba(0, 229, 255, 0.25) !important;
}

thead .comparison-col-highlight {
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.12) 0%, rgba(0, 229, 255, 0.05) 100%) !important;
  border-top: 2px solid var(--color-neon) !important;
}

.comparison-col-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.comparison-col-name {
  color: var(--color-neon);
  font-size: var(--text-sm);
}

.comparison-best-badge {
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}

/* Body rows */
.comparison-table tbody tr {
  border-bottom: 1px solid var(--color-border-subtle);
  transition: background 0.2s ease;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody td {
  padding: var(--space-4) var(--space-6);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.comparison-feature {
  text-align: left !important;
  font-weight: 500;
  color: var(--color-text-primary) !important;
}

/* Icons in table */
.icon-check {
  color: var(--color-success);
  display: inline-block;
  vertical-align: middle;
  stroke-width: 2.5;
}

.icon-x {
  color: var(--color-error);
  display: inline-block;
  vertical-align: middle;
  opacity: 0.7;
}

.comparison-partial {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-style: italic;
}

.comparison-row-cost td {
  background: rgba(0, 0, 0, 0.12);
}

.comparison-cost {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-secondary);
}

.comparison-cost-high {
  color: rgba(239, 68, 68, 0.75);
}

.comparison-cost-neon {
  color: var(--color-neon);
}

/* Last row of highlight column: round bottom corners */
tbody .comparison-col-highlight:last-child {
  border-bottom-right-radius: 16px;
}

.comparison-copy {
  margin-top: var(--space-8);
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--leading-snug);
}

.comparison-copy br {
  display: block;
}


/* ============================================
   SEÇÃO 09 — PROFISSIONAIS
   ============================================ */

.professionals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .professionals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.professional-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-8);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.professional-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.professional-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 2px solid var(--color-neon);
  box-shadow: var(--shadow-neon-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-neon);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease;
}

.professional-card:hover .professional-avatar {
  box-shadow: var(--shadow-neon-md);
}

.professional-avatar-alt {
  border-color: var(--color-cyan-soft);
  color: var(--color-cyan-soft);
  box-shadow: 0 0 12px rgba(8, 145, 178, 0.4);
}

.professional-card:hover .professional-avatar-alt {
  box-shadow: 0 0 24px rgba(8, 145, 178, 0.35), 0 0 60px rgba(8, 145, 178, 0.12);
}

.professional-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
}

.professional-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.professional-role {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-neon);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.professional-credential {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.professional-quote {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  font-style: italic;
  border-left: 2px solid rgba(0, 229, 255, 0.25);
  padding-left: var(--space-4);
  margin-top: var(--space-2);
}

.professional-credential-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 8px;
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-neon);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.professional-credential-badge-alt {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 8px;
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-neon);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.professional-stats {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  margin-top: var(--space-2);
}

.prof-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prof-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-neon);
  letter-spacing: -0.02em;
}

.prof-stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.professional-cta {
  width: 100%;
  margin-top: var(--space-2);
  justify-content: center;
}

.professional-cta-alt {
  background: linear-gradient(135deg, var(--color-cyan-soft) 0%, var(--color-cyan-mid) 100%);
}

.professional-cta-alt:hover {
  background: linear-gradient(135deg, #0ea5c9 0%, var(--color-cyan-soft) 100%);
}

.professional-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

/* -------- CARD UNIFICADO PAULO & ROBERTA -------- */

.professionals-grid-single {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .professionals-grid-single {
    grid-template-columns: 1fr;
  }
}

.professional-card-unified {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-8);
  padding: var(--space-8);
}

@media (max-width: 767px) {
  .professional-card-unified {
    flex-direction: column;
    align-items: center;
    padding: var(--space-6);
    gap: var(--space-5);
  }
}

.professional-avatar-unified {
  position: relative;
  width: 280px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--color-border-hover);
  box-shadow: var(--shadow-neon-sm);
  aspect-ratio: 3 / 4;
  transition: box-shadow 0.3s ease;
}

.professional-card-unified:hover .professional-avatar-unified {
  box-shadow: var(--shadow-neon-md);
}

@media (max-width: 767px) {
  .professional-avatar-unified {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
}

.prof-unified-badge {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0, 229, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-neon);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.professional-name-unified {
  font-size: var(--text-3xl);
}

.prof-credentials-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.professional-cta-unified {
  max-width: 340px;
}

@media (max-width: 767px) {
  .professional-cta-unified {
    max-width: 100%;
    width: 100%;
  }
  .professional-name-unified {
    font-size: var(--text-2xl);
    text-align: center;
  }
  .professional-body {
    align-items: center;
    text-align: center;
  }
  .professional-body .professional-quote {
    border-left: none;
    border-top: 2px solid rgba(0,229,255,0.25);
    padding-left: 0;
    padding-top: var(--space-4);
    text-align: center;
  }
  .professional-body .professional-tags {
    justify-content: center;
  }
  .professional-body .professional-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-4);
  }
  .professional-cta-unified {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
  .prof-credentials-row {
    justify-content: center;
  }
}




/* ============================================================
   SEÇÃO 10 — PLANOS
   ============================================================ */

/* === GRID === */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto var(--space-10);
}

.plans-grid-3 {
  max-width: 1080px;
  padding-top: 16px;
}

@media (min-width: 768px) {
  .plans-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.plans-grid-1 {
  max-width: 420px;
}

/* Mobile: Trimestral primeiro */
@media (max-width: 767px) {
  [data-plan="trimestral"] { order: -1; }
}

/* === CARD BASE === */
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-8) var(--space-6);
  background: var(--gradient-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Sobrescreve o hover do .card genérico */
.plan-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

/* === PLAN NAME (label uppercase) === */
.plan-name {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.plan-name-neon { color: var(--color-neon); }
.plan-name-gold { color: #F59E0B; }

/* === INLINE BADGE (dentro do card, no flow normal) === */
.plan-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-4);
  width: fit-content;
}

.plan-badge-popular-inline {
  background: rgba(0, 229, 255, 0.10);
  color: var(--color-neon);
  border: 1px solid rgba(0, 229, 255, 0.20);
}

.plan-badge-annual-inline {
  background: rgba(245, 158, 11, 0.10);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

/* === PRICE BLOCK === */
.plan-price-block {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border-subtle);
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 0;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.plan-price-currency {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  align-self: flex-start;
  padding-top: 5px;
}

.plan-price-currency-neon { color: var(--color-neon); }
.plan-price-currency-gold { color: #F59E0B; }

.plan-price-value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}

.plan-price-value-neon { color: var(--color-neon); }
.plan-price-value-gold { color: #F59E0B; }

.plan-price-cents {
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: super;
  line-height: 1;
}

.plan-price-period {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-left: 4px;
}

.plan-billing {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.plan-savings {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  width: fit-content;
}

.plan-savings-green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-success);
  border: 1px solid rgba(16, 185, 129, 0.20);
}

.plan-savings-gold {
  background: rgba(245, 158, 11, 0.10);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.20);
}

/* === FEATURES LIST (flex:1 empurra CTA para o fundo) === */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-snug);
}

.plan-features li strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.plan-check-icon {
  color: var(--color-neon);
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-check-gold { color: #F59E0B; }

/* === SEPARADOR === */
.plan-cta-separator {
  height: 1px;
  background: var(--color-border-subtle);
  margin: var(--space-5) 0 var(--space-4);
}

/* === CTAs === */
.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-decoration: none;
  text-align: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-button);
}

.plan-cta:hover {
  box-shadow: var(--shadow-button-hover);
}

/* CTA anual — gradiente âmbar */
.plan-cta-annual {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #0A0F1C;
  border: none;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.30);
}

.plan-cta-annual:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 30px rgba(245, 158, 11, 0.50);
  color: #0A0F1C;
}

.plan-cta-annual:active {
  transform: translateY(0) scale(0.99);
}

/* === CARD POPULAR (Trimestral — destaque principal) === */
.plan-card-popular {
  border: 1.5px solid var(--color-neon);
  box-shadow: var(--shadow-neon-md);
  background: linear-gradient(145deg, #0F1A35 0%, #1a2a45 100%);
}

/* Stripe neon no topo */
.plan-card-popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-neon-glow);
  border-radius: 16px 16px 0 0;
}

/* Elevação desktop */
@media (min-width: 768px) {
  .plan-card-popular {
    transform: translateY(-8px);
  }
  .plan-card-popular:hover {
    transform: translateY(-12px);
  }
}

.plan-card-popular:hover {
  border-color: var(--color-border-active);
  box-shadow: var(--shadow-neon-lg);
}

@media (max-width: 767px) {
  .plan-card-popular:hover {
    transform: translateY(-3px);
  }
}

/* === CARD ANUAL (âmbar) === */
.plan-card-annual {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 4px 32px rgba(245, 158, 11, 0.08), var(--shadow-card);
}

.plan-card-annual:hover {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 8px 40px rgba(245, 158, 11, 0.18), var(--shadow-card);
  transform: translateY(-3px);
}

/* === GARANTIA === */
.plans-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 460px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

/* === PREFERS REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .plan-card,
  .plan-card:hover,
  .plan-card-popular,
  .plan-card-popular:hover,
  .plan-card-annual:hover,
  .plan-cta {
    transition: none;
    transform: none !important;
  }
  .animate-glow-pulse {
    animation: none;
  }
}

/* ============================================================
   SEÇÃO 11 — FAQ
   ============================================================ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-subtle);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border-subtle);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--space-4);
  transition: color 0.2s ease;
}

.faq-question span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--leading-snug);
  transition: color 0.2s ease;
}

.faq-question[aria-expanded="true"] span {
  color: var(--color-neon);
}

.faq-icon {
  color: var(--color-text-secondary);
  flex-shrink: 0;
  transition: transform 0.35s ease, color 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--color-neon);
}

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

.faq-answer.open {
  max-height: 400px;
  padding-bottom: var(--space-5);
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}


/* ============================================================
   SEÇÃO 12 — CTA FINAL
   ============================================================ */

.cta-final-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.cta-final-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.cta-final-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  max-width: 600px;
}

@media (min-width: 768px) {
  .cta-final-title {
    font-size: var(--text-5xl);
  }
}

.cta-final-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 500px;
}

.cta-final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 480px) {
  .cta-final-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-final-actions .btn-primary,
.cta-final-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.cta-final-proof {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.cta-final-proof .stars {
  color: #F59E0B;
  font-weight: 600;
}

.cta-final-proof .divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--color-border-subtle);
  vertical-align: middle;
}


/* ============================================================
   SEÇÃO 13 — FOOTER
   ============================================================ */

#footer {
  background: var(--color-bg-base);
  padding: 0;
}

.footer-inner {
  border-top: 1px solid var(--color-border-subtle);
  padding: var(--space-16) 0 var(--space-10);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-8);
  }
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  display: block;
}

.footer-disclaimer {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  max-width: 340px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--color-border-default);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-link:hover {
  border-color: var(--color-border-hover);
  color: var(--color-neon);
  box-shadow: var(--shadow-neon-sm);
}

.footer-bottom {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border-subtle);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
}

/* ============================================
   PÁGINAS LEGAIS — Privacidade e Termos
   ============================================ */

.legal-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  border-left: 2px solid var(--color-border-default);
  padding-left: var(--space-6);
}

.legal-section ul {
  list-style: none;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.legal-section ul li::before {
  content: "—";
  color: var(--color-neon);
  margin-right: 0.5rem;
}


/* ============================================================
   REFINO V2 — HERO BACKGROUND CINEMATOGRÁFICO
   ============================================================ */

.hero-bg {
  background: radial-gradient(120% 80% at 20% 0%, #0F2040 0%, #0A0F1C 55%, #05080F 100%);
}

/* Neutraliza o orb genérico original — substituído pelos divs dedicados */
.hero-bg::after {
  display: none;
}

/* Reduz opacidade do grid no hero para 0.02 */
.hero.bg-grid {
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-orb {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background: radial-gradient(circle at 75% 45%, rgba(0,229,255,0.18) 0%, rgba(0,229,255,0.06) 30%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.hero-orb-secondary {
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 45%;
  height: 60%;
  background: radial-gradient(circle at 20% 80%, rgba(8,145,178,0.12) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 1;
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(0,229,255,0.03) 0px,
    rgba(0,229,255,0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 2;
}

.hero-vignette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 22%;
  background: linear-gradient(to bottom, transparent, #0A0F1C);
  pointer-events: none;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-orb-secondary {
    display: none;
  }
}


/* ============================================================
   REFINO V2 — SEÇÃO 03 PROVA VISUAL (2 colunas)
   ============================================================ */

.proof-section-v2 {
  position: relative;
  overflow: hidden;
}

/* Orb lateral sutil para destacar o celular */
.proof-section-v2::before {
  content: '';
  position: absolute;
  right: -8%;
  top: 10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle at 85% 50%, rgba(0,229,255,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.proof-section-v2 .container {
  position: relative;
  z-index: 1;
}

/* Layout 2 colunas */
.proof-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .proof-layout {
    flex-direction: row;
    align-items: center;
    gap: var(--space-16);
  }
}

/* Coluna esquerda */
.proof-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .proof-left {
    flex: 0 0 38%;
    max-width: 38%;
  }
}

.proof-left h2 {
  font-size: var(--text-3xl);
  line-height: var(--leading-snug);
  margin: 0;
}

@media (min-width: 1024px) {
  .proof-left h2 { font-size: var(--text-4xl); }
}

.proof-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
}

/* Tabs como pills */
.tab-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.tab-nav-pills .tab-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.625rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--color-border-subtle);
  background: transparent;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all 0.2s ease;
  min-height: 44px;
}

.tab-nav-pills .tab-btn::after {
  display: none !important;
}

.tab-nav-pills .tab-btn.active {
  background: rgba(0,229,255,0.12);
  border-color: rgba(0,229,255,0.35);
  color: var(--color-neon);
}

.tab-nav-pills .tab-btn:not(.active):hover {
  border-color: var(--color-border-hover);
  color: var(--color-text-secondary);
}

/* Copy abaixo das tabs */
.proof-copy-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.proof-copy-left p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.proof-copy-left p:first-child {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-secondary);
}

/* Coluna direita */
.proof-right {
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  .proof-right {
    flex: 0 0 58%;
    max-width: 58%;
  }
}

/* Wrapper do iPhone */
.iphone-frame-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 20px;
}

/* Moldura iPhone */
.iphone-frame {
  position: relative;
  width: 320px;
  border-radius: 52px;
  background: #0a0a0a;
  border: 1.5px solid rgba(255,255,255,0.10);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 40px rgba(0,229,255,0.10);
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .iphone-frame { width: 370px; }
}

/* Dynamic Island */
.iphone-dynamic-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 32px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

/* Screen area */
.iphone-screen {
  border-radius: 44px;
  overflow: hidden;
}

/* WhatsApp mockup dentro do iPhone — sem borda própria, top padding p/ island */
.iphone-screen .whatsapp-mockup {
  max-width: none;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  margin-top: 56px;
}

/* Badge de data no corpo do WApp */
.wapp-date-badge {
  align-self: center;
  background: #1F2937;
  color: #9CA3AF;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: var(--space-1);
}

/* Card flutuante streak fora do celular */
.proof-streak-float {
  position: absolute;
  bottom: 56px;
  right: 0;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-hover);
  border-radius: 12px;
  padding: 0.5rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-card), 0 0 16px rgba(0,229,255,0.12);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  z-index: 20;
  white-space: nowrap;
}

@media (max-width: 1023px) {
  .proof-streak-float { right: 8px; bottom: 32px; }
}

@media (min-width: 1024px) {
  .proof-streak-float { right: -16px; }
}

@media (prefers-reduced-motion: reduce) {
  .proof-streak-float { animation: none; }
}


/* ============================================================
   REFINO V2 — SEÇÃO 10 PLANOS
   ============================================================ */

/* Garantia acima do grid */
.plan-guarantee-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--gradient-card);
  border: 1px solid var(--color-border-default);
  border-radius: 14px;
  padding: var(--space-4) var(--space-6);
  max-width: 540px;
  margin: 0 auto var(--space-8);
  box-shadow: var(--shadow-card);
}

.plan-guarantee-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.plan-guarantee-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

/* Badge absoluto no topo do card — sobrepõe a borda */
.plan-badge-abs {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

.plan-badge-try {
  background: var(--color-bg-elevated);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-subtle);
}

.plan-badge-chosen {
  background: var(--color-neon);
  color: #0A0F1C;
  border: none;
  box-shadow: 0 2px 12px rgba(0,229,255,0.35);
}

.plan-badge-value {
  background: var(--color-bg-elevated);
  color: var(--color-cyan-soft);
  border: 1px solid rgba(8,145,178,0.3);
}

/* Preço riscado (De R$49,90/mês) */
.plan-price-was {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.plan-price-was s {
  text-decoration: line-through;
  color: var(--color-text-muted);
}

/* Scale no card popular no desktop (sobrescreve translateY) */
@media (min-width: 768px) {
  .plan-card-popular {
    transform: scale(1.04);
    z-index: 2;
  }
  .plan-card-popular:hover {
    transform: scale(1.06);
  }
}

/* CTA popular — sem pulse, hover limpo */
.plan-cta-popular {
  min-height: 52px;
}

.plan-cta-popular:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-button-hover);
}

/* Trust line abaixo do grid */
.plans-trust {
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  line-height: var(--leading-relaxed);
}
