/* 
   BOLÍVIA FEST - Estilos Globais Premium 
   Visual: Festival, DJ, Urbano, Dark/Neon (Preto, Roxo, Verde Neon, Branco)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Syne:wght@700;800&display=swap');

:root {
  --bg-color: #07050d;
  --bg-card: #130f22;
  --bg-card-hover: #1c1630;
  --text-color: #ffffff;
  --text-muted: #a69ebd;
  
  --purple-neon: #bc13fe;
  --purple-glow: rgba(188, 19, 254, 0.4);
  --purple-dark: #670891;
  
  --green-neon: #39ff14;
  --green-glow: rgba(57, 255, 20, 0.4);
  --green-dark: #1b9104;

  --black-matte: #100c1a;
  --border-color: rgba(188, 19, 254, 0.2);
  --border-green: rgba(57, 255, 20, 0.2);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(188, 19, 254, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(57, 255, 20, 0.1) 0%, transparent 40%);
  background-attachment: fixed;
}

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

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.glow-purple {
  text-shadow: 0 0 10px var(--purple-neon), 0 0 20px var(--purple-dark);
}

.glow-green {
  text-shadow: 0 0 10px var(--green-neon), 0 0 20px var(--green-dark);
}

/* Header / Navegação */
header {
  background-color: rgba(7, 5, 13, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo span {
  color: var(--green-neon);
  text-shadow: 0 0 8px var(--green-glow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green-neon);
  box-shadow: 0 0 8px var(--green-neon);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--green-neon);
}

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

.nav-btn {
  background-color: var(--purple-neon);
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  border: 1px solid transparent;
  box-shadow: 0 0 15px var(--purple-glow);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: transparent;
  border-color: var(--purple-neon);
  box-shadow: 0 0 25px var(--purple-neon);
  color: #ffffff;
}

/* Botões */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 4px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

.btn-neon-green {
  background-color: var(--green-neon);
  color: #000000;
  box-shadow: 0 0 15px var(--green-glow);
}

.btn-neon-green:hover {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 25px #ffffff, 0 0 10px var(--green-neon);
  transform: translateY(-2px);
}

.btn-neon-purple {
  background-color: var(--purple-neon);
  color: #ffffff;
  box-shadow: 0 0 15px var(--purple-glow);
}

.btn-neon-purple:hover {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid var(--purple-neon);
  box-shadow: 0 0 25px var(--purple-neon);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Layout Geral & Seções */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
}

.section-title span {
  color: var(--purple-neon);
  text-shadow: 0 0 10px var(--purple-glow);
}

.section-title::after {
  content: '//';
  display: block;
  color: var(--green-neon);
  font-size: 20px;
  margin-top: 10px;
  text-shadow: 0 0 8px var(--green-glow);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: calc(100vh - 80px);
  padding: 40px 20px;
}

.hero-content {
  flex: 1;
}

.hero-pretitle {
  color: var(--green-neon);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: inline-block;
  border-left: 3px solid var(--green-neon);
  padding-left: 10px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--purple-neon);
  box-shadow: 0 0 30px var(--purple-glow);
  transform: rotate(2deg);
  transition: all 0.5s ease;
  max-width: 420px;
}

.hero-image-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 0 45px var(--purple-neon), 0 0 20px var(--green-neon);
  border-color: var(--green-neon);
}

.hero-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Info Cards */
.info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-neon);
  box-shadow: 0 15px 30px rgba(57, 255, 20, 0.15);
}

.info-icon {
  font-size: 32px;
  color: var(--green-neon);
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.info-card p {
  color: var(--text-muted);
}

/* Line-Up (Artistas) */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.artist-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.artist-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 5, 13, 0.95) 90%);
  z-index: 1;
  pointer-events: none;
}

.artist-card:hover {
  transform: scale(1.03);
  border-color: var(--purple-neon);
  box-shadow: 0 0 25px var(--purple-glow);
}

.artist-img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.artist-card:hover .artist-img {
  transform: scale(1.08);
}

.artist-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 2;
  text-align: center;
}

.artist-name {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.artist-tag {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--green-neon);
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/* Convidados Especiais */
.guests-section {
  background-color: rgba(19, 15, 34, 0.5);
  border-y: 1px solid var(--border-color);
}

.guests-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.guest-card {
  background-color: var(--black-matte);
  border-left: 4px solid var(--purple-neon);
  padding: 30px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.guest-card.alt {
  border-left-color: var(--green-neon);
}

.guest-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guest-card p {
  color: var(--text-muted);
}

/* Instrução Pulseira */
.pulseira-section {
  text-align: center;
}

.pulseira-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--bg-card) 100%);
  border: 2px solid var(--purple-neon);
  box-shadow: 0 0 30px var(--purple-glow);
  border-radius: 16px;
  padding: 50px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.pulseira-banner h3 {
  font-size: 28px;
  color: var(--green-neon);
  margin-bottom: 20px;
  text-shadow: 0 0 8px var(--green-glow);
}

