/* Reset e Variáveis - ULTRA PREMIUM */
:root {
  --primary-dark: #0A3D91;
  --primary: #1E6BE3;
  --accent: #FFD700;
  --accent-bright: #FFC400;
  --bg: #0A0E27;
  --bg-secondary: #1A1F3A;
  --bg-tertiary: #252A47;
  --text: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.7);
  --white: #FFFFFF;
  --success: #10B981;
  --danger: #EF4444;
  --warning: #F59E0B;
  --glow-gold: rgba(255, 215, 0, 0.4);
  --glow-blue: rgba(30, 107, 227, 0.3);
  
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.3), 0 0 80px rgba(255, 215, 0, 0.15);
  --shadow-glow-blue: 0 0 40px rgba(30, 107, 227, 0.3), 0 0 80px rgba(30, 107, 227, 0.15);
  --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 100px rgba(255, 215, 0, 0.1);
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header - ULTRA PREMIUM */
.header {
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

@media (max-width: 768px) {
  .header-content {
    padding: 0.5rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
}

.logo img {
  height: 48px;
  width: auto;
}

.logo-emoji {
  font-size: 2.5rem;
  display: inline-block;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5)) drop-shadow(0 0 24px rgba(255, 215, 0, 0.3));
  transition: all 0.3s ease;
}

.logo-emoji:hover {
  transform: scale(1.05) rotate(3deg);
  filter: drop-shadow(0 0 16px rgba(255, 215, 0, 0.6)) drop-shadow(0 0 32px rgba(255, 215, 0, 0.4));
}

@media (max-width: 768px) {
  .logo-emoji {
    font-size: 2rem;
  }
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.version-badge {
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.375rem 0.75rem;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transition: width 0.3s ease;
}

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

.nav-link:hover::after {
  width: 100%;
}

.admin-link {
  color: var(--accent);
  font-weight: 700;
}

/* Botão de Voltar */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, #FFC400 100%);
  color: var(--bg);
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 210, 0, 0.3);
}

.btn-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 210, 0, 0.5);
  background: linear-gradient(135deg, #FFC400 0%, var(--accent) 100%);
}

/* Hero VIP - ULTRA PREMIUM */
.hero-vip {
  background: 
    radial-gradient(ellipse at top, #1E6BE3 0%, #0A3D91 30%, #0A0E27 70%);
  color: var(--white);
  padding: 3rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-vip {
    padding: 1.25rem 0 1.5rem;
    min-height: auto;
  }
}

/* Efeito de glows premium */
.hero-vip::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  background: 
    radial-gradient(ellipse at center, var(--glow-gold) 0%, transparent 60%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
  filter: blur(80px);
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.badge-vip {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700 0%, #FFC400 100%);
  color: #0A0E27;
  padding: 0.625rem 1.75rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-glow);
  position: relative;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .badge-vip {
    font-size: 0.625rem;
    padding: 0.5rem 1.125rem;
    margin-bottom: 0.75rem;
  }
}

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

@keyframes glow {
  0%, 100% { 
    box-shadow: 
      0 10px 40px rgba(255, 210, 0, 0.5),
      0 0 60px rgba(255, 210, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  50% { 
    box-shadow: 
      0 10px 50px rgba(255, 210, 0, 0.7),
      0 0 80px rgba(255, 210, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.8),
    0 0 60px var(--glow-gold);
  position: relative;
  z-index: 1;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    line-height: 1.25;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 
      0 4px 20px rgba(0, 0, 0, 0.5),
      0 0 40px rgba(255, 210, 0, 0.3);
  }
  50% {
    text-shadow: 
      0 4px 25px rgba(0, 0, 0, 0.6),
      0 0 60px rgba(255, 210, 0, 0.5);
  }
}

.hero-sub {
  font-size: 1.125rem;
  opacity: 0.9;
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-sub {
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.4;
  }
}

/* hero-features removido */

/* Contadores - ULTRA PREMIUM DARK */
.counters {
  padding: 2.5rem 0;
  background: var(--bg);
  position: relative;
}

@media (max-width: 768px) {
  .counters {
    padding: 1rem 0;
  }
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

.counter-card {
  background: rgba(26, 31, 58, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  box-shadow: 
    var(--shadow-premium),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .counter-card {
    padding: 1.25rem 0.875rem;
  }
}

.counter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.8;
}

.counter-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 90px rgba(255, 210, 0, 0.3),
    0 0 0 1px rgba(255, 210, 0, 0.3);
  border-color: rgba(255, 210, 0, 0.5);
}

.counter-card:hover::after {
  width: 300px;
  height: 300px;
}

.counter-value {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent) 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', monospace;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px var(--glow-gold));
}

@media (max-width: 768px) {
  .counter-value {
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
  }
}

@keyframes countPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.counter-label {
  font-family: 'Playfair Display', serif;
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .counter-label {
    font-size: 0.8125rem;
  }
}

.countdown {
  font-family: 'Courier New', monospace;
  letter-spacing: 0.2em;
  font-size: 4rem;
  font-weight: 900;
}

/* Animação para últimos 10 segundos - ULTRA PREMIUM OTIMIZADA */
.countdown.urgent {
  animation: pulse-urgent 0.6s ease-in-out infinite;
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 4.5rem;
  filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.6));
  will-change: transform;
}

