/* ==========================================================================
   MAICON TECH — DESIGN SYSTEM PREMIUM DARK CINEMATIC
   Identidade: #03060D, Azul Neon Elegante, Glassmorphism Moderado, Mobile First
   ========================================================================== */

:root {
  --bg-main: #03060d;
  --bg-surface: #070c18;
  --bg-card: #0b1224;
  --bg-card-hover: #101b33;
  --bg-glass: rgba(11, 18, 36, 0.72);
  --bg-glass-strong: rgba(7, 12, 24, 0.88);
  
  --primary-blue: #0066ff;
  --primary-blue-glow: rgba(0, 102, 255, 0.35);
  --neon-cyan: #00d2ff;
  --neon-glow: rgba(0, 210, 255, 0.28);
  --neon-subtle: rgba(0, 210, 255, 0.12);
  
  --wa-green: #25d366;
  --wa-green-hover: #20ba5a;
  --wa-glow: rgba(37, 211, 102, 0.35);
  
  --text-pure: #ffffff;
  --text-main: #e2e8f4;
  --text-muted: #8292b0;
  --text-dim: #54627d;
  
  --accent-gold: #ffbe1a;
  --border-subtle: rgba(0, 210, 255, 0.1);
  --border-active: rgba(0, 210, 255, 0.32);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --font-heading: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  max-width: 100%;
  overflow-x: clip;
  line-height: 1.6;
  padding-bottom: 70px; /* Espaço para o Sticky Bar no mobile */
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }
}

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

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

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

/* Container de Layout */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 4.5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  section {
    padding: 6.5rem 0;
  }
}

/* Tipografia */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-pure);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon-cyan);
  background: var(--neon-subtle);
  border: 1px solid rgba(0, 210, 255, 0.22);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 620px;
  line-height: 1.7;
}

.center-text {
  text-align: center;
}
.center-text .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Efeito Glow e Linhas de Fundo */
.ambient-glow-top {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 100vw;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.15) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-cyan {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   HEADER & NAVEGAÇÃO
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 0;
  transition: transform var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-pure);
  letter-spacing: -0.02em;
}

.brand-logo .brand-highlight {
  color: var(--neon-cyan);
  text-shadow: 0 0 16px var(--neon-glow);
}

.brand-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  background: var(--neon-subtle);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: var(--radius-sm);
  color: var(--neon-cyan);
  letter-spacing: 0.05em;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-pure);
}

.nav-btn-action {
  background: var(--primary-blue);
  color: var(--text-pure);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px var(--primary-blue-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 102, 255, 0.55);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-drawer {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-active);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-drawer .nav-link {
  font-size: 1.1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* ==========================================================================
   HERO SECTION (0-5 SEGUNDOS: IMPACTO, CONFIANÇA & AÇÃO)
   ========================================================================== */
.hero-section {
  padding-top: 7.5rem;
  padding-bottom: 3.5rem;
  position: relative;
  overflow-x: clip;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 9rem;
    padding-bottom: 5.5rem;
  }
  .hero-grid-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 3rem;
  }
}

.hero-badge-wrap {
  margin-bottom: 1.4rem;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: pulseNeon 2s infinite ease-in-out;
}

@keyframes pulseNeon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.5rem, 5.8vw, 4.4rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.4rem;
  line-height: 1.05;
}

.hero-title .glow-neon {
  color: var(--neon-cyan);
  text-shadow: 0 0 32px var(--neon-glow);
}

.hero-desc {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 560px;
  font-weight: 300;
  line-height: 1.7;
}

/* CTAs do Hero */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

@media (min-width: 540px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--wa-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  padding: 1.05rem 2.2rem;
  border-radius: var(--radius-full);
  min-height: 52px;
  box-shadow: 0 6px 28px var(--wa-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  text-align: center;
}

.btn-cta-primary:hover {
  background: var(--wa-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 38px rgba(37, 211, 102, 0.6);
}

.btn-cta-primary svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--bg-glass);
  color: var(--text-main);
  border: 1.5px solid var(--border-active);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 1.05rem 1.8rem;
  border-radius: var(--radius-full);
  min-height: 52px;
  backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
}