.pulseira-banner p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ffffff;
}

.pulseira-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.pulseira-step {
  background-color: rgba(7, 5, 13, 0.6);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.pulseira-step-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--purple-neon);
  margin-bottom: 10px;
}

/* FAQ (Accordion) */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--green-neon);
  transition: transform 0.3s ease;
}

.faq-item.active {
  border-color: var(--purple-neon);
  box-shadow: 0 0 15px var(--purple-glow);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
  color: var(--purple-neon);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px 20px;
  max-height: 200px;
}

/* Página de Ingressos */
.ticket-section {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.ticket-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ticket-info-card {
  flex: 1;
  background-color: var(--bg-card);
  border: 2px solid var(--purple-neon);
  box-shadow: 0 0 25px var(--purple-glow);
  padding: 40px;
  border-radius: 12px;
}

.ticket-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.ticket-tag {
  background-color: var(--green-neon);
  color: #000000;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.ticket-price {
  font-size: 40px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--green-neon);
  margin-top: 10px;
}

.ticket-price span:not(.wl-ticket-price) {
  font-size: 16px;
  color: var(--text-muted);
}

.ticket-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.ticket-features {
  list-style: none;
  margin-bottom: 35px;
}

.ticket-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticket-features li::before {
  content: '✓';
  color: var(--green-neon);
  font-weight: bold;
}

.purchase-control {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.quantity-selector {
  display: flex;
  border: 1px solid var(--purple-neon);
  border-radius: 4px;
  overflow: hidden;
}

.quantity-btn {
  background-color: transparent;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background-color: var(--purple-neon);
}

.quantity-input {
  width: 50px;
  border: none;
  background-color: transparent;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Outfit', sans-serif;
}

.info-alert {
  background-color: rgba(188, 19, 254, 0.1);
  border-left: 4px solid var(--purple-neon);
  padding: 15px;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  margin-top: 25px;
}

.info-alert strong {
  color: var(--purple-neon);
}

/* Formulários (Login / Cadastro) */
.form-container {
  max-width: 500px;
  margin: 60px auto;
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.form-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  background-color: var(--black-matte);
  border: 1px solid var(--border-color);
  padding: 12px 15px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-neon);
  box-shadow: 0 0 10px var(--green-glow);
}

.form-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: var(--text-muted);
}

.form-footer a {
  color: var(--green-neon);
  font-weight: bold;
}

.google-btn {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  padding: 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
  border: none;
  transition: all 0.3s ease;
}

.google-btn:hover {
  background-color: #f1f1f1;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Área do Cliente ("Meus Tickets") */
.client-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  min-height: 600px;
}

.client-sidebar {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  height: fit-content;
}

.profile-summary {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-neon) 0%, var(--green-neon) 100%);
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  color: #000000;
}

.profile-name {
  font-weight: bold;
  font-size: 18px;
}

.profile-email {
  font-size: 13px;
  color: var(--text-muted);
}

.client-menu {
  list-style: none;
}

.client-menu li {
  margin-bottom: 10px;
}

.client-menu a {
  display: flex;
  padding: 12px 15px;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.client-menu a.active, .client-menu a:hover {
  background-color: var(--purple-neon);
  color: #ffffff;
}

.tickets-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Ticket Digital / Voucher Card */
.voucher-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.voucher-card.approved {
  border-color: var(--green-neon);
}

.voucher-card.pending {
  border-color: #ff9900;
}

.voucher-body {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 30px;
  padding: 30px;
}

@media (max-width: 768px) {
  .voucher-body {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.voucher-details h3 {
  color: var(--purple-neon);
  margin-bottom: 15px;
}

.voucher-card.approved .voucher-details h3 {
  color: var(--green-neon);
}

.voucher-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
}

.info-item label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.info-item span {
  font-weight: bold;
  font-size: 15px;
}

.voucher-status-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 15px;
}

.status-aprovado {
  background-color: rgba(57, 255, 20, 0.15);
  color: var(--green-neon);
  border: 1px solid var(--green-neon);
}

.status-pendente {
  background-color: rgba(255, 153, 0, 0.15);
  color: #ff9900;
  border: 1px solid #ff9900;
}

.status-cancelado {
  background-color: rgba(255, 0, 0, 0.15);
  color: #ff0000;
  border: 1px solid #ff0000;
}

.voucher-qrcode-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(7, 5, 13, 0.5);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.voucher-qrcode-img {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
}

.voucher-code {
  font-family: monospace;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: bold;
}

.voucher-footer {
  background-color: var(--black-matte);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.voucher-actions {
  display: flex;
  gap: 15px;
}

.action-btn {
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.action-btn:hover {
  color: #ffffff;
  border-color: #ffffff;
  background-color: rgba(255,255,255,0.05);
}

.action-btn.wa:hover {
  color: var(--green-neon);
  border-color: var(--green-neon);
  background-color: rgba(57,255,20,0.05);
}

/* Painel Admin */
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 20px 15px;
  border-radius: 8px;
  text-align: center;
}

.stat-card h4 {
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text-muted);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--green-neon);
  margin-top: 5px;
}