@keyframes pulse-urgent {
  0%, 100% { 
    transform: scale(1);
  }
  50% { 
    transform: scale(1.1);
  }
}

/* Formulário - DARK PREMIUM */
.form-section {
  padding: 2.5rem 0;
  background: var(--bg);
  position: relative;
}

@media (max-width: 768px) {
  .form-section {
    padding: 1rem 0 1.5rem;
  }
}

.form-card {
  background: rgba(26, 31, 58, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .form-card {
    padding: 1.25rem;
  }
}

.form-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 107, 227, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .form-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .form-group {
    margin-bottom: 0.875rem;
  }
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(255, 210, 0, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  background: rgba(37, 42, 71, 0.5);
  color: var(--text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .form-group input,
  .form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(255, 210, 0, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 210, 0, 0.2);
  transform: translateY(-2px);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 210, 0, 0.05);
  padding: 1.25rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 210, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .checkbox-group {
    padding: 1rem;
    gap: 0.625rem;
  }
  
  .checkbox-group label {
    font-size: 0.875rem;
  }
}

.checkbox-group:hover {
  background: rgba(255, 210, 0, 0.1);
  border-color: rgba(255, 210, 0, 0.3);
}

.checkbox-group input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin-top: 0;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: normal;
}

.checkbox-group a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
}

.checkbox-group a:hover {
  text-decoration: underline;
  color: var(--white);
}

