:root {
  /* Cores modernas */
  --primary: #4361ee;
  --primary-dark: #3a56d4;
  --primary-light: #e0e7ff;
  --secondary: #3f37c9;
  --secondary-dark: #312e81;
  --secondary-light: #a5b4fc;
  --accent: #4895ef;
  --accent-light: #bfdbfe;
  --danger: #f72585;
  --success: #4cc9f0;
  --warning: #f8961e;
  --info: #560bad;
  
  /* Tons de texto */
  --text: #2b2d42;
  --text-light: #8d99ae;
  --text-lighter: #edf2f4;
  
  /* Fundos */
  --background: #f8f9fa;
  --white: #ffffff;
  --gray-light: #f1f5f9;
  --gray: #e2e8f0;
  --gray-dark: #cbd5e0;
  
  /* Cores especiais */
  --gold: #f59e0b;
  --gold-light: #fef3c7;
  --silver: #94a3b8;
  
  /* Sombras modernas */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-primary: 0 4px 12px rgba(67, 97, 238, 0.2);
  
  /* Bordas */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transições suaves */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Espaçamentos consistentes */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  
  /* Alturas */
  --header-height: 80px;
}

/* Reset e Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  position: relative;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* Tipografia moderna */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text);
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-light);
}

/* Layout container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Header moderno */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md) 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  opacity: 0.9;
}

.logo-icon {
  font-size: 2rem;
  color: var(--primary);
  background: var(--primary-light);
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Navegação moderna */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-list {
  display: flex;
  gap: var(--space-xs);
  list-style: none;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link i {
  font-size: 1.1rem;
}


/* Barra de pesquisa moderna */
.search-bar {
  position: relative;
  width: 280px;
  display: flex;
}

.search-bar input {
  width: 100%;
  border-radius: 0 var(--radius) var(--radius) 0;
  border: 1px solid var(--gray);
  background: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.search-bar input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 4px 0 0 3px rgba(67, 97, 238, 0.1);
}

.search-bar button {
  width: 50px;
  height: 50px;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--text-light);
}

/* Eventos - Cards modernos */
.eventos-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: var(--space-xl);
}

.evento {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--gray);
  cursor: pointer;
}

.evento:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.evento-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--gray);
}

.evento-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.evento-title {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.evento-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: var(--space-md) 0;
  padding: var(--space-md) 0;
  border-top: 1px dashed var(--gray);
  border-bottom: 1px dashed var(--gray);
}

.evento-date,
.evento-lote {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  color: var(--text-light);
}

.evento-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.evento-desc {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  flex: 1;
  font-size: 0.95rem;
}

.evento-rules {
  margin-top: auto;
  padding: var(--space-md);
  border-top: 1px solid var(--gray-light);
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Formulários modernos */
.form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  border: 1px solid var(--gray);
}

.form-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  font-weight: 700;
}

.form-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--text);
  font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea,
input,
select,
textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  background-color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Botões modernos */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary-light);
}

.btn-icon {
  padding: var(--space-sm);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
}

/* Controle de quantidade */
.quantity-control {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.quantity-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.quantity-input {
  text-align: center;
  max-width: 60px;
  padding-right: 0;
}

/* Animações */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .header-container {
    gap: var(--space-md);
  }
  
  .nav-list {
    gap: var(--space-xs);
  }
  
  .search-bar {
    width: 220px;
  }
}

@media (max-width: 924px) {
  .search-bar {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .header {
    padding: var(--space-sm) 0;
  }
  
  .header-container {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .nav {
    position: fixed;
    bottom: 0;
    padding: 20px;
    width: 100%;
    background-color: var(--white);
    justify-content: space-between;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  }

  .nav .nav-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .nav .search-bar {
    display: none;
  }
  
  .eventos-grid {
    grid-template-columns: 1fr;
  }
  
  .form-section {
    padding: var(--space-lg);
  }
    .form-grid {
    grid-template-columns: 100%;
  }
}

@media (max-width: 480px) {
  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    padding: 10px;
  }

  .nav-link {
    flex-direction: column;
    padding: 10px;
    span {
      font-size: .7rem;
    }
    i { 
      font-size: 1.5rem;
    }
  }
  
  .search-bar {
    width: 100%;
    margin-top: var(--space-sm);
  }
  
  .btn {
    width: 100%;
  }
}

/* Notificações modernas */
.notificacao {
  position: fixed;
  top: var(--space-xl);
  right: var(--space-xl);
  min-width: 260px;
  max-width: 320px;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--white);
  color: var(--text);
  border-left: 4px solid var(--info);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition-slow);
  z-index: 9999;
  pointer-events: none;
}

