/* ── BoxFire Landing Page Design System ────────────────────────────── */
:root {
  --bg-main: #060813;
  --bg-surface: #0c1024;
  --bg-card: rgba(18, 24, 48, 0.65);
  --bg-card-hover: rgba(26, 34, 68, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(139, 92, 246, 0.35);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-primary: #6366f1;
  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-cyan: #06b6d4;
  --accent-green: #10b981;
  --accent-amber: #f59e0b;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

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

/* ── Ambient Background Glows ── */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.45;
}

.glow-1 {
  width: 650px;
  height: 650px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35), transparent 70%);
}

.glow-2 {
  width: 500px;
  height: 500px;
  top: 35%;
  right: -100px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25), transparent 70%);
}

.glow-3 {
  width: 600px;
  height: 600px;
  bottom: 10%;
  left: -150px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
}

/* Background Subtle Grid Texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* ── Container ── */
.landing-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Navbar ── */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(6, 8, 19, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 7px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.22);
  font-size: 0.6rem;
  font-weight: 600;
  color: #34d399;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.live-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulse-dot 1.8s infinite;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
  list-style: none;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-link:hover {
  color: #fff;
}

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

.btn-nav-outline {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-nav-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-nav-primary {
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-purple));
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(99, 102, 241, 0.35);
  transition: var(--transition);
}

.btn-nav-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(99, 102, 241, 0.5);
}

@media (max-width: 1100px) {
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.78rem;
  }
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }
}

/* ── Typography & Badges ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #c4b5fd;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag-emerald {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
}

.section-tag-amber {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  color: #fcd34d;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 30%, #a78bfa 70%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Hero Section ── */
.hero-section {
  padding: 80px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.hero-content h1 em {
  font-style: normal;
  color: #c4b5fd;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-cta-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #d946ef);
  background-size: 200% 200%;
  animation: gradient-pan 5s ease infinite;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 35px rgba(124, 58, 237, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  transition: var(--transition);
}

@keyframes gradient-pan {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-cta-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(124, 58, 237, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.btn-cta-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-cta-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Quick Metrics Row */
.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.trust-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Hero Hardware Showcase (Video Player & Totem Mockup) ── */
.hero-hardware-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hardware-chassis {
  position: relative;
  width: 100%;
  max-width: 580px;
  background: linear-gradient(145deg, #1e243d, #0b0e1e);
  padding: 14px;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 35px 80px rgba(0, 0, 0, 0.75),
    0 0 60px rgba(99, 102, 241, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hardware-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 340px;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hardware-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  z-index: 10;
}

.hardware-ad-pill {
  background: rgba(245, 158, 11, 0.3);
  border: 1px solid rgba(245, 158, 11, 0.6);
  color: #fbbf24;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.hardware-bottom-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 16px 14px;
  background: linear-gradient(0deg, rgba(6, 8, 19, 0.95) 20%, transparent 100%);
  z-index: 10;
}

.hardware-bottom-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.hardware-bottom-info p {
  font-size: 0.76rem;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.35;
}

.hardware-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
}

.hardware-progress-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-pink));
  animation: progress-slide 6s ease-in-out infinite;
}

@keyframes progress-slide {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Floating Glass Badges */
.floating-glass-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(18, 24, 48, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  z-index: 20;
  animation: float-badge 6s ease-in-out infinite;
}

.badge-pos-left {
  top: -16px;
  left: -20px;
}

.badge-pos-right {
  bottom: -16px;
  right: -20px;
  animation-delay: -3s;
}

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

.badge-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.icon-purple {
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}

.icon-green {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

.floating-glass-badge div strong {
  display: block;
  font-size: 0.84rem;
  color: #fff;
}

.floating-glass-badge div small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* ── Section Headers ── */
.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px;
}

.section-header-center h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header-center p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Section: Showcase de Utilização Real (Barbearia & Elevador) ── */
.showcase-section {
  padding: 100px 0;
  position: relative;
}

.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.showcase-tab-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.showcase-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.showcase-tab-btn.active {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-purple));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.showcase-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.showcase-visual-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16 / 10;
  background: #000;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover .showcase-img {
  transform: scale(1.03);
}

.showcase-tag-float {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.showcase-details h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.showcase-details p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.showcase-metrics-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.showcase-metric-box {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
}

.showcase-metric-box strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #a78bfa;
}

.showcase-metric-box span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ── Section: Vantagens Competitivas (Grid de Benefícios) ── */
.advantages-section {
  padding: 100px 0;
  position: relative;
}

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

.advantage-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  backdrop-filter: blur(16px);
  transition: var(--transition);
  overflow: hidden;
}

