/* ============================================
   CUSTOM CSS - Desconto em Games Landing Page
   Redesign moderno com foco em conversão
   ============================================ */

/* ===========================================
   CSS VARIABLES
   =========================================== */
:root {
  /* Cores principais */
  --color-primary: #8b5cf6;
  --color-primary-dark: #7c3aed;
  --color-primary-light: #a78bfa;

  /* Cores de destaque */
  --color-yellow: #fbbf24;
  --color-yellow-light: #fcd34d;
  --color-yellow-dark: #f59e0b;

  /* WhatsApp & Telegram */
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #128C7E;
  --color-telegram: #0088cc;
  --color-telegram-dark: #006699;

  /* Backgrounds */
  --bg-dark: #0f0f1a;
  --bg-dark-secondary: #1a1a2e;
  --bg-purple: #16132b;
  --bg-card: rgba(139, 92, 246, 0.08);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 10px;

  /* Espaçamentos */
  --section-padding: 80px;
  --section-padding-mobile: 50px;
  --container-max: 1200px;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
  --shadow-glow-purple: 0 0 40px rgba(139, 92, 246, 0.3);
  --shadow-glow-whatsapp: 0 0 30px rgba(37, 211, 102, 0.4);
  --shadow-glow-telegram: 0 0 30px rgba(0, 136, 204, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

@keyframes pulseTelegram {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 15px rgba(0, 136, 204, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(20px) rotate(-5deg); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, var(--bg-purple) 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Formas decorativas flutuantes - GAMER THEME */
.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* Grid de fundo estilo tech */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Ícones gamer flutuantes */
.hero-shape {
  position: absolute;
  font-size: 3rem;
  opacity: 0.08;
  color: var(--color-primary-light);
}

.hero-shape-1 {
  top: 15%;
  right: 10%;
  font-size: 5rem;
  animation: floatGamer 8s ease-in-out infinite;
}

.hero-shape-2 {
  bottom: 20%;
  left: 5%;
  font-size: 4rem;
  animation: floatGamer 10s ease-in-out infinite reverse;
  color: var(--color-yellow);
}

.hero-shape-3 {
  top: 60%;
  right: 20%;
  font-size: 3.5rem;
  animation: floatGamer 12s ease-in-out infinite;
}

.hero-shape-4 {
  top: 25%;
  left: 15%;
  font-size: 2.5rem;
  animation: floatGamer 9s ease-in-out infinite reverse;
  color: var(--color-whatsapp);
  opacity: 0.06;
}

.hero-shape-5 {
  bottom: 30%;
  right: 8%;
  font-size: 2rem;
  animation: floatGamer 11s ease-in-out infinite;
  opacity: 0.05;
}

.hero-shape-6 {
  top: 40%;
  left: 8%;
  font-size: 2.5rem;
  animation: floatGamer 7s ease-in-out infinite reverse;
  color: var(--color-telegram);
  opacity: 0.06;
}

/* Linhas de circuito */
.circuit-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  height: 1px;
  opacity: 0.1;
}

.circuit-line-1 {
  top: 20%;
  left: 0;
  width: 30%;
  animation: circuitPulse 4s ease-in-out infinite;
}

.circuit-line-2 {
  top: 50%;
  right: 0;
  width: 25%;
  animation: circuitPulse 5s ease-in-out infinite reverse;
}

.circuit-line-3 {
  bottom: 30%;
  left: 10%;
  width: 20%;
  animation: circuitPulse 6s ease-in-out infinite;
}

/* Pontos de LED */
.led-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-primary);
  opacity: 0.3;
  animation: ledBlink 2s ease-in-out infinite;
}

.led-dot-1 { top: 20%; left: 30%; animation-delay: 0s; }
.led-dot-2 { top: 35%; right: 25%; animation-delay: 0.5s; }
.led-dot-3 { bottom: 25%; left: 20%; animation-delay: 1s; }
.led-dot-4 { bottom: 40%; right: 15%; animation-delay: 1.5s; }
.led-dot-5 { top: 50%; left: 5%; animation-delay: 0.3s; background: var(--color-yellow); box-shadow: 0 0 10px var(--color-yellow); }
.led-dot-6 { top: 70%; right: 30%; animation-delay: 0.8s; background: var(--color-whatsapp); box-shadow: 0 0 10px var(--color-whatsapp); }

@keyframes floatGamer {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.08;
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
    opacity: 0.12;
  }
}

