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

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--bg-dark);
  color: var(--text, #eaeaea);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}

/* THEMES */

body.theme-neon1 {
  --bg-dark: #02020A;
  --bg-secondary: #0B0B15;
  --primary: #FF3131;
  --secondary: #FE019A;
  --accent: #4CC9F0;
}

body.theme-neon2 {
  --bg-dark: #2D002D;
  --bg-secondary: #001212;
  --primary: #00FFFF;
  --secondary: #39FF14;
  --accent: #4361EE;
}

body.theme-neon3 {
  --bg-dark: #0F0418;
  --bg-secondary: #0F0F1A;
  --primary: #FFEE00;
  --secondary: #39FF14;
  --accent: #F4A261;
}

body.theme-neon4 {
  --bg-dark: #0F0F1A;
  --bg-secondary: #222222;
  --primary: #00FFFF;
  --secondary: #BC13FE;
  --accent: #F4A261;
}

/* HERO */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, var(--bg-secondary), var(--bg-dark));
  text-align: center;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
}

.hero p {
  margin: 1rem 0;
  color: #9aa0a6;
}

.specialhero { padding:10px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.specialhero h1 { font-family: 'Orbitron', sans-serif; font-size: 3rem; color: var(--primary); text-shadow: 0 0 10px var(--primary); } 

/* LOGO */

.logo {
  width: 180px;
  max-width: 80%;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px var(--primary));
  transition: 0.3s;
}

.logo:hover {
  filter: drop-shadow(0 0 20px var(--primary));
  transform: scale(1.05);
}

/* BUTTON */

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: black;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 10px var(--primary);
  transition: 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--secondary);
}

.btn-disabled { padding: 10px 20px; background: #333; border: none; color: #777; border-radius: 6px; }
.btn-disabled:hover { color:white}

/* SECTIONS */

section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--secondary);
  margin-bottom: 20px;
}

/* EVENT CARD */

.card-evento {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.card-evento:hover {
  border: 1px solid var(--primary);
  box-shadow: 0 0 15px var(--secondary);
}

/* LIST */

ol {
  padding-left: 20px;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 30px;
  color: #9aa0a6;
}

/* 🎛️ THEME SWITCHER */

#theme-switcher {
  position: fixed;
  top: 20px;
  left: 0;
  z-index: 9999;
  font-family: 'Orbitron', sans-serif;
}

#theme-switcher .toggle {
  background: var(--primary);
  color: black;
  padding: 10px;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
}

#theme-switcher .themes {
  display: none;
  flex-direction: column;
  background: var(--bg-secondary);
  padding: 10px;
  border-radius: 0 8px 8px 0;
}

#theme-switcher.open .themes {
  display: flex;
}

#theme-switcher button {
  margin: 5px 0;
  padding: 8px;
  border: none;
  cursor: pointer;
  background: var(--bg-dark);
  color: white;
}

#theme-switcher button:hover {
  background: var(--primary);
  color: black;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(45deg, var(--secondary), var(--accent));
  color: black;
  text-decoration: none;
  border-radius: 8px;

  /* glow base */
  box-shadow: 0 0 8px var(--secondary);

  /* animação */
  animation: pulseGlow 2s infinite ease-in-out;
  transition: 0.2s;
}


@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px var(--secondary);
  }
  50% {
    box-shadow: 0 0 20px var(--primary);
  }
  100% {
    box-shadow: 0 0 5px var(--secondary);
  }
}
.form-card {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,255,255,0.2);
}

.card h2 {
  margin-bottom: 15px;
  color: var(--primary);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.form-row label {
  font-size: 0.9em;
  margin-bottom: 4px;
  color: #aaa;
}

.inline { display: flex; gap: 10px; align-items: center; }
.inline span { font-size: 0.8em }
.inline { padding-top: 5px; }

input[type=text] { color: #d0d0d0; background-color: #121225; border: 1px solid rgba(255,255,255,0.08); padding: 6px 8px; border-radius: 6px; outline: none; transition: 0.2s; }
input[type=text]:focus { border: 1px solid var(--primary); box-shadow: 0 0 8px var(--primary); }

input[type=radio] { accent-color: var(--primary); transform: scale(1.2); cursor: pointer; }
input[type=text]:hover { border: 1px solid var(--secondary); }

.field { width: 100%; }

.field.small { width: 50px; }

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

.total-card { text-align: center; }
.total-line { font-size: 1.4em; margin-bottom: 10px; }
.price { color: var(--accent); font-weight: bold; }
.hint { font-size: 0.9em; color: #aaa; margin-bottom: 15px; }

.event-card {
  max-width: 600px;
  margin: 10px auto;
  padding: 20px;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--accent);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255,0,255,0.2);
}
.event-header { margin-bottom: 15px; } 
.event-title { font-size: 1.6em; color: var(--accent); font-weight: bold; text-shadow: 0 0 10px var(--accent); font-family: 'Orbitron', sans-serif; }
.event-date { font-size: 0.95em; color: #aaa; margin-top: 5px; }
.event-body { font-size: 1em; line-height: 1.5; color: #ddd; }

.form-card .btn-secondary { animation: none; box-shadow: 0 0 8px var(--secondary); }

