﻿:root {
  --primary: #3b82f6;
  --secondary: #60a5fa;
  --accent: #f97316;
  --dark: #0f172a;
  --light: #0b1120;
  --surface: #111827;
  --surface-soft: rgba(15, 23, 42, 0.6);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --shadow: 0 12px 40px rgba(7, 14, 35, 0.45);
  --shadow-hover: 0 18px 50px rgba(59, 130, 246, 0.35);
}


* {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 45%, #0f172a 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2563eb);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: #fff;
}

.btn.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.btn.btn-outline-light:hover,
.btn.btn-outline-light:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.55);
  outline: none;
}
.btn.btn-outline-light:active {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.95);
  color: #ffffff;
}

.navbar {
  background: rgba(10, 15, 32, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(96, 165, 250, 0.25);
  transition: all 0.3s ease;
}
.navbar-brand img {
  height: 50px;
  transition: transform 0.3s ease;
}
.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: rgba(226, 232, 240, 0.85) !important;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: #fff !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--secondary);
  transition: all 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
  left: 0;
}

.nav-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 999px;
  padding: 8px 18px;
  color: var(--text);
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.nav-theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(226, 232, 240, 0.65);
  background: rgba(96, 165, 250, 0.18);
  color: #fff;
}
.nav-theme-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.3);
}
.nav-theme-toggle i {
  font-size: 1.1rem;
}
.nav-theme-toggle .theme-toggle-label {
  display: none;
  font-size: 0.95rem;
}
@media (max-width: 991.98px) {
  .nav-theme-toggle {
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .nav-theme-toggle .theme-toggle-label {
    display: inline;
  }
}

.navbar-toggler {
  border: none;
  padding: 0.35rem 0.55rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(226,232,240,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
#hero {
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80') center/cover no-repeat;
  color: #fff;
  padding: 140px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.82), rgba(15, 23, 42, 0.65));
  pointer-events: none;
}
#hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 3.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(120deg, #60a5fa, #3b82f6, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}
#hero p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: #e2e8f0;
  position: relative;
  z-index: 1;
}

section {
  padding: 100px 20px;
  position: relative;
  z-index: 0;
  background: rgba(15, 23, 42, 0.55);
}
section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  filter: blur(0px);
  z-index: -1;
}
section .container {
  position: relative;
  z-index: 1;
}
.section-title {
  margin-bottom: 60px;
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  color: #e2e8f0;
  position: relative;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.card-style {
  background: #0000004d;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.card-style::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
}
.card-style:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.card-style ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.card-style h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.form-control {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 12px;
  padding: 15px 20px;
  transition: all 0.3s ease;
  font-size: 16px;
  color: var(--text);
}
.form-control::placeholder {
  color: rgba(148, 163, 184, 0.6);
}
.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  outline: none;
}

footer {
  background: linear-gradient(135deg, #0a0e27 0%, #111827 100%);
  color: #e2e8f0;
  text-align: center;
  padding: 50px 20px 30px;
  position: relative;
  border-top: 1px solid rgba(96, 165, 250, 0.15);
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
}

footer .footer-author-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
footer .footer-author-link:hover,
footer .footer-author-link:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  outline: none;
}
footer .footer-author-logo {
  height: 38px;
  width: auto;
}

/* Eventos */
.events-heading .section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 40px;
  color: #e2e8f0;
}

.event-feature {
  position: relative;
  background: #0000004d;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px;
  color: #e2e8f0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  overflow: hidden;
}

.event-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.event-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.25), transparent 55%), radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.25), transparent 55%);
  pointer-events: none;
}

.event-feature-badge {
  grid-column: 1 / -1;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-feature-badge .badge-label,
.event-feature-badge .badge-year {
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
}

.event-feature-badge .badge-label {
  background: rgba(255, 255, 255, 0.2);
}

.event-feature-body h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #e2e8f0;;
}

.event-feature-body p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: rgba(226, 232, 240, 0.85);
}

.event-feature-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
  color: rgba(226, 232, 240, 0.85);
}

