/* ═══════════════════════════════════════════════════════════════
   FABY SHOP - CSS Premium
   Free Fire Diamond Store
═══════════════════════════════════════════════════════════════ */

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

:root {
  --primary: #7c3aed;
  --primary-light: #a855f7;
  --secondary: #f97316;
  --secondary-light: #fb923c;
  --accent: #06b6d4;
  --gold: #f59e0b;
  --bg-darkest: #04020f;
  --bg-dark: #0a0518;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(124, 58, 237, 0.4);
  --text-primary: #f0e6ff;
  --text-secondary: rgba(240, 230, 255, 0.65);
  --text-muted: rgba(240, 230, 255, 0.4);
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-ui: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-glow-purple: 0 0 40px rgba(124, 58, 237, 0.35);
  --shadow-glow-orange: 0 0 40px rgba(249, 115, 22, 0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ─── NOTIFICATION BADGE ─── */
.notification-badge {
  background-color: #ef4444;
  /* Vermelho vivo */
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* ─── PARTICLES ─── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* ─── GRADIENT TEXT ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(4, 2, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.logo-garena-icon {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.8));
  animation: pulse-glow 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-glow {

  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.8));
  }

  50% {
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 1));
  }
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.logo-highlight {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(124, 58, 237, 0.15);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  flex-shrink: 0;
  transition: var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 24px 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ─── HERO SLIDER ─── */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 0.45;
}

/* Logo Free Fire no Hero */
.hero-ff-logo {
  display: block;
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: brightness(1) drop-shadow(0 0 14px rgba(0, 220, 220, 0.6));
  margin-top: -4px;
  margin-left: -6px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(4, 2, 15, 0.95) 0%,
      rgba(10, 5, 24, 0.85) 40%,
      rgba(10, 5, 24, 0.4) 70%,
      rgba(4, 2, 15, 0.7) 100%);
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
  position: relative;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-left {
  flex: 1;
  min-width: 300px;
}

.hero-right {
  flex: 0 1 350px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: calc(max(24px, (100vw - 1280px)/2));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: var(--primary-light);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  animation: fade-in-up 0.6s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: fade-in-up 0.7s ease 0.1s both;
}

.hero-subtitle {
  font-family: var(--font-ui);
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fade-in-up 0.7s ease 0.2s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  animation: fade-in-up 0.7s ease 0.3s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.3px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-in-up 0.7s ease 0.4s both;
}

.hero-character {
  position: absolute;
  right: max(24px, (100vw - 1280px)/2);
  bottom: 0;
  z-index: 1;
  width: min(480px, 45vw);
  animation: fade-in-right 0.9s ease 0.3s both;
}

.character-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 0 40px rgba(124, 58, 237, 0.5));
}

.character-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.6), transparent);
  border-radius: 50%;
  filter: blur(20px);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-dot {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {

  0%,
  100% {
    top: 5px;
    opacity: 1;
  }

  50% {
    top: 18px;
    opacity: 0.5;
  }
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), #9b30d9);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.55);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-secondary:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
}

.btn-large {
  font-size: 17px;
  padding: 18px 36px;
}

/* ─── FEATURES BAND ─── */
.features-band {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(249, 115, 22, 0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  overflow: hidden;
}

.features-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent, var(--bg-dark));
  pointer-events: none;
  z-index: 1;
}

.features-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.feature-pill:hover {
  color: var(--text-primary);
}

.feature-icon {
  font-size: 18px;
}

.feature-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ─── SECTION COMMONS ─── */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--primary-light);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-family: var(--font-ui);
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── PACKAGES ─── */
.packages-section {
  padding: 100px 24px;
  position: relative;
  z-index: 2;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.package-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: pointer;
}

.package-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(124, 58, 237, 0.2);
}

.package-card.popular {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.05);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.1);
}