@keyframes circuitPulse {
  0%, 100% {
    opacity: 0.05;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 0.15;
    transform: scaleX(1);
  }
}

@keyframes ledBlink {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Badge de membros */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--color-yellow);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 30px;
  animation: fadeInDown 0.6s ease forwards, pulse 3s ease-in-out infinite 1s;
}

.hero-badge-icon {
  font-size: 1.2rem;
}

/* Título principal */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-dark) 50%, var(--color-yellow-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Subtítulo */
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-normal);
  min-width: 280px;
}

.btn-hero i {
  font-size: 1.4rem;
}

.btn-whatsapp-hero {
  background: linear-gradient(135deg, var(--color-whatsapp) 0%, var(--color-whatsapp-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow-whatsapp);
}

.btn-whatsapp-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.btn-telegram-hero {
  background: linear-gradient(135deg, var(--color-telegram) 0%, var(--color-telegram-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow-telegram);
}

.btn-telegram-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px rgba(0, 136, 204, 0.5);
  color: #fff;
}

/* Trust badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.hero-trust-item i {
  color: var(--color-whatsapp);
  font-size: 1.1rem;
}

/* ===========================================
   VIDEO SECTION
   =========================================== */
.video-section {
  padding: var(--section-padding) 0;
  background: var(--bg-dark);
}

.video-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.video-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  font-weight: 700;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.video-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-yellow));
  border-radius: var(--radius-lg);
  z-index: -1;
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

/* ===========================================
   GLASS CARDS (Vantagens)
   =========================================== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-normal);
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow-purple);
  border-color: rgba(139, 92, 246, 0.3);
}

.glass-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 28px;
}

.glass-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-yellow);
  margin-bottom: 12px;
}

.glass-card-text {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* ===========================================
   SECTION TITLES
   =========================================== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-yellow);
  margin-bottom: 0;
}

.landing-title {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-yellow));
  margin: 16px auto 0;
  border-radius: var(--radius-full);
}

/* ===========================================
   STATISTICS SECTION
   =========================================== */
.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-dark) 100%);
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--bg-dark);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

/* ===========================================
   STORE LOGOS
   =========================================== */
.store-logo {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition-normal);
}

.store-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.feature-logos .slide {
  padding: 0 20px;
}

.feature-logos .slide img {
  max-width: 100px;
  height: auto;
}

/* ===========================================
   OFFERS SECTION
   =========================================== */
.offer-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.offer-card:hover {
  transform: scale(1.03);
  border-color: var(--color-primary);
}

.offer-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.offer-store {
  display: inline-block;
  background: var(--bg-dark);
  color: var(--color-yellow);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 10px 0;
}

.offer-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offer-price {
  color: var(--color-yellow);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===========================================
   GROUPS CTA SECTION
   =========================================== */
.groups-section {
  background: linear-gradient(135deg, var(--bg-purple) 0%, var(--bg-dark-secondary) 100%);
  position: relative;
}

.groups-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(37, 211, 102, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 50%, rgba(0, 136, 204, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.group-cta-card {
  text-align: center;
  padding: 40px 20px;
}

.group-cta-card .group-app-image {
  height: 150px !important;
  width: auto;
  transition: transform var(--transition-normal);
}

.group-cta-card:hover .group-app-image {
  transform: scale(1.05);
}

.group-cta-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.btn-group-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-normal);
  min-width: 300px;
}

.btn-group-cta i {
  font-size: 1.4rem;
}

.btn-whatsapp-cta {
  background: linear-gradient(135deg, var(--color-whatsapp) 0%, var(--color-whatsapp-dark) 100%);
  color: #fff;
  animation: pulse 2s ease-in-out infinite;
}

.btn-whatsapp-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-whatsapp);
  color: #fff;
}