.btn-cta-secondary:hover {
  color: var(--text-pure);
  border-color: var(--neon-cyan);
  background: rgba(0, 210, 255, 0.08);
  transform: translateY(-2px);
}

.cta-microcopy {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 0.45rem;
}

/* Micro Benefícios Próximos ao CTA */
.hero-trust-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-subtle);
  max-width: 540px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bullet-item svg {
  width: 16px;
  height: 16px;
  color: var(--neon-cyan);
  flex-shrink: 0;
}

/* Mockup Cinemático no Hero */
.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 14px 8px;
  box-sizing: border-box;
}

.cinema-display-card {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(160deg, #101932 0%, #080d1c 100%);
  border: 1px solid rgba(0, 210, 255, 0.28);
  border-radius: 24px;
  padding: 0.9rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 102, 255, 0.18);
  position: relative;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .cinema-display-card {
    max-width: 400px;
    padding: 1rem;
    border-radius: 28px;
  }
}

.cinema-display-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.cinema-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.5rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-brand {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}

.mockup-brand span {
  color: var(--neon-cyan);
}

.mockup-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  color: var(--wa-green);
  font-weight: 700;
  background: rgba(37, 211, 102, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.cinema-screen-preview {
  margin-top: 0.8rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  position: relative;
  aspect-ratio: 16/10;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  background-image: linear-gradient(to top, rgba(3, 6, 13, 0.92) 10%, transparent 60%), url('https://image.tmdb.org/t/p/w780/b33nnKl1GSFbao8l3XDORq4UmVR.jpg');
  background-size: cover;
  background-position: center;
}

.preview-content h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.preview-content p {
  font-size: 0.72rem;
  color: var(--neon-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockup-cards-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.mockup-mini-card {
  aspect-ratio: 2/3;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0.4rem;
}

.mockup-mini-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup-mini-card span {
  position: relative;
  z-index: 1;
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  line-height: 1.2;
}

.floating-pill {
  position: absolute;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-active);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  z-index: 2;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: floatMotion 4s ease-in-out infinite;
  max-width: calc(100% - 16px);
  box-sizing: border-box;
  white-space: nowrap;
}

.pill-top-left {
  top: 0;
  left: 0;
}

.pill-bottom-right {
  bottom: 0;
  right: 0;
  animation-delay: 2s;
}

@media (max-width: 480px) {
  .floating-pill {
    font-size: 0.68rem;
    padding: 0.35rem 0.65rem;
  }
  .pill-top-left {
    top: -6px;
    left: 4px;
  }
  .pill-bottom-right {
    bottom: -6px;
    right: 4px;
  }
}

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

/* ==========================================================================
   SELETOR DE PREFERÊNCIAS ("O que você mais gosta de assistir?")
   ========================================================================== */
.pref-selector-section {
  padding: 2.2rem 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-surface) 50%, var(--bg-main) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.pref-chips-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.pref-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 48px;
  transition: all var(--transition-fast);
}

.pref-chip:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 210, 255, 0.08);
  transform: translateY(-2px);
}

.pref-chip.selected {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
  box-shadow: 0 4px 18px var(--primary-blue-glow);
}

/* ==========================================================================
   SEÇÃO DO VÍDEO DO MAICON (HUMANIZAÇÃO E CREDIBILIDADE)
   ========================================================================== */
.video-section {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.video-container-card {
  max-width: 860px;
  margin: 2.5rem auto 0;
  background: var(--bg-card);
  border: 1.5px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 102, 255, 0.15);
  position: relative;
}

@media (min-width: 768px) {
  .video-container-card {
    padding: 1.25rem;
    border-radius: 26px;
  }
}

.video-facade-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.video-facade-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.video-facade-player:hover .video-facade-thumb {
  transform: scale(1.02);
}