.package-card.popular:hover {
  border-color: rgba(245, 158, 11, 0.7);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 158, 11, 0.3), 0 0 60px rgba(245, 158, 11, 0.15);
}

.package-card.mega-pkg {
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.05);
}

.package-bg-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.25;
  pointer-events: none;
}

.glow-blue {
  background: #3b82f6;
}

.glow-orange {
  background: var(--secondary);
}

.glow-gold {
  background: var(--gold);
}

.glow-purple {
  background: var(--primary);
}

.glow-cyan {
  background: var(--accent);
}

.glow-fire {
  background: #ef4444;
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--gold), #f97316);
  color: #0a0518;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.package-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pkg-diamond-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.7));
  animation: diamond-float 3s ease-in-out infinite;
}

@keyframes diamond-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.pkg-diamond-count {
  display: flex;
  flex-direction: column;
}

.pkg-amount {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pkg-unit {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.package-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.package-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.package-benefits li {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-secondary);
}

/* ─── BOTÃO ⚠️ PISCANTE DE INFORMAÇÃO ─── */
.btn-pkg-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 14px;
  background: rgba(220, 38, 38, 0.1);
  border: 1.5px solid rgba(220, 38, 38, 0.5);
  border-radius: 10px;
  color: #fca5a5;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  animation: btn-alert-pulse 1.8s ease-in-out infinite;
  margin-top: 4px;
}

.btn-pkg-info:hover {
  background: rgba(220, 38, 38, 0.22);
  transform: scale(1.02);
}

.btn-pkg-info-danger {
  background: rgba(220, 38, 38, 0.18);
  border-color: rgba(220, 38, 38, 0.75);
  color: #fca5a5;
  animation: btn-alert-pulse-strong 1.1s ease-in-out infinite;
}

@keyframes btn-alert-pulse {

  0%,
  100% {
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }

  50% {
    border-color: rgba(220, 38, 38, 0.85);
    box-shadow: 0 0 10px 2px rgba(220, 38, 38, 0.25);
  }
}

@keyframes btn-alert-pulse-strong {

  0%,
  100% {
    border-color: rgba(220, 38, 38, 0.6);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }

  50% {
    border-color: rgba(255, 50, 50, 1);
    box-shadow: 0 0 16px 4px rgba(220, 38, 38, 0.4);
  }
}

@keyframes modal-pop {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.package-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-from {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
}

.price-from s {
  text-decoration-color: rgba(240, 230, 255, 0.3);
}

.price-current {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #22c55e;
  letter-spacing: -0.5px;
  line-height: 1;
}

.btn-buy {
  display: block;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), #9b30d9);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  transition: var(--transition);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

/* ─── CARD DE CONTA (MARKETPLACE) ─── */
.account-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.account-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.acc-image-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.acc-status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.badge-status-disponivel {
  background: #22c55e;
  color: #fff;
}

.badge-status-reservada {
  background: #eab308;
  color: #000;
}

.badge-status-vendido {
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
}

.acc-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.account-card:hover .acc-image-container img {
  transform: scale(1.05);
}

.acc-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}

.acc-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 0;
}

.acc-desc-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.acc-desc {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.acc-desc-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.acc-desc-expanded {
  display: block;
}

.btn-read-more {
  background: none;
  border: none;
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 0 0 0;
  margin-top: 5px;
}

.btn-read-more:hover {
  text-decoration: underline;
}

.acc-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

.acc-price-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.btn-yt {
  background: rgba(255, 0, 0, 0.1);
  color: #ff4d4d;
  border: 1px solid rgba(255, 0, 0, 0.3);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 600;
  transition: all 0.3s;
}

.btn-yt:hover {
  background: rgba(255, 0, 0, 0.2);
}

.btn-buy::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
}

.btn-buy:hover::after {
  opacity: 1;
}

