/* ==========================================================================
   DESIGN SYSTEM VISUAL — LP1 FITNESS LOCAL CIANORTE
   Palette:
   - Deep Black: #0A0A0A
   - Dark Surface: #121212
   - Graphite Card: #171717 / #1F1F1F
   - Neon Lime: #C7FF00 / #B7F000
   - Pure White: #FFFFFF
   - Text Muted: #A1A1AA
   - Text Subtle: #71717A
   ========================================================================== */

:root {
  --bg-main: #0a0a0a;
  --bg-surface: #121212;
  --bg-card: #171717;
  --bg-card-hover: #1f1f1f;
  --bg-card-featured: linear-gradient(180deg, #182008 0%, #14170d 60%, #11120e 100%);
  
  --color-primary: #ffffff;
  --color-muted: #a1a1aa;
  --color-subtle: #71717a;
  
  --neon-lime: #c7ff00;
  --neon-lime-hover: #b5e600;
  --neon-lime-glow: rgba(199, 255, 0, 0.22);
  --neon-lime-glow-strong: rgba(199, 255, 0, 0.45);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-lime: rgba(199, 255, 0, 0.35);
  
  --font-display: 'Barlow Condensed', 'Bebas Neue', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 25px var(--neon-lime-glow);
  --shadow-glow-strong: 0 0 40px var(--neon-lime-glow-strong);
  
  --container-max: 1180px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  background-color: var(--bg-main);
  color: var(--color-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Radial Glows */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: 
    radial-gradient(circle at 85% 15%, rgba(199, 255, 0, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 10% 70%, rgba(199, 255, 0, 0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.text-lime {
  color: var(--neon-lime);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 40%, var(--neon-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.1rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(199, 255, 0, 0.08);
  border: 1px solid var(--border-lime);
  border-radius: var(--radius-full);
  color: var(--neon-lime);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--neon-lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-lime);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ==========================================================================
   BUTTONS — RIGOROSAMENTE EM 1 LINHA (WHITE-SPACE: NOWRAP) E VERDE LIMÃO
   ========================================================================== */
.btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.05rem 1.75rem;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.8vw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap; /* GARANTE QUE O CTA NUNCA QUEBRE EM DUAS LINHAS */
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  background: var(--neon-lime);
  color: #000000;
  box-shadow: 0 4px 20px var(--neon-lime-glow);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.btn:hover,
.btn-primary:hover {
  background: var(--neon-lime-hover);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon,
.btn-primary:hover .btn-icon {
  transform: translateX(3px);
}

/* Brand Display */
.brand-symbol {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: #000;
  background: var(--neon-lime);
  padding: 0.1rem 0.55rem;
  border-radius: 4px;
  box-shadow: 0 0 15px var(--neon-lime-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.68rem;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.hero-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Sections */
section {
  padding: 5.5rem 0;
  position: relative;
}

.section-tag {
  margin-bottom: 1.1rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 1.15rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 650px;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (SUAVES E CINEMATOGRÁFICAS)
   ========================================================================== */
.reveal,
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.revealed {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   HERO SECTION (SEM BARRA FIXA, COM MOCKUP REALISTA DO REEL LIMPO)
   ========================================================================== */
.hero-section {
  padding-top: 5rem;
  padding-bottom: 5.5rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: 
    radial-gradient(circle at 75% 35%, rgba(199, 255, 0, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, var(--bg-main) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-headline {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  line-height: 1.06;
  margin: 1rem 0 1.25rem 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-subheadline {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.9rem;
  border-left: 3px solid var(--neon-lime);
  padding-left: 0.9rem;
  line-height: 1.45;
}

.hero-description {
  font-size: 0.98rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 400px;
}

.microcopy {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--color-subtle);
  font-weight: 500;
}

.microcopy-icon {
  color: var(--neon-lime);
}

/* Hero Smartphone Frame */
.hero-phone-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-smartphone {
  max-width: 320px;
}

.hero-phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #080808;
}

.hero-phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.15) brightness(0.9);
}

.hero-screen-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.05) 40%, rgba(10,10,10,0.85) 85%, #0a0a0a 100%);
  pointer-events: none;
}

.hero-floating-highlight {
  position: absolute;
  bottom: 20px;
  left: -20px;
  z-index: 20;
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid var(--border-lime);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 25px var(--neon-lime-glow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-highlight-icon {
  font-size: 1.4rem;
  color: var(--neon-lime);
}

.floating-highlight-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.floating-highlight-desc {
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* Section 2 — Dor */
.pain-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, #0e0e0e 50%, var(--bg-main) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: stretch;
}

.pain-list-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.pain-list-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
}

.pain-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.94rem;
  color: var(--color-muted);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pain-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pain-icon {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 3px;
}

.pain-highlight-box {
  background: linear-gradient(135deg, #1c1414 0%, #151515 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pain-quote {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.pain-quote span {
  color: #f87171;
}

.pain-quote-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   SECTION 3 — TIMELINE VERTICAL INTERATIVA (CENTRALIZADA E TERMINADA NO 5º PONTO)
   ========================================================================== */
.timeline-wrapper {
  position: relative;
  max-width: 820px;
  margin: 3.5rem auto 0 auto;
  padding: 0.5rem 0;
}

.timeline-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

/* Base Track */
.timeline-track-base {
  position: absolute;
  left: 28px;
  top: 70px;
  bottom: 70px;
  width: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
}

/* Glowing Progress Track (Animates on Scroll, termina exatamente no 5º ponto) */
.timeline-track-progress {
  position: absolute;
  left: 28px;
  top: 70px;
  width: 4px;
  height: 0px;
  background: linear-gradient(180deg, var(--neon-lime) 0%, #b5e600 100%);
  box-shadow: 0 0 15px var(--neon-lime), 0 0 30px var(--neon-lime-glow-strong);
  border-radius: 4px;
  z-index: 2;
  transition: height 0.12s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: height;
  pointer-events: none;
}

/* Single Step Row (Centralizado Verticalmente) */
.timeline-step {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 3;
}

/* Node / Circle Number */
.timeline-node {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #141414;
  border: 2px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 4;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.node-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-subtle);
  transition: color 0.4s ease;
  line-height: 1;
}

.node-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--neon-lime-glow);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

/* Active Node State */
.timeline-step.active .timeline-node {
  background: var(--neon-lime);
  border-color: #ffffff;
  box-shadow: 0 0 25px var(--neon-lime), 0 0 45px var(--neon-lime-glow-strong);
  transform: scale(1.06);
}

.timeline-step.active .node-num {
  color: #000000;
}

.timeline-step.active .node-glow {
  opacity: 1;
  transform: scale(1.25);
  animation: pulse-glow 2.5s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: scale(1.25); }
  50% { opacity: 0.3; transform: scale(1.45); }
}

/* Content Card */
.timeline-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.45;
  transform: translateX(12px);
}

.timeline-card-header {
  margin-bottom: 0.75rem;
}

.step-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-subtle);
  margin-bottom: 0.35rem;
  transition: color 0.4s ease;
}

.timeline-card .step-title {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0;
  transition: color 0.4s ease;
}

.timeline-card .step-desc {
  font-size: 0.94rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Active Card State */
.timeline-step.active .timeline-card {
  opacity: 1;
  transform: translateX(0);
  background: linear-gradient(135deg, #181c10 0%, #151515 100%);
  border-color: var(--border-lime);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px var(--neon-lime-glow);
}

.timeline-step.active .step-pill {
  color: var(--neon-lime);
}

.timeline-step.active .step-title {
  color: #ffffff;
}

/* Section 4 — Target */
.target-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  margin-top: 3rem;
}

.target-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.target-card-for {
  background: var(--bg-card);
  border: 1px solid var(--border-lime);
  box-shadow: 0 0 30px rgba(199, 255, 0, 0.05);
}

.target-card-not {
  background: #121212;
  border: 1px solid var(--border-card);
}

.target-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.target-title {
  font-size: 1.35rem;
}

.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.target-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.94rem;
  color: var(--color-muted);
  line-height: 1.45;
}

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

.cross-icon {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   SECTION 5 — PROVA VISUAL (REEL MOCKUP REALISTA E LIMPO)
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  margin-top: 3rem;
  align-items: center;
}

.reel-mockup-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.portfolio-tabs {
  display: flex;
  background: #121212;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  padding: 0.35rem;
  gap: 0.35rem;
}

.portfolio-tab-btn {
  background: none;
  border: none;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.portfolio-tab-btn.active {
  background: var(--neon-lime);
  color: #000;
  box-shadow: 0 0 15px var(--neon-lime-glow);
}

.tab-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
}

/* Smartphone Mockup Frame */
.smartphone-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9/18.5;
  background: #000000;
  border: 8px solid #1c1c1f;
  border-radius: 36px;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.9), 0 0 40px rgba(199, 255, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Top Phone Bar */
.phone-speaker-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.25rem 0.2rem 1.25rem;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  z-index: 10;
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.phone-island {
  width: 70px;
  height: 18px;
  background: #000;
  border-radius: 10px;
}

/* Top Reel Overlay */
.reel-header-overlay {
  position: absolute;
  top: 36px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.reel-location-pill {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-lime);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.reel-audio-badge {
  background: rgba(199, 255, 0, 0.2);
  border: 1px solid var(--neon-lime);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--neon-lime);
  text-transform: uppercase;
}

/* Reel Visual Body */
.reel-visual-content {
  position: absolute;
  inset: 0;
  background: #080808;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.reel-screen-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.15) brightness(0.9);
}

.reel-bg-atmosphere {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 40%, rgba(10,10,10,0.88) 85%, #0a0a0a 100%);
  pointer-events: none;
}

/* Raw Overlay Mode */
.reel-raw-overlay {
  position: absolute;
  inset: 0;
  background: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 5rem 1.5rem 2rem 1.5rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 6;
}

.raw-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.8);
}

.smartphone-frame.raw-mode .reel-raw-overlay {
  opacity: 1;
  pointer-events: auto;
}

.smartphone-frame.raw-mode .reel-screen-img {
  opacity: 0;
}

.raw-label-tag {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-top: 1rem;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* Side Action Column */
.reel-actions-column {
  position: absolute;
  right: 12px;
  bottom: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  z-index: 10;
}

.reel-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

.reel-action-btn svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.8));
}

.reel-audio-disc {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #18181b;
  border: 2px solid var(--neon-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  animation: spin-disc 4s linear infinite;
  box-shadow: 0 0 10px var(--neon-lime-glow);
}

@keyframes spin-disc {
  100% { transform: rotate(360deg); }
}

/* Reel Bottom Bar */
.reel-bottom-bar {
  position: relative;
  z-index: 10;
  padding: 1.25rem 1rem 0.75rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 70%, #000 100%);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.reel-user-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reel-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000;
  border: 1.5px solid var(--neon-lime);
  color: var(--neon-lime);
  font-size: 0.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-username {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.reel-follow-btn {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--neon-lime);
  border: 1px solid var(--border-lime);
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.reel-caption {
  font-size: 0.68rem;
  color: #d4d4d8;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reel-audio-track {
  font-size: 0.62rem;
  color: var(--color-muted);
}

.reel-playback-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-top: 0.25rem;
  overflow: hidden;
}

.reel-playback-fill {
  width: 65%;
  height: 100%;
  background: var(--neon-lime);
  box-shadow: 0 0 8px var(--neon-lime);
}

.portfolio-info {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.proof-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(199, 255, 0, 0.1);
  border: 1px solid var(--border-lime);
  color: var(--neon-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-title {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.proof-desc {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* Section 6 — Preços */
.pricing-section {
  background: radial-gradient(circle at 50% 30%, rgba(199, 255, 0, 0.05) 0%, transparent 70%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  background: var(--bg-card-featured);
  border: 2px solid var(--neon-lime);
  box-shadow: 0 0 35px var(--neon-lime-glow), var(--shadow-card);
}

.featured-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon-lime);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px var(--neon-lime);
  white-space: nowrap;
}

.plan-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.plan-name {
  font-size: 1.85rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.plan-purpose {
  font-size: 0.9rem;
  color: var(--color-muted);
  min-height: 44px;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 1.25rem 0 0.4rem 0;
}

.plan-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neon-lime);
}

.plan-amount {
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

.plan-period {
  font-size: 0.88rem;
  color: var(--color-subtle);
  font-weight: 600;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.25rem;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: #e4e4e7;
}

.plan-feature-item strong {
  color: #fff;
}

.pricing-microcopy {
  text-align: center;
  margin-top: 1.85rem;
  font-size: 0.85rem;
  color: var(--color-subtle);
}

/* Section 7 — Vantagem Local */
.local-advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.advantage-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  transition: all var(--transition-fast);
}

.advantage-card:hover {
  border-color: var(--border-lime);
  background: var(--bg-card-hover);
}

.advantage-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--neon-lime);
  margin-bottom: 0.2rem;
}

.advantage-title {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.advantage-desc {
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* Section 8 — Escopo */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.85rem;
  margin-top: 3rem;
}

.scope-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.scope-box.included {
  border-left: 4px solid var(--neon-lime);
}

.scope-box.not-included {
  border-left: 4px solid #71717a;
}

.scope-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.scope-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.scope-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.extras-wrap {
  margin-top: 3rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.extras-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.15rem;
}

.extra-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  text-align: center;
}

.extra-name {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.3rem;
}

.extra-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--neon-lime);
}

/* Section 10 — FAQ */
.faq-wrap {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

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

.faq-item.active {
  border-color: var(--border-lime);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-toggle-icon {
  width: 18px;
  height: 18px;
  color: var(--neon-lime);
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.35rem;
}

/* Section 11 — CTA Final */
.final-cta-section {
  background: 
    radial-gradient(circle at 50% 50%, rgba(199, 255, 0, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-main) 0%, #11130d 50%, var(--bg-main) 100%);
  border-top: 1px solid var(--border-subtle);
  padding: 6.5rem 0;
}

.final-cta-box {
  background: var(--bg-card);
  border: 2px solid var(--border-lime);
  border-radius: var(--radius-xl);
  padding: 3.75rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(199, 255, 0, 0.1), var(--shadow-card);
}

.final-cta-title {
  font-size: clamp(1.95rem, 3.6vw, 2.85rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.final-cta-desc {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 650px;
  margin: 0 auto 2.25rem auto;
  line-height: 1.6;
}

.final-cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

/* Footer */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
  color: var(--color-subtle);
  font-size: 0.82rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-copy {
  color: var(--color-subtle);
}

.footer-signature {
  font-size: 0.82rem;
  color: var(--color-subtle);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.signature-highlight {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.signature-highlight:hover {
  color: var(--neon-lime);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 66px;
  background: #18181b;
  border: 1px solid var(--border-card);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid,
  .pain-grid,
  .target-grid,
  .portfolio-grid,
  .local-advantage-grid,
  .scope-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  
  .hero-section {
    padding-top: 4rem;
  }
  
  .smartphone-frame {
    margin: 0 auto;
  }

  .hero-floating-highlight {
    left: 10px;
    bottom: -15px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-section {
    padding-top: 3.5rem;
    min-height: auto;
  }
  
  .timeline-wrapper {
    margin-top: 2.5rem;
  }
  
  .timeline-track-base,
  .timeline-track-progress {
    left: 20px;
    width: 3px;
  }
  
  .timeline-step {
    gap: 1.25rem;
  }
  
  .timeline-node {
    width: 44px;
    height: 44px;
  }
  
  .node-num {
    font-size: 1.1rem;
  }
  
  .timeline-card {
    padding: 1.35rem 1.25rem;
  }
  
  .timeline-card .step-title {
    font-size: 1.15rem;
  }
  
  .timeline-card .step-desc {
    font-size: 0.88rem;
  }
  
  .final-cta-box {
    padding: 2.5rem 1.25rem;
  }
  
  .pricing-card {
    padding: 2.25rem 1.25rem;
  }
  
  .advantage-highlights {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }
}