.video-overlay-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(3, 6, 13, 0.65) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.video-play-button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-blue);
  border: 3px solid rgba(0, 210, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px var(--primary-blue-glow), 0 0 20px var(--neon-cyan);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

@media (min-width: 768px) {
  .video-play-button {
    width: 88px;
    height: 88px;
  }
}

.video-facade-player:hover .video-play-button {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(0, 102, 255, 0.8), 0 0 30px var(--neon-cyan);
}

.video-play-button svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  margin-left: 4px;
}

.video-callout-text {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.02em;
}

.video-iframe-container {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-post-cta {
  text-align: center;
  margin-top: 2.2rem;
}

/* ==========================================================================
   VITRINE DE CATÁLOGO (NOVIDADES, FILMES, SÉRIES & DESTAQUES)
   ========================================================================== */
.catalog-section {
  position: relative;
}

.catalog-tabs-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  margin: 2rem 0 1.8rem;
  scrollbar-width: none;
}

.catalog-tabs-container::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .catalog-tabs-container {
    justify-content: center;
  }
}

.cat-tab-btn {
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all var(--transition-fast);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.cat-tab-btn:hover {
  border-color: var(--border-active);
  color: var(--text-pure);
}

.cat-tab-btn.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-blue-glow);
}

/* Grid & Carrossel do Catálogo */
.catalog-grid {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1.2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 1.25rem;
    overflow-x: visible;
  }
}

.catalog-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .catalog-card {
    flex: initial;
  }
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(0, 102, 255, 0.2);
}

.card-poster {
  aspect-ratio: 2/3;
  width: 100%;
  position: relative;
  background: #090e1c;
  overflow: hidden;
}

.card-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.catalog-card:hover .card-poster-img {
  transform: scale(1.05);
}

.card-fallback-art {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(160deg, #0f1a36 0%, #060a14 100%);
}

.poster-fallback .card-fallback-art {
  display: flex;
}

.card-art-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.card-art-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.card-rating-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 190, 26, 0.3);
}

.card-type-tag {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(3, 6, 13, 0.82);
  backdrop-filter: blur(8px);
  color: var(--neon-cyan);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(0, 210, 255, 0.2);
}