.advantage-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.advantage-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.adv-icon-1 { background: rgba(99, 102, 241, 0.15); border: 1px solid rgba(99, 102, 241, 0.3); color: #818cf8; }
.adv-icon-2 { background: rgba(236, 72, 153, 0.15); border: 1px solid rgba(236, 72, 153, 0.3); color: #f472b6; }
.adv-icon-3 { background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); color: #34d399; }
.adv-icon-4 { background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.3); color: #fbbf24; }
.adv-icon-5 { background: rgba(6, 182, 212, 0.15); border: 1px solid rgba(6, 182, 212, 0.3); color: #22d3ee; }
.adv-icon-6 { background: rgba(139, 92, 246, 0.15); border: 1px solid rgba(139, 92, 246, 0.3); color: #a78bfa; }

.advantage-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.advantage-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Section: Comparativo Direto (Tradicional vs BoxFire) ── */
.comparison-section {
  padding: 100px 0;
  position: relative;
}

.comparison-table-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.comparison-grid-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.header-col-boxfire {
  color: #a78bfa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  align-items: center;
  font-size: 0.9rem;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-feature strong {
  display: block;
  color: #fff;
  font-weight: 600;
}

.comparison-feature small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.col-trad {
  color: #94a3b8;
}

.col-bf {
  color: #34d399;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Section: Simulador Interativo de Alcance ── */
.calculator-section {
  padding: 100px 0;
  position: relative;
}

.calc-card {
  background: linear-gradient(145deg, rgba(30, 36, 68, 0.7), rgba(12, 16, 36, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(99, 102, 241, 0.15);
}

.calc-inputs-col h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.calc-inputs-col p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.calc-control-group {
  margin-bottom: 22px;
}

.calc-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.calc-pill-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.calc-pill {
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.calc-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.calc-pill.selected {
  background: var(--accent-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.calc-result-col {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 34px;
  text-align: center;
}

.calc-result-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  margin-bottom: 8px;
}

.calc-price-display {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.calc-impressions-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.calc-breakdown {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.btn-calc-action {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-purple));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  transition: var(--transition);
}

.btn-calc-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.6);
}

.calc-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 14px;
  text-align: center;
}

/* ── Section: Dual Funnel (Anunciar x Instalar no Ponto) ── */
.dual-funnel-section {
  padding: 100px 0;
  position: relative;
}

.dual-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.funnel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  transition: var(--transition);
}

.funnel-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.funnel-card.card-advertiser {
  border-top: 4px solid var(--accent-purple);
}

.funnel-card.card-venue {
  border-top: 4px solid var(--accent-green);
}

.funnel-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 14px 0 12px;
  color: #fff;
}

.funnel-card p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.funnel-benefits-list {
  list-style: none;
  margin-bottom: 34px;
}

.funnel-benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.funnel-benefits-list li span {
  color: #34d399;
  font-weight: 700;
}

/* ── Section: FAQ Accordion ── */
.faq-section {
  padding: 100px 0;
  position: relative;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-arrow {
  font-size: 1.2rem;
  color: #a78bfa;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  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 24px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Footer ── */
.landing-footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 8, 19, 0.95);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 30px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.84rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: #c4b5fd;
  text-decoration: none;
}

/* ── Mobile Responsiveness ── */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-metrics {
    justify-content: center;
  }

  .floating-glass-badge {
    display: none;
  }

  .showcase-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

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

  .calc-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .dual-cards-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid-header, .comparison-row {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    padding: 16px 18px;
    font-size: 0.82rem;
  }
}

@media (max-width: 640px) {
  .nav-menu, .btn-nav-outline {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-glow, .btn-cta-glass {
    width: 100%;
    justify-content: center;
  }

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

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

  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