.notificacao.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.notificacao i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.notificacao.success {
  border-color: var(--success);
  color: var(--success);
}

.notificacao.error {
  border-color: var(--danger);
  color: var(--danger);
}

.notificacao.info {
  border-color: var(--info);
  color: var(--info);
}

.notificacao.warning {
  border-color: var(--warning);
  color: var(--warning);
}
/* FAQ Section Styles */
.faq-section {
  margin-top: 40px;
}

.faqs {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray);
  overflow: hidden;
  transition: var(--transition-slow);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--white);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--gray-light);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  flex: 1;
}

.faq-question i {
  font-size: 1.5rem;
  color: var(--text-light);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 var(--space-lg);
  background-color: var(--gray-light);
}

.faq-answer p {
  padding: var(--space-md) 0;
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

/* Active state */
.faq-item.active .faq-question {
  background-color: var(--primary-light);
}

.faq-item.active .faq-question h3 {
  color: var(--primary);
}

.faq-item.active .faq-question i {
  color: var(--primary);
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  border-top: 1px solid var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    padding: var(--space-md);
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* Contact Section Styles */
.contact-section {
   margin-top: 40px;
}


.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  margin-bottom: var(--space-2xl);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.info-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.info-card h3 {
  color: var(--secondary);
  margin-bottom: var(--space-xs);
}

.info-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    padding: var(--space-lg);
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Profile Section Styles */
.profile-section {
  margin-top: 40px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 10px #00000018;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 600;
  flex-shrink: 0;
}


.profile-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.profile-email {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-email i {
  color: var(--accent);
}

.profile-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--background);
  border-radius: var(--radius-md);
  min-width: 150px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.profile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 0 10px #00000018;
  padding: 1.5rem;
}

.profile-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-card h2 i {
  color: var(--accent);
}

.event-list, .ticket-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item, .ticket-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--background);
  transition: var(--transition);
}

.event-item:hover, .ticket-item:hover {
  background: rgba(67, 97, 238, 0.05);
}

.event-icon, .ticket-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-details, .ticket-details {
  flex: 1;
}