.card-info {
  padding: 0.75rem 0.85rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.card-year {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.card-cta-hint {
  font-size: 0.7rem;
  color: var(--neon-cyan);
  font-weight: 600;
}

/* Empty state and retry */
.catalog-empty-box {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-muted);
  grid-column: 1 / -1;
  width: 100%;
}

.catalog-empty-box p {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.btn-retry-catalog {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--primary-blue);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-retry-catalog:hover { opacity: 0.85; }

/* Improved fallback art (no-poster case) */
.card-fallback-art {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(160deg, #0f1a36 0%, #060a14 100%);
  border-radius: var(--radius-sm);
}

.poster-fallback .card-fallback-art { display: flex; }

.card-art-badge {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--neon-cyan);
  border: 1px solid rgba(0,210,255,0.3);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.card-art-icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.card-art-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.card-art-sub {
  font-size: 0.62rem;
  color: var(--text-muted);
}

/* Skeleton Loading */
.catalog-card-skeleton {
  flex: 0 0 160px;
  aspect-ratio: 2/3.8;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.catalog-card-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0));
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

.skeleton-poster {
  width: 100%;
  aspect-ratio: 2/3;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
}

.skeleton-line-title {
  width: 80%;
  height: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.skeleton-line-sub {
  width: 50%;
  height: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}

/* ==========================================================================
   BENEFÍCIOS: "POR QUE AS PESSOAS FICAM?"
   ========================================================================== */
.benefits-section {
  background: var(--bg-surface);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

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

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

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.benefit-card:hover {
  border-color: var(--border-active);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--neon-subtle);
  border: 1px solid rgba(0, 210, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--neon-cyan);
}

.benefit-icon-box svg {
  width: 26px;
  height: 26px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ==========================================================================
   WALL OF TRUST — PROVAS REAIS (PRIORIDADE MÁXIMA)
   ========================================================================== */
.proofs-section {
  position: relative;
  overflow: hidden;
}

/* Balões Flutuantes com Frases Reais no Fundo */
.floating-quotes-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-quote-bubble {
  position: absolute;
  background: rgba(0, 102, 255, 0.06);
  border: 1px solid rgba(0, 210, 255, 0.12);
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.8rem;
  font-style: italic;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.fq-1 { top: 12%; left: 5%; animation: floatSlow 8s ease-in-out infinite; }
.fq-2 { top: 28%; right: 6%; animation: floatSlow 9s ease-in-out infinite 2s; }
.fq-3 { bottom: 35%; left: 8%; animation: floatSlow 7s ease-in-out infinite 1s; }
.fq-4 { bottom: 15%; right: 10%; animation: floatSlow 8.5s ease-in-out infinite 3s; }
.fq-5 { top: 65%; left: 45%; animation: floatSlow 10s ease-in-out infinite 1.5s; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.wall-of-trust-grid {
  display: flex;
  overflow-x: auto;
  gap: 1.25rem;
  padding: 2.5rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .wall-of-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
  }
}

.trust-card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

@media (min-width: 900px) {
  .trust-card {
    flex: initial;
  }
}

.trust-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 102, 255, 0.15);
}

.trust-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.trust-stars {
  color: var(--accent-gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
}

.trust-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--wa-green);
  background: rgba(37, 211, 102, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.trust-quote {
  font-size: 0.98rem;
  color: var(--text-pure);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.trust-author-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--neon-subtle);
  border: 1.5px solid rgba(0, 210, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--neon-cyan);
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.author-sub {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.btn-view-proof {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--neon-cyan);
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.25);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-view-proof:hover {
  background: var(--neon-cyan);
  color: #03060d;
}

/* Micro CTA Pós Prova */
.proofs-post-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding: 2.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.proofs-post-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.proofs-post-cta p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   MODAL DE SCREENSHOTS REAIS (ANONIMIZADO)
   ========================================================================== */
.proof-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal);
}

.proof-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 92%;
  max-width: 480px;
  max-height: 90vh;
  background: var(--bg-card);
  border: 1.5px solid var(--border-active);
  border-radius: var(--radius-lg);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 102, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.proof-modal-backdrop.active,
.proof-modal.active {
  opacity: 1;
  visibility: visible;
}

.proof-modal.active {
  transform: translate(-50%, -50%);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title-wrap h4 {
  font-size: 1rem;
  color: #fff;
}

.modal-title-wrap p {
  font-size: 0.75rem;
  color: var(--neon-cyan);
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 1rem;
  overflow-y: auto;
  text-align: center;
  flex-grow: 1;
}

.modal-screenshot {
  max-width: 100%;
  max-height: 52vh;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: contain;
}

.modal-quote-box {
  margin-top: 0.85rem;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-main);
}

.modal-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   SEÇÃO DISPOSITIVOS
   ========================================================================== */
.devices-section {
  background: var(--bg-surface);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

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

@media (min-width: 992px) {
  .devices-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem 1rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.device-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.15);
}

.device-svg-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-md);
  background: var(--neon-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
}

.device-svg-box svg {
  width: 28px;
  height: 28px;
}

.device-card h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.device-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   TABELA DE PLANOS (PRESERVA VALORES ORIGINAIS EXATOS)
   ========================================================================== */
.plans-section {
  position: relative;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

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

@media (min-width: 1040px) {
  .plans-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
}

/* Destaque Trimestral (Mais Escolhido) */
.plan-card.highlight-popular {
  background: linear-gradient(170deg, #0e1d44 0%, #081128 100%);
  border-color: var(--primary-blue);
  box-shadow: 0 15px 45px rgba(0, 102, 255, 0.25);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 210, 255, 0.5);
  box-shadow: 0 4px 14px var(--primary-blue-glow);
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-tier-name {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}

.plan-card.highlight-popular .plan-tier-name {
  color: var(--neon-cyan);
}

.plan-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.2rem;
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.price-integer {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-cents {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.plan-period-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.plan-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.plan-features-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
}

.plan-features-list li svg {
  width: 16px;
  height: 16px;
  color: var(--neon-cyan);
  flex-shrink: 0;
}

.plan-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-full);
  min-height: 48px;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-outline-plan {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--border-active);
}

.btn-outline-plan:hover {
  background: var(--neon-subtle);
  border-color: var(--neon-cyan);
}

.btn-solid-popular {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 4px 20px var(--wa-glow);
}

.btn-solid-popular:hover {
  background: var(--wa-green-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   FAQ DE CONVERSÃO
   ========================================================================== */
.faq-section {
  background: var(--bg-surface);
}

.faq-wrapper {
  max-width: 760px;
  margin: 3rem auto 0;
}

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

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.faq-question-btn:hover {
  color: var(--neon-cyan);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--neon-cyan);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-fast);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

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

/* Micro CTA no FAQ */
.faq-mid-cta {
  text-align: center;
  margin-top: 2.8rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-active);
}

.faq-mid-cta p {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   CTA FINAL CINEMATOGRÁFICO
   ========================================================================== */
.final-cta-section {
  text-align: center;
  padding: 6.5rem 0;
  background: radial-gradient(circle at center, rgba(0, 102, 255, 0.18) 0%, var(--bg-main) 70%);
  border-top: 1px solid var(--border-active);
  position: relative;
}

.final-cta-content {
  max-width: 780px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.3rem;
  line-height: 1.1;
}

.final-cta-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.btn-cta-giant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--wa-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  padding: 1.2rem 3rem;
  border-radius: var(--radius-full);
  min-height: 58px;
  box-shadow: 0 8px 36px var(--wa-glow);
  transition: all var(--transition-fast);
}

.btn-cta-giant:hover {
  background: var(--wa-green-hover);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 48px rgba(37, 211, 102, 0.7);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
  background: #020409;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-credits {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.social-link:hover {
  color: var(--neon-cyan);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-legal-notice {
  font-size: 0.75rem;
  color: var(--text-dim);
  max-width: 580px;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ==========================================================================
   STICKY BAR (MOBILE) & CÁPSULA FLUTUANTE (DESKTOP)
   ========================================================================== */
.sticky-cta-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: var(--bg-glass-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border-active);
}

.sticky-cta-container.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sticky-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
}

.sticky-micro-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.sticky-action-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--wa-green);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  min-height: 48px;
  box-shadow: 0 4px 20px var(--wa-glow);
}

