/* ═══════════════════════════════════════════════════════════
   SMART SHOTTING — CSS
   Estilo: Futurista · Angular · Tecnológico
   Fontes: Orbitron (títulos) + Exo 2 (texto) + Rajdhani (labels)
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --yellow:      #F2D100;
  --yellow-glow: rgba(242, 209, 0, 0.4);
  --yellow-dim:  rgba(242, 209, 0, 0.12);
  --black:       #000000;
  --dark:        #0a0a0a;
  --dark2:       #0f0f0f;
  --card-bg:     #111111;
  --card-border: #1e1e1e;
  --white:       #ffffff;
  --gray:        #8a8a8a;
  --gray2:       #555555;
  --red:         #ff3333;
  --green:       #00ff88;

  --font-title:  'Orbitron', sans-serif;
  --font-body:   'Exo 2', sans-serif;
  --font-label:  'Rajdhani', sans-serif;

  --container:   1200px;
  --nav-h:       72px;
  --section-gap: 100px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 2px; }

/* ── UTILITY ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.accent { color: var(--yellow); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  position: relative;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 30px var(--yellow-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--gray2);
}
.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  box-shadow: 0 0 20px var(--yellow-dim);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--yellow);
  color: var(--black);
  padding: 10px 24px;
  font-size: 0.72rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.btn-nav:hover {
  background: #fff;
  box-shadow: 0 0 20px var(--yellow-glow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-full { width: 100%; justify-content: center; }
.btn-xl { padding: 18px 48px; font-size: 0.88rem; }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: #1e1e1e;
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.2rem;
  color: var(--yellow);
  filter: drop-shadow(0 0 8px var(--yellow));
}
.logo-text {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── SECTION LABELS ─────────────────────────────────────── */
.section-label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 56px;
}

.section { padding: var(--section-gap) 0; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.8) 100%
  );
}

/* Scan lines effect */
.scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.05) 2px,
    rgba(0,0,0,0.05) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--nav-h);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--yellow);
  border: 1px solid rgba(242, 209, 0, 0.3);
  padding: 6px 16px;
  margin-bottom: 32px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 0 60px rgba(242, 209, 0, 0.15);
  animation: fadeSlideUp 0.9s var(--ease-out) forwards;
}

.hero-headline {
  font-family: var(--font-title);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.9s 0.15s var(--ease-out) both;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: #ccc;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeSlideUp 0.9s 0.25s var(--ease-out) both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeSlideUp 0.9s 0.35s var(--ease-out) both;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid #222;
  padding: 20px 40px;
  backdrop-filter: blur(10px);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  animation: fadeSlideUp 0.9s 0.45s var(--ease-out) both;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.05em;
}
.stat-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: #2a2a2a;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  animation: fadeIn 1s 1s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(0.6)} }

/* ── IMPACT HOOK ────────────────────────────────────────── */
.impact-hook {
  background: var(--dark);
  padding: 80px 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}
.hook-text { text-align: center; }
.hook-line {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hook-arrow {
  font-size: 1.8rem;
  color: var(--yellow);
  font-weight: 900;
  line-height: 1;
}
.hook-big {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
}

/* ── PROBLEMA ───────────────────────────────────────────── */
.problema { background: var(--dark2); }
.problema-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lead {
  font-size: 1.15rem;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 32px;
}
.problema-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.problema-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #bbb;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-left: 2px solid #2a2a2a;
  transition: border-color 0.2s;
}
.problema-item:hover { border-left-color: var(--red); }
.cross-icon { color: var(--red); font-size: 1.1rem; flex-shrink: 0; }