.event-feature-meta i {
  margin-right: 8px;
  color: var(--primary);
}

.event-feature-actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.btn-highlight {
  background: linear-gradient(135deg, var(--primary), #2563eb);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}




.btn-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(59, 130, 246, 0.4);
  color: #ffffff;
}




@media (max-width: 991.98px) {
  .event-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .event-feature-actions {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .event-feature {
    padding: 32px 24px;
  }

  .event-feature-body h3 {
    font-size: 1.6rem;
  }
}

#eventos {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0e27 0%, #111827 100%);
}
.event-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.event-filter .btn {
  border-radius: 999px;
  padding: 8px 22px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.event-filter .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: #fff;
}
.event-filter .btn.active {
  box-shadow: var(--shadow);
}
.event-filter .btn-outline-primary {
  border-color: #fff;
  color: var(--primary);
  background-color: rgba(249, 115, 22, 0.06);
}
.event-filter .btn-outline-primary:hover {
  background-color: rgba(249, 115, 22, 0.12);
  border-color: #fff;
  color: var(--primary);
}
.event-card {
  background: #0000004d;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.event-badge {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.2);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0;
}
.event-subtitle {
  font-size: 1rem;
  color: #e2e8f0;
  margin-bottom: 0;
  font-weight: 500;
}
.event-summary {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--primary);
}
.event-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-meta li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.85);
}
.event-meta i {
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 2px;
}
.event-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.event-price {
  background: rgba(0, 0, 0, 0.2);
  color: var(--primary);
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.95rem;
}
.event-link {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.event-link:hover {
  color: rgba(226, 232, 240, 0.85);  
  text-decoration: underline;
}
.event-empty {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow);
}
@media (max-width: 991.98px) {
  #eventos {
    padding: 80px 0;
  }
  .event-card {
    padding: 24px;
  }
}
@media (max-width: 575.98px) {
  .event-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .event-filter {
    width: 100%;
    margin-top: 16px;
  }
  .event-filter .btn {
    flex: 1;
    text-align: center;
  }
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form-section-title i {
  font-size: 1.2rem;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.btn-highlight {
  background: linear-gradient(135deg, var(--primary), #2563eb);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}




.btn-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(59, 130, 246, 0.4);
  color: #ffffff;
}

.text-muted-alta {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

#eventos .text-muted,

#eventos .text-muted span,

#eventos .text-muted i {

  color: rgba(226, 232, 240, 0.6) !important;

}

label {

  color: var(--text);

  font-weight: 500;

}

/* Light theme overrides */
html[data-theme='light'] {
  color-scheme: light;
  --primary: #E27D3E;
  --secondary: #A8D8EA;
  --accent: #ff9f43;
  --dark: #212529;
  --light: #f8f9fa;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.85);
  --text: #212529;
  --muted: rgba(33, 37, 41, 0.6);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}
html[data-theme='light'] .nav-theme-toggle {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 125, 62, 0.35);
  color: #212529;
}
html[data-theme='light'] .nav-theme-toggle:hover {
  background: rgba(226, 125, 62, 0.12);
  color: #212529;
  border-color: var(--primary);
}
html[data-theme='light'] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(33,37,41,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
html[data-theme='light'] .btn.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
}
html[data-theme='light'] .btn.btn-outline-light:hover,
html[data-theme='light'] .btn.btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.95);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  outline: none;
}
html[data-theme='light'] .btn.btn-outline-light:active {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 1);
  color: #ffffff;
}
html[data-theme='light'] .btn.btn-primary {
  background: var(--primary);
  border: none;
  color: #ffffff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(226, 125, 62, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
html[data-theme='light'] .btn.btn-primary:hover,
html[data-theme='light'] .btn.btn-primary:focus-visible {
  transform: translateY(-3px);
  background: #cc6a2d;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(226, 125, 62, 0.4);
  outline: none;
}
html[data-theme='light'] .btn.btn-primary:active {
  transform: translateY(-1px);
  background: #b75b23;
  box-shadow: 0 8px 20px rgba(226, 125, 62, 0.35);
}

html[data-theme='light'] * {
  scroll-behavior: smooth
  }
html[data-theme='light'] body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6
  }