.admin-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.admin-card h3 {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
  color: var(--purple-neon);
}

/* Tabelas Administrativas */
.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

th {
  background-color: var(--black-matte);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

tr:hover {
  background-color: rgba(255,255,255,0.02);
}

/* Check-In Portaria */
.checkin-container {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}

.scanner-box {
  background-color: var(--bg-card);
  border: 2px dashed var(--purple-neon);
  border-radius: 12px;
  padding: 40px;
  margin: 30px 0;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scanner-video {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  background-color: #000000;
}

.feedback-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 10;
  transition: all 0.3s ease;
}

.feedback-screen.active {
  display: flex;
}

.feedback-valido {
  background-color: #0c2d08;
  color: var(--green-neon);
  border: 3px solid var(--green-neon);
}

.feedback-usado {
  background-color: #2b2304;
  color: #ffcc00;
  border: 3px solid #ffcc00;
}

.feedback-cancelado, .feedback-nao_encontrado {
  background-color: #2b0404;
  color: #ff3333;
  border: 3px solid #ff3333;
}

.feedback-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.feedback-details {
  font-size: 18px;
  margin-bottom: 25px;
}

/* Footer / Rodapé */
footer {
  background-color: var(--black-matte);
  border-top: 1px solid var(--border-color);
  padding: 60px 20px 20px 20px;
  margin-top: 80px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--green-neon);
}

.footer-col p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--purple-neon);
  color: #ffffff;
  box-shadow: 0 0 10px var(--purple-glow);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsividade Mobile */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 80px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .ticket-section {
    flex-direction: column;
  }
  .client-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 12px 10px;
    gap: 12px;
    width: 100%;
    overflow: hidden;
  }
  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
    gap: 18px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links::-webkit-scrollbar {
    height: 4px;
  }
  .nav-links::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
  }
  .nav-links::-webkit-scrollbar-thumb {
    background: var(--purple-neon);
    border-radius: 2px;
  }
  .nav-links li {
    white-space: nowrap;
    padding-bottom: 4px; /* Pequeno espaçamento para a barra de rolagem */
  }
  .ticket-info-card {
    padding: 20px;
  }
  .hero-image-card {
    width: 100%;
    max-width: 320px !important;
    margin: 0 auto;
  }
  .pulseira-banner {
    padding: 30px 15px;
  }
  .pulseira-banner h3 {
    font-size: 20px !important;
  }
  .pulseira-banner p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .btn {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .voucher-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* PWA Install Banner Style */
.pwa-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #13111c;
  border: 2px solid var(--purple-neon);
  box-shadow: 0 0 25px rgba(188, 19, 254, 0.4);
  border-radius: 12px;
  padding: 15px;
  width: 90%;
  max-width: 480px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: pwaSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s ease;
}

.pwa-banner.hide {
  opacity: 0;
  transform: translate(-50%, 40px);
}

.pwa-banner-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.pwa-banner-close:hover {
  color: var(--purple-neon);
}

.pwa-banner-body {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-right: 20px;
}

.pwa-banner-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 2px solid var(--purple-neon);
  object-fit: cover;
}

.pwa-banner-text h4 {
  color: var(--green-neon);
  margin: 0 0 4px 0;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
}

.pwa-banner-text p {
  color: var(--text-muted);
  font-size: 11px;
  margin: 0;
  line-height: 1.4;
}

.pwa-banner-btn {
  width: 100%;
  margin: 0 !important;
  padding: 10px !important;
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: 1px;
}

@keyframes pwaSlideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 100px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 480px) {
  .pwa-banner {
    width: 95%;
    bottom: 10px;
    padding: 12px;
    gap: 10px;
  }
  .pwa-banner-icon {
    width: 42px;
    height: 42px;
    border-width: 1px;
  }
  .pwa-banner-text h4 {
    font-size: 13px;
  }
  .pwa-banner-text p {
    font-size: 10px;
  }
  .pwa-banner-btn {
    padding: 8px !important;
    font-size: 12px !important;
  }
  .pwa-banner-close {
    font-size: 20px;
    top: 6px;
    right: 10px;
  }
}