.btn-telegram-cta {
  background: linear-gradient(135deg, var(--color-telegram) 0%, var(--color-telegram-dark) 100%);
  color: #fff;
  animation: pulseTelegram 2s ease-in-out infinite;
  animation-delay: 1s;
}

.btn-telegram-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-telegram);
  color: #fff;
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-yellow) 100%);
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-quote {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--color-primary);
  display: block;
  margin-bottom: -20px;
  font-family: Georgia, serif;
}

.testimonial-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.testimonial-source {
  color: var(--color-primary-light);
  font-size: 0.9rem;
}

/* Slick dots customização */
.testimonial-carousel .slick-dots {
  bottom: -40px;
}

.testimonial-carousel .slick-dots li button:before {
  color: var(--color-primary);
  font-size: 10px;
}

.testimonial-carousel .slick-dots li.slick-active button:before {
  color: var(--color-yellow);
}

/* ===========================================
   FAQ SECTION
   =========================================== */
.faq-card {
  border: none;
  border-radius: var(--radius-md) !important;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-card .card-header {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md) !important;
  padding: 20px 24px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.faq-card .card-header:hover {
  border-color: var(--color-primary);
}

.faq-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-number {
  font-weight: 700;
  font-size: 1.1rem;
}

.faq-card .card-body {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 24px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ===========================================
   FOOTER
   =========================================== */
.demo-footer {
  background: var(--bg-purple) !important;
}

.demo-footer .card {
  background: var(--bg-dark) !important;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all var(--transition-normal);
}

.footer-social-icons a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-newsletter {
  display: flex;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 14px 20px;
  color: #fff;
  font-size: 0.95rem;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.footer-newsletter button {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-purple);
}

/* ===========================================
   BACK TO TOP
   =========================================== */
#back-to-top {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow-purple);
  transition: all var(--transition-normal);
}

#back-to-top:hover {
  transform: translateY(-5px);
}

/* ===========================================
   SCROLL REVEAL ANIMATIONS
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.revealleft {
  transform: translateX(-30px);
}

.reveal.revealleft.active {
  transform: translateX(0);
}

.reveal.revealright {
  transform: translateX(30px);
}

.reveal.revealright.active {
  transform: translateX(0);
}

/* Stagger animation para cards */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ===========================================
   MOBILE RESPONSIVE
   =========================================== */