html[data-theme='light'] .btn-primary {
  background-color: var(--primary);
  border: none;
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease
  }
html[data-theme='light'] .btn-primary:hover {
  background-color: #cc6a2d;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover)
  }
html[data-theme='light'] .btn-outline-dark {
  border: 2px solid var(--dark);
  padding: 10px 28px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease
  }
html[data-theme='light'] .btn-outline-dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow)
  }
html[data-theme='light'] .navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease
  }
html[data-theme='light'] .navbar-brand img {
  height: 50px;
  transition: transform 0.3s ease
  }
html[data-theme='light'] .navbar-brand:hover img {
  transform: scale(1.05)
  }
html[data-theme='light'] .nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  position: relative;
  transition: color 0.3s ease
  }
html[data-theme='light'] .nav-link:hover {
  color: var(--primary) !important
  }
html[data-theme='light'] .nav-link.active {
  color: var(--primary) !important
  }
html[data-theme='light'] .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--primary);
  transition: all 0.3s ease
  }
html[data-theme='light'] .nav-link:hover::after {
  width: 100%;
  background-color: var(--primary);
  left: 0
  }
html[data-theme='light'] #hero {
  background: url(https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80) center/cover;
  color: var(--dark);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden
  }
html[data-theme='light'] #hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none
  }
html[data-theme='light'] #hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2
  }
html[data-theme='light'] #hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  position: relative;
  z-index: 2
  }
html[data-theme='light'] section {
  padding: 100px 20px;
  background: var(--light);
  position: relative;
  z-index: 0
  }
html[data-theme='light'] section::before {
  content: none
  }
html[data-theme='light'] .section-title {
  margin-bottom: 60px;
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--dark);
  position: relative
  }
html[data-theme='light'] .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translatex(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 2px
  }
html[data-theme='light'] .card-style {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden
  }
html[data-theme='light'] .card-style::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--primary), var(--secondary))
  }
html[data-theme='light'] .card-style:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover)
  }
html[data-theme='light'] .card-style ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.card-style h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.4rem
  }
html[data-theme='light'] .form-control {
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 15px 20px;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #1f2937;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(0);
}
html[data-theme='light'] .form-control::placeholder {
  color: rgba(33, 37, 41, 0.45);
}
html[data-theme='light'] .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(226, 125, 62, 0.25);
  background: #ffffff;
  color: #1f2937;
}
html[data-theme='light'] footer {
  background: linear-gradient(135deg, var(--dark) 0%, #343a40 100%);
  color: white;
  text-align: center;
  padding: 50px 20px 30px;
  position: relative
  }
html[data-theme='light'] footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--primary), var(--secondary))
  }
html[data-theme='light'] .events-heading .section-title {
  margin-bottom: 20px
  }
html[data-theme='light'] .section-subtitle {
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 40px;
  color: rgba(33, 37, 41, 0.7)
  }
html[data-theme='light'] .event-feature {
  position: relative;
  background: linear-gradient(135deg, rgba(226, 125, 62, 0.85), rgba(168, 216, 234, 0.88));
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-hover);
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  overflow: hidden
  }
html[data-theme='light'] .event-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  pointer-events: none
  }
html[data-theme='light'] .event-feature-badge {
  grid-column: 1/-1;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase
  }
html[data-theme='light'] .event-feature-badge .badge-label, html[data-theme='light'] .event-feature-badge .badge-year {
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2)
  }
html[data-theme='light'] .event-feature-badge .badge-label {
  background: rgba(255, 255, 255, 0.2)
  }
html[data-theme='light'] .event-feature-body h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #212529
  }
html[data-theme='light'] .event-feature-body p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: rgba(33, 37, 41, 0.85)
  }
html[data-theme='light'] .event-feature-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
  color: rgba(33, 37, 41, 0.85)
  }