.crenca-break {
  background: var(--yellow-dim);
  border-left: 3px solid var(--yellow);
  padding: 20px 24px;
  margin-top: 16px;
}
.crenca-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 8px;
}
.crenca-break p {
  font-family: var(--font-body);
  font-style: italic;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Visual alvo / escuridão */
.problema-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}
.dark-screen {
  width: 200px; height: 200px;
  background: #080808;
  border: 2px solid #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  z-index: 2;
}
.dark-screen-inner {
  text-align: center;
  color: var(--gray2);
}
.dark-screen-inner i { font-size: 2rem; margin-bottom: 8px; display: block; }
.dark-screen-inner p { font-family: var(--font-label); font-size: 0.85rem; letter-spacing: 0.1em; }
.dark-screen-inner span { font-size: 0.7rem; color: #333; }

.target-rings {
  position: absolute;
  width: 320px; height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringPulse 3s infinite ease-in-out;
}
.ring-1 { width: 120px; height: 120px; border-color: rgba(255,51,51,0.1); animation-delay: 0s; }
.ring-2 { width: 220px; height: 220px; border-color: rgba(255,51,51,0.07); animation-delay: 0.5s; }
.ring-3 { width: 320px; height: 320px; border-color: rgba(255,51,51,0.04); animation-delay: 1s; }
.ring-center {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
  animation: ringPulse 1.5s infinite;
}
@keyframes ringPulse { 0%,100%{opacity:0.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.03)} }

/* ── SOLUÇÃO ────────────────────────────────────────────── */
.solucao { background: var(--black); }

.revelacao-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.revelacao-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #ccc;
  padding: 14px 24px;
  background: var(--card-bg);
  border: 1px solid #222;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.25s;
}
.revelacao-item i { color: var(--yellow); font-size: 1rem; }
.revelacao-item:hover { border-color: var(--yellow); color: var(--white); background: #161616; }

.apresentacao-banner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--yellow-dim);
  border: 1px solid rgba(242,209,0,0.2);
  padding: 32px 40px;
  margin-bottom: 64px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.apresentacao-icon {
  font-size: 2.5rem;
  color: var(--yellow);
  filter: drop-shadow(0 0 20px var(--yellow));
  flex-shrink: 0;
}
.apresentacao-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--yellow);
  display: block;
  margin-bottom: 4px;
}
.apresentacao-text h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.apresentacao-text p { color: var(--gray); font-size: 0.95rem; }

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px 32px;
  transition: all 0.3s var(--ease-out);
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--yellow-dim));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { border-color: rgba(242,209,0,0.3); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover .card-glow { opacity: 1; }

.card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, var(--yellow-dim), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.feature-card.featured {
  border-color: rgba(242,209,0,0.35);
  background: #131300;
}

.card-badge {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--black);
  background: var(--yellow);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 16px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.card-icon {
  font-size: 2.2rem;
  color: var(--yellow);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px var(--yellow-glow));
}

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.feature-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Corner decorations */
.card-corner {
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--yellow);
  border-style: solid;
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover .card-corner,
.feature-card.featured .card-corner { opacity: 0.6; }
.card-corner.tl { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.card-corner.tr { top: 8px; right: 8px; border-width: 1px 1px 0 0; }
.card-corner.bl { bottom: 8px; left: 8px; border-width: 0 0 1px 1px; }
.card-corner.br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

/* ── DEMONSTRAÇÃO ───────────────────────────────────────── */
.demo { background: var(--dark); }

.demo-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.demo-secondary { align-self: start; }

.video-frame {
  position: relative;
  background: #080808;
  border: 1px solid #222;
  border-radius: 4px;
  overflow: hidden;
}
.video-frame video {
  width: 100%;
  display: block;
}
.video-frame.small video { height: 200px; object-fit: cover; }

.video-hud {
  position: absolute;
  z-index: 10;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow);
  padding: 8px 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  text-transform: uppercase;
}
.video-hud.tl { top: 0; left: 0; }
.video-hud.tr { top: 0; right: 0; }
.video-hud.bl { bottom: 0; left: 0; }
.video-hud.br { bottom: 0; right: 0; }