.btn-buy-popular {
  background: linear-gradient(135deg, var(--gold), #f97316);
  color: #0a0518;
}

.btn-buy-popular:hover {
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
}

.btn-buy-mega {
  background: linear-gradient(135deg, #ef4444, var(--secondary));
}

.btn-buy-mega:hover {
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.5);
}

.packages-note {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--text-muted);
}

.packages-note a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.packages-note a:hover {
  color: var(--secondary);
}

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.05), transparent);
  position: relative;
  z-index: 2;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 0 0 2px 2px;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.3);
  background: var(--bg-card-hover);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(249, 115, 22, 0.1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.step-desc {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  display: none;
}

.payment-section {
  text-align: center;
}

.payment-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: default;
}

.payment-pill:hover {
  border-color: rgba(124, 58, 237, 0.4);
  color: var(--text-primary);
  background: rgba(124, 58, 237, 0.1);
}

/* ─── GUARANTEES ─── */
.guarantees-section {
  padding: 80px 24px;
  position: relative;
  z-index: 2;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.guarantee-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(249, 115, 22, 0.05));
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}

.guarantee-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: var(--shadow-glow-purple);
}

.guarantee-icon-wrap {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.5));
}

.guarantee-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.guarantee-card p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: 100px 24px;
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.3);
  background: var(--bg-card-hover);
}

.test-stars {
  font-size: 16px;
  letter-spacing: 2px;
}

.test-text {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.test-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.test-game {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── FINAL CTA ─── */
.final-cta-section {
  padding: 100px 24px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(249, 115, 22, 0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.25), transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.final-cta-subtitle {
  font-family: var(--font-ui);
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.contact-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 20px;
}

.contact-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.contact-link-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow-purple);
}

.contact-link-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  flex-shrink: 0;
}