.event-title, .ticket-title {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.event-date, .ticket-date {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.login-prompt {
  text-align: center;
  padding: 3rem;
  background: var(--background);
  border-radius: var(--radius);
  box-shadow: 0 0 10px #00000018;
  margin: 2rem auto;
  max-width: 600px;
}

.login-prompt i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.login-prompt h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.login-prompt p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.auth-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.login-btn,
.primary-btn {
  background: var(--primary);
  color: white;
  border: none;
}

.primary-btn {
  padding: 10px;
  width: 100%;
  font-size: 1.4rem;
  border-radius: 10px;
  transition: .5s ease-in;
}

.login-btn:hover,
.primary-btn:hover {
  background: var(--primary-dark);
}

.register-btn {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.register-btn:hover {
  background: rgba(67, 97, 238, 0.1);
}

@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .profile-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .profile-stats {
    gap: 1rem;
  }
  
  .stat-item {
    min-width: 120px;
    padding: 0.75rem 1rem;
  }
  
  .auth-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .auth-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal-content {
  background-color: var(--background);
  margin: 10% auto;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 0 10px #00000018;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.modal h2 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.close:hover {
  color: var(--text-primary);
}

/* Logout Button */
.logout-btn {
  background: var(--danger);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  margin-left: auto;
  height: fit-content;
}

.logout-btn:hover {
  background: #d3165e;
}

/* Responsive adjustments for modals */
@media (max-width: 768px) {
  .modal-content {
    margin: 20% auto;
    width: 95%;
  }
}
/* Footer Styles */
.site-footer {
  background-color: var(--white);
  color: var(--text-primary);
  padding: 3rem 0 0;
  margin-top: 3rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 0 10px #00000018;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo i {
  font-size: 1.75rem;
  color: var(--accent);
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-slogan {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.links-column h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.links-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.links-column a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.links-column a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.payment-methods {
  display: flex;
  gap: 1rem;
}

.payment-methods i {
  font-size: 1.5rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

 /* Seus estilos CSS anteriores aqui */
    
    /* Novos estilos para o sistema de ingressos */
    .ticket-section {
      display: none;
      margin-top: 2rem;
    }
    
    .ticket-form-container {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: var(--space-xl);
      box-shadow: var(--shadow);
      margin-bottom: var(--space-xl);
    }
    
    .ticket-form-title {
      font-size: 1.25rem;
      margin-bottom: var(--space-lg);
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }
    
    .payment-section {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: var(--space-xl);
      box-shadow: var(--shadow);
      margin-top: var(--space-xl);
      display: none;
    }
    
    .payment-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: var(--space-xl);
    }
    
    .payment-total {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
    }
    
    .payment-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: var(--space-md);
      margin-bottom: var(--space-xl);
    }
    
    .payment-method {
      border: 2px solid var(--gray);
      border-radius: var(--radius);
      padding: var(--space-md);
      cursor: pointer;
      transition: var(--transition);
      text-align: center;
    }
    
    .payment-method:hover {
      border-color: var(--primary);
    }
    
    .payment-method.active {
      border-color: var(--primary);
      background: var(--primary-light);
    }
    
    .payment-method i {
      font-size: 2rem;
      margin-bottom: var(--space-sm);
      color: var(--primary);
    }
    
    .qr-code-container {
      text-align: center;
      margin: var(--space-xl) 0;
      padding: var(--space-md);
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
    }
    
    .payment-confirm {
      display: none;
      text-align: center;
      margin-top: var(--space-xl);
    }
    
    .ticket-card {
      background: linear-gradient(135deg, #4361ee, #3a0ca3);
      color: white;
      border-radius: var(--radius-lg);
      padding: var(--space-lg);
      margin-bottom: var(--space-lg);
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }
    
    .ticket-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 30px;
      width: 2px;
      height: 100%;
      background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 10px,
        white 10px,
        white 20px
      );
    }
    
    .ticket-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: var(--space-md);
    }
    
    .ticket-title {
      font-size: 1.5rem;
      font-weight: 700;
    }
    
    .ticket-id {
      background: var(--white);
      color: var(--primary);
      padding: var(--space-xs) var(--space-sm);
      border-radius: var(--radius);
      font-weight: 600;
    }
    
    .ticket-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: var(--space-md);
      margin-bottom: var(--space-md);
    }
    
    .ticket-detail {
      display: flex;
      flex-direction: column;
    }
    
    .ticket-label {
      font-size: 0.8rem;
      opacity: 0.8;
    }
    
    .ticket-value {
      font-weight: 600;
    }
    
    .ticket-qr {
      text-align: center;
      margin-top: var(--space-md);
    }
    
    .ticket-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: var(--space-md);
      padding-top: var(--space-md);
      border-top: 1px dashed rgba(255, 255, 255, 0.3);
    }
    
    .ticket-price {
      font-size: 1.25rem;
      font-weight: 700;
    }
    
    .ticket-status {
      background: var(--white);
      color: var(--primary);
      padding: var(--space-xs) var(--space-sm);
      border-radius: var(--radius);
      font-weight: 600;
      font-size: 0.8rem;
    }
    
    .ticket-status.paid {
      background: var(--success);
      color: white;
    }
    
    .ticket-status.pending {
      background: var(--warning);
      color: white;
    }
    
    .tickets-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: var(--space-lg);
      margin-top: var(--space-xl);
    }
    
    .past-events {
      margin-top: var(--space-2xl);
    }
    
    .event-tabs {
      display: flex;
      border-bottom: 1px solid var(--gray);
      margin-bottom: var(--space-lg);
    }
    
    .event-tab {
      padding: var(--space-sm) var(--space-lg);
      cursor: pointer;
      font-weight: 500;
      color: var(--text-light);
      border-bottom: 2px solid transparent;
      transition: var(--transition);
    }
    
    .event-tab.active {
      color: var(--primary);
      border-bottom-color: var(--primary);
    }
    
    .event-tab-content {
      display: none;
    }
    
    .event-tab-content.active {
      display: block;
    }
    
    .edit-ticket-btn {
      background: var(--white);
      color: var(--primary);
      border: none;
      padding: var(--space-xs) var(--space-sm);
      border-radius: var(--radius-sm);
      cursor: pointer;
      font-size: 0.8rem;
      transition: var(--transition);
    }
    
    .edit-ticket-btn:hover {
      background: var(--primary-light);
    }
    
    @media (max-width: 768px) {
      .ticket-card::before {
        left: 20px;
      }
      
      .ticket-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
      }
      
      .ticket-details {
        grid-template-columns: 1fr;
      }
    }