/* Shot timeline */
.shot-timeline {
  background: var(--card-bg);
  border: 1px solid #1e1e1e;
  padding: 28px 32px;
}
.timeline-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 20px;
}
.timeline-track {
  position: relative;
  height: 56px;
  background: #0a0a0a;
  border: 1px solid #222;
  margin-bottom: 16px;
}
.timeline-progress {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(242,209,0,0.06), transparent);
  animation: progressFill 4s ease-out 0.5s forwards;
}
@keyframes progressFill { to { width: 90%; } }

.timeline-shot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.shot-marker {
  width: 12px; height: 12px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  filter: drop-shadow(0 0 6px var(--yellow));
  animation: shotPop 0.4s var(--ease-out) backwards;
}
.shot-time {
  font-family: var(--font-title);
  font-size: 0.58rem;
  color: var(--yellow);
  white-space: nowrap;
}

.timeline-footer {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.tf-item {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tf-item i { color: var(--yellow); }
.tf-item strong { color: var(--white); }

/* ── TRANSFORMAÇÃO ──────────────────────────────────────── */
.transformacao { background: var(--dark2); }

.transform-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.transform-col {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 36px;
}
.transform-col.depois { border-color: rgba(0,255,136,0.2); }

.transform-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #222;
}
.transform-col.antes .transform-header { color: var(--red); }
.transform-col.depois .transform-header { color: var(--green); }

.transform-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.transform-list li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #aaa;
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.transform-col.antes li::before {
  content: '×';
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
}
.transform-col.depois li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}
.transform-col.depois .transform-list li { color: #ddd; }

.transform-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.arrow-icon {
  width: 56px; height: 56px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.arrow-icon i { color: var(--black); font-size: 1.2rem; }
.arrow-label {
  font-family: var(--font-title);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow);
  text-align: center;
  text-transform: uppercase;
}

/* ── BENEFÍCIOS ─────────────────────────────────────────── */
.beneficios { background: var(--black); }

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.beneficio-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all 0.3s;
}
.beneficio-item:hover { border-color: rgba(242,209,0,0.25); transform: translateX(4px); }

.beneficio-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-dim);
  border: 1px solid rgba(242,209,0,0.15);
  color: var(--yellow);
  font-size: 1.1rem;
  flex-shrink: 0;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.beneficio-content h4 {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  line-height: 1.3;
}
.beneficio-content p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── PARA QUEM ──────────────────────────────────────────── */
.para-quem { background: var(--dark); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.audience-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.audience-card:hover { transform: translateY(-4px); border-color: #2a2a2a; }
.audience-card:hover::after { transform: scaleX(1); }

.audience-icon {
  font-size: 2.4rem;
  color: var(--yellow);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 14px var(--yellow-glow));
}
.audience-card h3 {
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1.3;
}
.audience-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.audience-tag {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--yellow);
  background: var(--yellow-dim);
  padding: 4px 12px;
  display: inline-block;
}