@media (min-width: 900px) {
  .sticky-cta-container {
    left: auto;
    right: 2rem;
    bottom: 2rem;
    background: none;
    border-top: none;
    padding: 0;
  }
  
  .sticky-inner {
    flex-direction: column;
    align-items: flex-end;
  }
  
  .sticky-micro-hint {
    background: var(--bg-card);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
  }

  .sticky-action-btn {
    width: auto;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   TOAST DISCRETO: "MAICON ESTÁ AQUI"
   ========================================================================== */
.presence-toast {
  position: fixed;
  bottom: 85px;
  right: 1rem;
  z-index: 980;
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 102, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 340px;
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

@media (min-width: 900px) {
  .presence-toast {
    bottom: 2rem;
    left: 2rem;
    right: auto;
  }
}

.presence-toast.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-avatar-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  position: relative;
  flex-shrink: 0;
}

.toast-online-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: var(--wa-green);
  border: 2px solid var(--bg-card);
  border-radius: 50%;
}

.toast-text-box {
  flex-grow: 1;
}

.toast-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--wa-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.toast-message {
  font-size: 0.82rem;
  color: var(--text-main);
  line-height: 1.3;
}

.toast-cta-btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-top: 0.2rem;
}

.toast-close-x {
  color: var(--text-dim);
  font-size: 1rem;
  padding: 0.2rem;
  transition: color var(--transition-fast);
}

.toast-close-x:hover {
  color: #fff;
}

/* Scroll To Top */
.scroll-top-btn {
  position: fixed;
  bottom: 85px;
  left: 1rem;
  z-index: 970;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

@media (min-width: 900px) {
  .scroll-top-btn {
    bottom: 2rem;
    left: auto;
    right: 20rem;
  }
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* ==========================================================================
   ANIMAÇÕES DE SCROLL
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}