.contact-link-name {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-whatsapp-large:hover {
  background: #22c55e;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* ─── FOOTER ─── */
.footer {
  padding: 60px 24px 32px;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-desc {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 14px;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-light);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-btn {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.instagram-btn {
  background: rgba(228, 64, 95, 0.15);
  color: #e4405f;
  border: 1px solid rgba(228, 64, 95, 0.3);
}

.instagram-btn:hover {
  background: rgba(228, 64, 95, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(228, 64, 95, 0.3);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  width: 100%;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 12px !important;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: float-bounce 3s ease-in-out infinite;
}

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

@keyframes float-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .float-tooltip {
  opacity: 1;
}

.float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.85);
}

/* ─── ANIMATIONS ─── */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-character {
    display: none;
  }

  .hero-left {
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }

  .hero-right {
    margin: 0 auto;
  }

  .hero-container {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .stat-item:first-child {
    padding-left: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: auto;
    width: auto;
    min-width: 220px;
    background: rgba(4, 2, 15, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.4s ease-in-out;
    border-radius: 12px;
    border: 1px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    gap: 8px;
    opacity: 0;
    display: flex;
    transform-origin: top right;
  }

  .nav-links.open {
    max-height: 400px;
    padding: 16px;
    border-color: var(--border);
    opacity: 1;
  }

  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    flex-wrap: wrap;
    padding: 16px 20px;
    position: relative;
  }

  .nav-link {
    padding: 10px 20px;
  }

  .features-band-inner {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .features-band::before {
    display: none;
  }

  .stat-item,
  .stat-item:first-child {
    padding: 0 16px;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 12px;
    margin: 0;
  }

  /* Ajustes para os cards ficarem bons em 2 colunas no celular */
  .package-card,
  .account-card {
    padding: 12px;
  }

  .package-header {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .pkg-diamond-count {
    align-items: center;
  }

  .pkg-amount {
    font-size: 26px;
  }

  .pkg-unit {
    font-size: 10px;
  }

  .package-name {
    font-size: 16px;
    text-align: center;
  }

  .package-benefits {
    font-size: 11px;
  }

  .package-benefits li {
    padding: 4px 0;
  }

  .price-current {
    font-size: 22px;
    text-align: center;
  }

  .btn-buy {
    font-size: 13px;
    padding: 10px;
  }

  /* Ajustes das Contas */
  .acc-content {
    padding: 10px;
    gap: 8px;
  }

  .acc-image-container {
    height: 120px;
  }

  .acc-title {
    font-size: 1rem;
  }

  .acc-price {
    font-size: 1rem;
  }

  .acc-status-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .contact-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .contact-link-card {
    padding: 20px 12px;
  }

  .contact-link-icon {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .btn-whatsapp-large {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    font-size: 15px;
    padding: 14px 24px;
  }

  .footer-links {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 70px 16px 36px;
  }

  .hero-title {
    font-size: 32px;
  }

  .packages-section,
  .how-section,
  .final-cta-section {
    padding: 72px 16px;
  }
}

/* ─── BUSCADOR DE NICK (HERO) ─── */
.hero-id-search {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 16px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.hero-id-search:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(124, 58, 237, 0.2);
}

.hero-id-search h3 {
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.search-box-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#ff-id-input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1rem;
  font-family: var(--font-ui);
  text-align: center;
  outline: none;
  transition: var(--transition);
}

#ff-id-input:focus {
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.1);
}

.btn-search-id {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-search-id:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

.search-result-box {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid #22c55e;
  color: #22c55e;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.search-result-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

/* ═══════════════════════════════════════════════════════════════
   CHECKOUT MODAL
═══════════════════════════════════════════════════════════════ */
.checkout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 2, 15, 0.9);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.checkout-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal {
  background: var(--bg-dark);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-glow-purple);
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
  padding: 2rem;
}

.checkout-overlay.active .checkout-modal {
  transform: translateY(0) scale(1);
}

.checkout-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.checkout-close:hover {
  color: var(--text-primary);
}

.checkout-header {
  text-align: center;
  margin-bottom: 2rem;
}

.checkout-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

#checkout-pkg-name {
  color: var(--primary-light);
  font-size: 1.1rem;
  font-weight: 600;
}

.checkout-price {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.checkout-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.checkout-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.step {
  background: var(--bg-dark);
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.step.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary-light);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
}

.checkout-step-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.checkout-step-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.2);
}

.form-group select option {
  background: var(--bg-darkest);
  color: var(--text-primary);
}

.bank-details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.bank-warn {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.4;
  text-align: center;
}

.bank-info-content p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.bank-info-content strong {
  color: var(--primary-light);
}

.bank-info-content .copyable {
  cursor: pointer;
  color: var(--accent);
  transition: var(--transition);
}

.bank-info-content .copyable:hover {
  color: #fff;
  text-decoration: underline;
}

.receipt-info {
  text-align: center;
  padding: 1rem;
}

.receipt-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.receipt-info h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.receipt-warn {
  font-size: 0.9rem;
  color: var(--secondary-light);
  margin-top: 1rem;
  background: rgba(249, 115, 22, 0.1);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.checkout-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.checkout-actions button {
  flex: 1;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebc59;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  margin-right: 0.5rem;
}

.w-100 {
  width: 100%;
}

.mt-2 {
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   CHATBOT STYLES
═══════════════════════════════════════════════════════════════ */

/* Botão Flutuante do Chatbot */
.chatbot-float {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  /* Fica ao lado do botão do whatsapp (que está no right: 2rem) */
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-glow-purple 2s infinite;
}

.chatbot-float:hover {
  transform: translateY(-5px) scale(1.05);
}

@keyframes pulse-glow-purple {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(124, 58, 237, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  }
}

/* Janela do Chatbot */
.chatbot-window {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 350px;
  max-width: 90vw;
  height: 500px;
  max-height: 80vh;
  background: var(--bg-darkest);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), var(--shadow-glow-purple);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
  overflow: hidden;
}

.chatbot-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Cabeçalho do Chatbot */
.chatbot-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.chatbot-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chatbot-close-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.chatbot-close-btn:hover {
  transform: scale(1.2);
}

/* Área de Mensagens */
.chatbot-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(10, 5, 24, 0.95);
}

.chat-bubble {
  max-width: 85%;
  padding: 0.8rem 1rem;
  border-radius: 15px;
  font-size: 0.95rem;
  line-height: 1.4;
  animation: fadeInBubble 0.3s ease;
}

@keyframes fadeInBubble {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-bubble.bot {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  color: var(--text-primary);
}

.chat-bubble.user {
  background: var(--primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

/* Área de Opções */
.chatbot-options {
  padding: 1rem;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chatbot-option-btn {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--text-primary);
  padding: 0.6rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.chatbot-option-btn:hover {
  background: rgba(124, 58, 237, 0.2);
}

.chatbot-option-btn.special {
  border-color: #25d366;
  color: #25d366;
}

.chatbot-option-btn.special:hover {
  background: rgba(37, 211, 102, 0.1);
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 5px;
  padding: 12px 18px !important;
  min-width: 60px;
}

.typing-indicator .dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-indicator .dot:nth-child(1) {
  animation-delay: 0s;
}

.typing-indicator .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .chatbot-window {
    right: 1rem;
    bottom: 5rem;
    width: calc(100% - 2rem);
  }

  .chatbot-float {
    bottom: 1rem;
    right: 5rem;
    width: 50px;
    height: 50px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   GOOGLE BUTTON & DIVIDER
═══════════════════════════════════════════════════════════════ */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border);
}

.auth-divider span {
  padding: 0 10px;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: #333;
  border: 1px solid #ddd;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-ui);
  cursor: pointer;
  transition: var(--transition);
}

.btn-google:hover {
  background: #f1f1f1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ═══════════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
═══════════════════════════════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  pointer-events: none;
  /* Let clicks pass through if they miss */
}

.toast {
  background: rgba(15, 10, 30, 0.95);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--secondary);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 16px 20px;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInToast 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, fadeOutToast 0.5s ease 4.5s forwards;
  max-width: 320px;
  word-wrap: break-word;
  pointer-events: auto;
}

.toast.fade-out {
  animation: fadeOutToast 0.5s ease forwards;
}

.toast-icon {
  font-size: 24px;
  filter: drop-shadow(0 0 5px var(--secondary));
}

@keyframes slideInToast {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOutToast {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ─── CODIGUINS CARDS ─── */
.codigin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.codigin-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
}

.codigin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.codigin-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: #22c55e;
  color: white;
  padding: 5px 30px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.codigin-badge.pago {
  background: #a855f7;
}

.codigin-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-top: 10px;
  margin-bottom: 5px;
}

.codigin-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.codigin-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: bold;
}

.codigin-code-box {
  background: rgba(0,0,0,0.3);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  font-family: monospace;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--primary-light);
  margin-bottom: 15px;
  user-select: all;
  position: relative;
}

.codigin-code-box.hidden-code {
  color: var(--text-muted);
  filter: blur(2px);
  user-select: none;
}

.btn-codigin {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: none;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn-codigin.gratis {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.btn-codigin.gratis:hover {
  background: rgba(34, 197, 94, 0.2);
}

.btn-codigin.pago {
  background: var(--gradient);
  color: white;
}

.btn-codigin.pago:hover {
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

@media (max-width: 768px) {
  .toast-container {
    bottom: auto;
    top: 20px;
    /* On mobile, top toasts are usually better to not overlap with bottom floating chat */
    right: 10px;
    left: 10px;
  }

  .toast {
    max-width: 100%;
    animation: slideDownToast 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, fadeOutUpToast 0.5s ease 4.5s forwards;
  }

  @keyframes slideDownToast {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes fadeOutUpToast {
    0% {
      transform: translateY(0);
      opacity: 1;
    }

    100% {
      transform: translateY(-100%);
      opacity: 0;
    }
  }
}