html[data-theme='light'] .event-feature-meta i {
  margin-right: 8px;
  color: var(--primary)
  }
html[data-theme='light'] .event-feature-actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end
  }
html[data-theme='light'] .btn-highlight {
  background: var(--primary);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(226, 125, 62, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease
  }
html[data-theme='light'] .btn-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(226, 125, 62, 0.35);
  background: #cc6a2d;
  color: #ffffff
  }
@media (max-width: 991.98px) {
  html[data-theme='light'] .event-feature {
    grid-template-columns: 1fr;
    text-align: center
    }
  html[data-theme='light'] .event-feature-actions {
    justify-content: center
    }
  }
@media (max-width: 575.98px) {
  html[data-theme='light'] .event-feature {
    padding: 32px 24px
    }
  html[data-theme='light'] .event-feature-body h3 {
    font-size: 1.6rem
    }
  }
html[data-theme='light'] #eventos {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(168, 216, 234, 0.12) 0%, rgba(255, 255, 255, 0.95) 100%)
  }
html[data-theme='light'] .event-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
  }
html[data-theme='light'] .event-filter .btn {
  border-radius: 999px;
  padding: 8px 22px;
  font-weight: 600;
  transition: all 0.3s ease
  }
html[data-theme='light'] .event-filter .btn.active {
  box-shadow: var(--shadow)
  }
html[data-theme='light'] .event-filter .btn-outline-primary {
  border-color: rgba(226, 125, 62, 0.4);
  color: var(--primary);
  background-color: rgba(226, 125, 62, 0.06)
  }
html[data-theme='light'] .event-filter .btn-outline-primary:hover {
  background-color: rgba(226, 125, 62, 0.12);
  border-color: rgba(226, 125, 62, 0.6);
  color: var(--primary)
  }
html[data-theme='light'] .event-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04)
  }
html[data-theme='light'] .event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover)
  }
html[data-theme='light'] .event-badge {
  align-self: flex-start;
  background: rgba(168, 216, 234, 0.35);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase
  }
html[data-theme='light'] .event-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0
  }
html[data-theme='light'] .event-subtitle {
  font-size: 1rem;
  color: rgba(33, 37, 41, 0.7);
  margin-bottom: 0;
  font-weight: 500
  }
html[data-theme='light'] .event-summary {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: rgba(33, 37, 41, 0.75)
  }
html[data-theme='light'] .event-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
  }
html[data-theme='light'] .event-meta li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(33, 37, 41, 0.85)
  }
html[data-theme='light'] .event-meta i {
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 2px
  }
html[data-theme='light'] .event-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
  }
html[data-theme='light'] .event-price {
  background: rgba(226, 125, 62, 0.12);
  color: var(--primary);
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.95rem
  }
html[data-theme='light'] .event-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none
  }
html[data-theme='light'] .event-link:hover {
  color: #cc6a2d;
  text-decoration: underline
  }
html[data-theme='light'] .event-empty {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow)
  }
@media (max-width: 991.98px) {
  html[data-theme='light'] #eventos {
    padding: 80px 0
    }
  html[data-theme='light'] .event-card {
    padding: 24px
    }
  }
@media (max-width: 575.98px) {
  html[data-theme='light'] .event-footer {
    flex-direction: column;
    align-items: flex-start
    }
  html[data-theme='light'] .event-filter {
    width: 100%;
    margin-top: 16px
    }
  html[data-theme='light'] .event-filter .btn {
    flex: 1;
    text-align: center
    }
  }
html[data-theme='light'] .form-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem
  }
html[data-theme='light'] .form-section-title i {
  font-size: 1.2rem
  }
html[data-theme='light'] .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary)
  }
html[data-theme='light'] .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(226, 125, 62, 0.25)
  }
html[data-theme='light'] .btn-highlight {
  background: linear-gradient(45deg, var(--primary), #ff9f43);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(226, 125, 62, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease
  }
html[data-theme='light'] .btn-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(226, 125, 62, 0.35);
  color: #fff
  }