/* ── PROVA SOCIAL ───────────────────────────────────────── */
.prova-social { background: var(--dark2); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card.featured { border-color: rgba(242,209,0,0.3); background: #131300; }
.testimonial-card:hover { transform: translateY(-3px); }

.quote-icon { color: var(--yellow); font-size: 1.5rem; margin-bottom: 16px; opacity: 0.6; }

.testimonial-card > p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}
.author-info strong {
  display: block;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.author-info span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* Resultados métricas */
.results-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #1e1e1e;
  background: var(--card-bg);
}
.result-metric {
  padding: 32px;
  text-align: center;
  border-right: 1px solid #1e1e1e;
}
.result-metric:last-child { border-right: none; }
.result-number {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
  filter: drop-shadow(0 0 12px var(--yellow-glow));
}
.result-suffix {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow);
}
.result-desc {
  display: block;
  font-family: var(--font-label);
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── URGÊNCIA ───────────────────────────────────────────── */
.urgencia-banner {
  background: rgba(242,209,0,0.06);
  border-top: 1px solid rgba(242,209,0,0.15);
  border-bottom: 1px solid rgba(242,209,0,0.15);
  padding: 28px 0;
}
.urgencia-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.urgencia-icon {
  font-size: 1.8rem;
  color: var(--yellow);
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px var(--yellow));
}
.urgencia-text { flex: 1; min-width: 200px; }
.urgencia-text strong {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--yellow);
  display: block;
  margin-bottom: 4px;
}
.urgencia-text p { font-size: 0.88rem; color: #ccc; }
.urgencia-btn { flex-shrink: 0; }

/* ── PLANOS ─────────────────────────────────────────────── */
.planos { background: var(--black); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}

.pricing-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 36px 32px;
  transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.pro {
  background: #131300;
  border-color: var(--yellow);
  box-shadow: 0 0 40px rgba(242,209,0,0.1), 0 0 80px rgba(242,209,0,0.05);
  transform: scale(1.02);
  z-index: 1;
}
.pricing-card.pro:hover { transform: scale(1.02) translateY(-4px); }
.pricing-card.elite { border-color: rgba(255,255,255,0.1); }

.pro-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 16px;
  white-space: nowrap;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.pricing-header { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid #1e1e1e; }
.pricing-tier {
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray);
  margin-bottom: 12px;
}
.pricing-tier.accent { color: var(--yellow); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-currency {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--gray);
}
.price-value {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.pricing-card.pro .price-value { color: var(--yellow); filter: drop-shadow(0 0 10px var(--yellow-glow)); }
.price-period {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray);
}
.pricing-desc {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 8px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #ccc;
  padding: 6px 0;
  border-bottom: 1px solid #141414;
}
.pricing-features li.disabled { color: var(--gray2); }
.pricing-features li i { width: 16px; text-align: center; flex-shrink: 0; }
.pricing-features li .fa-check { color: var(--yellow); }
.pricing-features li .fa-times { color: var(--gray2); }

.pricing-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pricing-disclaimer i { color: var(--yellow); }

/* ── CTA FINAL ──────────────────────────────────────────── */
.cta-final {
  position: relative;
  background: var(--dark2);
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(242,209,0,0.04), transparent);
  pointer-events: none;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.cta-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
}

.cta-big-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--yellow);
  margin-bottom: 24px;
  opacity: 0.9;
}

.cta-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 48px;
}

.cta-guarantee {
  margin-top: 20px;
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-guarantee i { color: var(--yellow); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid #111;
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-links h5 {
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--gray2);
}
.footer-tagline {
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--yellow);
  opacity: 0.5;
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shotPop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .problema-grid { grid-template-columns: 1fr; }
  .problema-visual { height: 240px; margin-top: 0; }
  .beneficios-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-layout { grid-template-columns: 1fr; }
  .demo-secondary { display: none; }
  .results-bar { grid-template-columns: repeat(2, 1fr); }
  .result-metric { border-right: none; border-bottom: 1px solid #1e1e1e; }
  .result-metric:nth-child(odd) { border-right: 1px solid #1e1e1e; }
  .result-metric:last-child { border-bottom: none; }
  .transform-grid { grid-template-columns: 1fr; gap: 0; }
  .transform-arrow { flex-direction: row; padding: 16px 0; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  .container { padding: 0 20px; }

  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(0,0,0,0.97); padding: 32px 24px; border-bottom: 1px solid #1e1e1e; gap: 24px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-nav { display: none; }

  .hero-stats { flex-direction: column; gap: 16px; padding: 20px 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-cta { flex-direction: column; align-items: center; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 32px; }
  .pricing-card.pro { transform: none; }
  .pricing-card.pro:hover { transform: translateY(-4px); }

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

  .beneficios-grid { grid-template-columns: 1fr; }
  .results-bar { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .urgencia-content { flex-direction: column; text-align: center; }
  .apresentacao-banner { flex-direction: column; text-align: center; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 1.6rem; }
  .hook-big { font-size: 2rem; }
  .results-bar { grid-template-columns: 1fr; }
  .result-metric:nth-child(odd) { border-right: none; }
  .result-metric { border-bottom: 1px solid #1e1e1e; }
}