/* Botões - ULTRA PREMIUM */
.btn-primary {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, var(--accent) 0%, #FFC400 100%);
  color: #0A0E27;
  border: none;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .btn-primary {
    padding: 1.125rem 1.75rem;
    font-size: 1rem;
  }
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover::after {
  width: 500px;
  height: 500px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFC400 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 0 50px rgba(255, 215, 0, 0.5),
    0 0 100px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:focus {
  outline: none;
  box-shadow: 
    0 0 0 4px rgba(30, 107, 227, 0.4),
    0 15px 50px rgba(30, 107, 227, 0.5);
}

.btn-secondary {
  padding: 0.75rem 1.5rem;
  background: var(--gray-100);
  color: var(--text);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--gray-200);
}

.btn-warning {
  padding: 0.75rem 1.5rem;
  background: var(--warning);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-warning:hover {
  background: #D97706;
}

.btn-success {
  padding: 0.75rem 1.5rem;
  background: var(--success);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-success:hover {
  background: #059669;
}

.btn-danger {
  padding: 0.75rem 1.5rem;
  background: var(--danger);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-danger:hover {
  background: #DC2626;
}

.btn-whatsapp {
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  color: var(--white);
  border: none;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #25D366 100%);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:active {
  transform: translateY(-1px);
}

/* Winner Spotlight - DARK PREMIUM COM ANIMAÇÕES ÉPICAS */
.winner-spotlight {
  padding: 5rem 0;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
  position: relative;
  overflow: hidden;
}

.winner-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 210, 0, 0.2) 0%, transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}

.winner-card {
  background: 
    linear-gradient(135deg, #FFD200 0%, #FFC400 50%, #FFD700 100%);
  padding: 4rem 3rem;
  border-radius: 32px;
  text-align: center;
  box-shadow: 
    0 40px 120px rgba(255, 210, 0, 0.6),
    0 0 200px rgba(255, 210, 0, 0.3),
    inset 0 0 60px rgba(255, 255, 255, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  animation: winnerReveal 0.6s ease-out, winnerGlow 3s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes winnerReveal {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes winnerGlow {
  0%, 100% {
    box-shadow: 
      0 40px 120px rgba(255, 210, 0, 0.6),
      0 0 200px rgba(255, 210, 0, 0.3),
      inset 0 0 60px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 
      0 40px 150px rgba(255, 210, 0, 0.8),
      0 0 300px rgba(255, 210, 0, 0.5),
      inset 0 0 80px rgba(255, 255, 255, 0.3);
  }
}

.winner-card::before {
  content: '🏆';
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 150px;
  opacity: 0.1;
  animation: rotate 10s linear infinite;
}

.winner-badge {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: bounce 2s ease-in-out infinite;
}

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

.winner-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--primary-dark);
  text-shadow: 0 4px 20px rgba(10, 61, 145, 0.2);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.winner-name {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(10, 61, 145, 0.3);
  animation: fadeInUp 0.5s ease-out 0.3s both;
  position: relative;
  z-index: 1;
  will-change: transform, opacity;
}

.winner-number {
  font-size: 6rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin: 2rem 0;
  font-family: 'Courier New', monospace;
  text-shadow: 0 4px 20px rgba(10, 61, 145, 0.3);
  animation: numberPulse 2s ease-in-out infinite 0.4s;
  position: relative;
  z-index: 1;
  will-change: transform;
}

@keyframes numberPulse {
  0%, 100% { 
    transform: scale(1);
  }
  50% { 
    transform: scale(1.03);
  }
}

.winner-disclaimer {
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

/* Closed Banner - DARK PREMIUM */
.closed-banner {
  padding: 5rem 0;
  background: linear-gradient(180deg, #1A1F3A 0%, #0A0E27 100%);
}

.closed-card {
  background: rgba(26, 31, 58, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4rem 3rem;
  border-radius: 24px;
  text-align: center;
  border: 3px solid rgba(255, 255, 255, 0.1);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.closed-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #E5E7EB 0%, #9CA3AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.closed-card p {
  font-family: 'Inter', sans-serif;
  color: rgba(156, 163, 175, 0.9);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Confirmação - DARK PREMIUM */
.confirmation {
  padding: 5rem 0;
  background: linear-gradient(180deg, #1A1F3A 0%, #0A0E27 100%);
}

.confirmation-card {
  background: rgba(26, 31, 58, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4rem 3rem;
  border-radius: 32px;
  text-align: center;
  box-shadow: 
    0 40px 120px rgba(16, 185, 129, 0.4),
    0 0 200px rgba(16, 185, 129, 0.2);
  max-width: 550px;
  margin: 0 auto;
  border: 3px solid rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
  animation: confirmationReveal 0.5s ease-out;
  will-change: transform, opacity;
}

@keyframes confirmationReveal {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.confirmation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--success) 0%, #10B981 100%);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--success) 0%, #10B981 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
  animation: successPulse 0.5s ease-out;
  will-change: transform, opacity;
}

@keyframes successPulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-card h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--success) 0%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.confirmation-number {
  font-size: 4.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 2rem 0;
  font-family: 'Courier New', monospace;
  animation: numberReveal 0.5s ease-out 0.2s both;
  will-change: transform, opacity;
}

@keyframes numberReveal {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.confirmation-text {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 600;
}

/* Regulamento - DARK PREMIUM */
.regulamento-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
}

.regulamento-card {
  background: rgba(26, 31, 58, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 210, 0, 0.2);
}

.regulamento-card h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, #FFC400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.regulamento-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.regulamento-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.regulamento-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.regulamento-content li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.lojas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.loja {
  background: rgba(37, 42, 71, 0.5);
  padding: 1.5rem;
  border-radius: 16px;
  border: 2px solid rgba(255, 210, 0, 0.1);
}

.loja h3 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.regulamento-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 210, 0, 0.2);
  text-align: center;
  color: var(--text-muted);
}

/* Admin Login - DARK PREMIUM */
.admin-login {
  padding: 4rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
}

.login-card {
  background: rgba(26, 31, 58, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
  max-width: 450px;
  margin: 0 auto;
  border: 2px solid rgba(255, 210, 0, 0.2);
}

.login-card h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, #FFC400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
}

.error-message {
  color: var(--danger);
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  display: none;
  font-weight: 600;
}

.error-message.show {
  display: block;
  animation: shake 0.5s ease-in-out;
}

/* Admin Dashboard - DARK PREMIUM */
.admin-dashboard {
  padding: 3rem 0;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 50%, #0A0E27 100%);
  min-height: 100vh;
}

.admin-dashboard h1 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.admin-card {
  background: rgba(26, 31, 58, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 210, 0, 0.1);
  margin-bottom: 2.5rem;
  border: 2px solid rgba(255, 210, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.admin-card:hover {
  box-shadow: 
    0 15px 50px rgba(255, 210, 0, 0.3),
    0 0 0 1px rgba(255, 210, 0, 0.3);
  border-color: rgba(255, 210, 0, 0.4);
}

.admin-card h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.status-item {
  padding: 1.5rem;
  background: rgba(37, 42, 71, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 2px solid rgba(255, 210, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.status-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

.status-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 210, 0, 0.2);
  border-color: rgba(255, 210, 0, 0.4);
}

.status-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Winner Info Grid */
.winner-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.winner-info-item {
  padding: 1.5rem;
  background: linear-gradient(135deg, #FFD200 0%, #FFC400 100%);
  border-radius: 12px;
  border: 2px solid #FFB800;
}

.winner-info-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.winner-info-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
  word-break: break-word;
}

.winner-number-display {
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: 900;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(30, 107, 227, 0.1);
}

.table-container {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}

.admin-table thead {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.admin-table th {
  padding: 1.25rem 1rem;
  text-align: left;
  font-weight: 800;
  color: var(--white);
  border-bottom: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.admin-table tbody tr {
  transition: all 0.2s ease;
  background: rgba(37, 42, 71, 0.5);
}

.admin-table tbody tr:nth-child(even) {
  background: rgba(26, 31, 58, 0.5);
}

.admin-table tbody tr:hover {
  background: rgba(255, 210, 0, 0.1);
  transform: scale(1.01);
}

.admin-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(255, 210, 0, 0.1);
  font-weight: 500;
  color: var(--text-secondary);
}

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

.logs-container {
  max-height: 400px;
  overflow-y: auto;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
  padding: 1.5rem;
  border-radius: 16px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: #10B981;
  box-shadow: 
    inset 0 2px 10px rgba(0, 0, 0, 0.5),
    0 10px 30px rgba(10, 14, 39, 0.3);
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.logs-container::-webkit-scrollbar {
  width: 8px;
}

.logs-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.logs-container::-webkit-scrollbar-thumb {
  background: rgba(16, 185, 129, 0.5);
  border-radius: 10px;
}

.logs-container::-webkit-scrollbar-thumb:hover {
  background: rgba(16, 185, 129, 0.7);
}

/* Responsivo - ULTRA PREMIUM MOBILE-FIRST */
@media (max-width: 768px) {
  .hero-vip {
    padding: 4rem 0 6rem;
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2.75rem;
    line-height: 1.1;
  }
  
  .hero-sub {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
  
  .badge-vip {
    font-size: 0.9375rem;
    padding: 0.875rem 2rem;
  }
  
  /* hero-features removido */
  
  .counter-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .counter-card {
    padding: 2.5rem 1.5rem;
  }
  
  .counter-value {
    font-size: 4rem;
  }
  
  .countdown {
    font-size: 3rem;
  }
  
  .countdown.urgent {
    font-size: 3.5rem;
  }
  
  .form-card {
    padding: 3rem 2rem;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .btn-primary {
    font-size: 1.5rem;
    padding: 1.75rem 2rem;
  }
  
  .winner-number {
    font-size: 4.5rem;
  }
  
  .winner-name {
    font-size: 2rem;
  }
  
  .winner-title {
    font-size: 2.75rem;
  }
  
  .confirmation-number {
    font-size: 4rem;
  }
  
  .confirmation-card h2 {
    font-size: 2.25rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions button {
    width: 100%;
  }
}

/* Mobile Extra Small */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-sub {
    font-size: 1.125rem;
  }
  
  .counter-value {
    font-size: 3.5rem;
  }
  
  .countdown {
    font-size: 2.5rem;
  }
  
  .countdown.urgent {
    font-size: 3rem;
  }
  
  .btn-primary {
    font-size: 1.25rem;
    padding: 1.5rem 1.5rem;
  }
}