@media (max-width: 991px) {
  :root {
    --section-padding: 60px;
  }

  .hero-section {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero {
    width: 100%;
    max-width: 350px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  /* Ocultar imagens decorativas no mobile */
  .faq-image-mobile-hide {
    display: none !important;
  }

  /* Imagens dos apps WhatsApp/Telegram menores no tablet */
  .group-cta-card .group-app-image {
    height: 100px !important;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  .btn-hero {
    padding: 16px 24px;
    font-size: 1rem;
    min-width: auto;
    width: 100%;
  }

  .glass-card {
    padding: 24px;
  }

  .glass-card-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .btn-group-cta {
    width: 100%;
    min-width: auto;
  }

  /* Hero shapes menores no mobile */
  .hero-shape-1 {
    font-size: 3rem;
    top: 10%;
    right: 5%;
  }

  .hero-shape-2 {
    font-size: 2.5rem;
  }

  .hero-shape-3,
  .hero-shape-4,
  .hero-shape-5,
  .hero-shape-6 {
    display: none;
  }

  .circuit-lines {
    display: none;
  }

  .led-dot {
    width: 4px;
    height: 4px;
  }

  .led-dot-3,
  .led-dot-4,
  .led-dot-5,
  .led-dot-6 {
    display: none;
  }

  /* Imagens dos apps menores no mobile */
  .group-cta-card .group-app-image {
    height: 80px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-badge {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .glass-card-title {
    font-size: 1.1rem;
  }

  .footer-newsletter {
    flex-direction: column;
  }

  .footer-newsletter button {
    width: 100%;
  }
}

/* ===========================================
   UTILITIES
   =========================================== */
.text-yellow {
  color: var(--color-yellow) !important;
}

.bg-purple {
  background-color: var(--bg-purple) !important;
}

.bg-dark {
  background-color: var(--bg-dark) !important;
}

/* Hide on mobile */
@media (max-width: 991px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Show only on mobile */
@media (min-width: 992px) {
  .show-mobile-only {
    display: none !important;
  }
}

/* ===========================================
   STICKY CTA MOBILE
   =========================================== */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-dark) 20%);
  padding: 20px 16px 16px;
  z-index: 1000;
  display: none;
  gap: 10px;
}

.sticky-cta-mobile .btn-sticky {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  color: #fff;
  transition: all var(--transition-fast);
}

.sticky-cta-mobile .btn-sticky i {
  font-size: 1.2rem;
}

.sticky-cta-mobile .btn-whatsapp-sticky {
  background: var(--color-whatsapp);
}

.sticky-cta-mobile .btn-telegram-sticky {
  background: var(--color-telegram);
}

@media (max-width: 768px) {
  .sticky-cta-mobile {
    display: flex;
  }

  /* Adicionar padding no footer para não sobrepor conteúdo */
  .main-footer {
    padding-bottom: 80px !important;
  }
}

/* ===========================================
   EXIT INTENT POPUP
   =========================================== */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exit-popup-overlay.active {
  display: flex;
  opacity: 1;
}

.exit-popup {
  background: linear-gradient(135deg, var(--bg-dark-secondary) 0%, var(--bg-purple) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.exit-popup-overlay.active .exit-popup {
  transform: scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.exit-popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.exit-popup-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: bounce 1s ease-in-out infinite;
}

.exit-popup-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.exit-popup-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.exit-popup-highlight {
  color: var(--color-yellow);
  font-weight: 700;
}

.exit-popup-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exit-popup-ctas .btn-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  color: #fff;
  transition: all var(--transition-normal);
}

.exit-popup-ctas .btn-popup i {
  font-size: 1.3rem;
}

.exit-popup-ctas .btn-whatsapp-popup {
  background: linear-gradient(135deg, var(--color-whatsapp) 0%, var(--color-whatsapp-dark) 100%);
}

.exit-popup-ctas .btn-telegram-popup {
  background: linear-gradient(135deg, var(--color-telegram) 0%, var(--color-telegram-dark) 100%);
}

.exit-popup-ctas .btn-popup:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.exit-popup-skip {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 16px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.exit-popup-skip:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ===========================================
   SOCIAL PROOF NOTIFICATIONS
   =========================================== */
.social-proof-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--bg-dark-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: 320px;
}

.social-proof-notification.show {
  transform: translateX(0);
}

.social-proof-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-whatsapp) 0%, var(--color-telegram) 100%);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.social-proof-content {
  flex: 1;
  min-width: 0;
}

.social-proof-text {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-proof-text strong {
  color: var(--color-yellow);
}

.social-proof-time {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.social-proof-icon {
  font-size: 1.3rem;
  color: var(--color-whatsapp);
}

@media (max-width: 768px) {
  .social-proof-notification {
    left: 10px;
    right: 10px;
    bottom: 90px; /* Acima do sticky CTA */
    max-width: none;
  }
}

/* ===========================================
   YOUTUBE FACADE (LAZY LOAD)
   =========================================== */
.youtube-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-dark-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.youtube-facade-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.youtube-facade:hover .youtube-facade-thumb {
  transform: scale(1.05);
}

.youtube-facade-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.youtube-facade:hover .youtube-facade-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 0, 0, 1);
}

.youtube-facade-play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}

.youtube-facade-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

/* ===========================================
   TYPING ANIMATION
   =========================================== */
.typing-container {
  display: inline;
}

.typing-text {
  border-right: 3px solid var(--color-yellow);
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: var(--color-yellow); }
}

/* ===========================================
   CONFETTI ANIMATION (MICRO-INTERACTIONS)
   =========================================== */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
}

@keyframes confetti-fall {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg);
  }
}

/* ===========================================
   COUNTER LIVE BADGE
   =========================================== */
.live-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: #fff;
  margin-top: 20px;
}

.live-counter-dot {
  width: 8px;
  height: 8px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.live-counter-number {
  font-weight: 700;
  color: var(--color-whatsapp);
}
