/* ClavaTicket - Estilos Customizados */

:root {
  --primary-purple: #8B5CF6;
  --primary-blue: #3B82F6;
  --primary-green: #10B981;
  --primary-orange: #F97316;
  --primary-pink: #EC4899;
  --gray-light: #F8FAFC;
  --gray-medium: #64748B;
  --gray-dark: #1E293B;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--gray-light);
}

/* Header */
.navbar-brand img {
  height: 40px;
}

.navbar-custom {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.btn-criar-evento {
  background: linear-gradient(135deg, var(--primary-green), #059669);
  border: none;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-criar-evento:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-menu a {
  color: var(--gray-medium);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.user-menu a:hover {
  color: var(--primary-purple);
}

/* Cards de Eventos */
.event-card {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.event-date {
  background: rgba(255,255,255,0.95) !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  color: var(--gray-dark) !important;
  font-size: 14px !important;
  margin-bottom: 8px !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
}

.event-image {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.event-content {
  padding: 20px;
}

.event-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 15px;
}

.btn-saiba-mais {
  background: linear-gradient(135deg, var(--primary-purple), #7C3AED);
  border: none;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Página de Detalhes do Evento */
.event-detail-header {
  background: white;
  padding: 30px 0;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.event-detail-image {
  border-radius: 15px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.event-info {
  padding: 20px 0;
}

.event-info h2 {
  color: var(--gray-dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.event-meta {
  color: var(--gray-medium);
  margin-bottom: 20px;
}

.event-meta i {
  margin-right: 8px;
  color: var(--primary-purple);
}

.price-range {
  background: var(--gray-light);
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
  border-left: 4px solid var(--primary-green);
}


.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Responsiveness hardening */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, svg, iframe {
  max-width: 100%;
  height: auto;
}

/* Permitir quebra nas navegações longas para evitar overflow */
.navbar-nav {
  flex-wrap: wrap;
}

.main-navbar .navbar-nav .nav-link,
.navbar-nav .nav-link {
  white-space: normal;
}

/* Evitar overflow de tabelas e blocos de código */
.table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Ajustes para telas muito pequenas */
@media (max-width: 575.98px) {
  .navbar-brand img {
    max-width: 70%;
    height: auto;
  }
}

@media (max-width: 400px) {
  .cart-popup {
    width: 90vw !important;
  }
}

/* Evitar estouro por palavras muito longas */
body {
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Botões Flutuantes de Redes Sociais */
.social-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F, #833AB4, #F77737);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #F77737, #E4405F, #833AB4);
}

.ai-chat-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
}

.ai-chat-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
}

/* Pop-up do Chat com IA */
.ai-chat-popup {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.ai-chat-popup.show {
    display: flex;
    animation: slideInUp 0.3s ease-out;
}

.ai-chat-header {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chat-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.ai-chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.ai-chat-input-container {
    padding: 15px;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
}

.ai-chat-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 10px 15px;
    outline: none;
    font-size: 14px;
}

.ai-chat-input:focus {
    border-color: var(--primary-purple);
}

.ai-chat-send {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-chat-send:hover {
    transform: scale(1.1);
}

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

/* Responsividade para botões flutuantes */
@media (max-width: 768px) {
    .social-floating {
        bottom: 15px;
        right: 15px;
    }
    
    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .ai-chat-popup {
        width: calc(100vw - 30px);
        right: 15px;
        height: 400px;
    }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Responsividade */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-card {
    margin-bottom: 20px;
  }
  
  .btn-comprar,
  .btn-voltar {
    margin-bottom: 10px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-auth-btn {
    background: transparent;
    margin: 7px;
    color: #fff;
    min-width: 100px;
    max-height: 59px;
    padding: 3px;
    height: 44px;
    border: 1px solid #fff;
}

    .custom-auth-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.btn-comprar {
  background: linear-gradient(135deg, var(--primary-orange), #EA580C);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-comprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-voltar {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-voltar:hover {
  background: var(--primary-purple);
  color: white;
}

/* Footer */
.footer-custom {
  background: var(--gray-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;        
    
}
