/* Global Styles */
:root {
  --primary-color: #2a0a4a;
  --secondary-color: #1a0530;
  --accent-color: #b57edc;
  --text-color: #ffffff;
  --dark-purple: #120426;
  --active-color: #f0e2ff;
  --neon-purple: #b57edc;
  --neon-purple-glow: rgba(181, 126, 220, 0.8);

  /* Colores para el fondo gaming */
  --dark-gaming-purple: #16003d;
  --mid-gaming-purple: #270f4e;
  --light-gaming-purple: #583c7f;
}

/* Update the font import at the top */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");

/* Update the body font-family */
body {
  font-family: "Oswald", sans-serif;
  background-color: var(--dark-gaming-purple);
  color: var(--text-color);
  overflow-x: hidden;
  position: relative;
}

/* Estilos para el fondo gaming */
/* Background grid */
.grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(39, 15, 78, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 15, 78, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
}

/* Plexus Canvas */
#plexus-background-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Ajustar el canvas de plexus para que solo afecte al contenedor */
#plexus-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(1px);
}

/* Asegurar que el header y footer estén por encima del plexus */
header,
footer {
  position: relative;
  z-index: 1000;
}

/* Asegurar que el hero carousel esté por encima del plexus */
#hero-carousel {
  position: relative;
  z-index: 2;
}
/* Glowing orbs with blur */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.6;
  animation: pulse 4s infinite alternate;
  z-index: -1;
}

.orb:nth-child(1) {
  width: 300px;
  height: 300px;
  background: var(--light-gaming-purple);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb:nth-child(2) {
  width: 250px;
  height: 250px;
  background: var(--mid-gaming-purple);
  bottom: -50px;
  right: -50px;
  animation-delay: -2s;
}

/* Animations */
@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Update the Header Styles */
header {
  background-color: rgba(26, 5, 48, 0.9);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(181, 126, 220, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.sorpresa {
  font-size: large;
  size: 20px;
}
.social-media {
  background-color: #d2b2d9;
  padding: 30px;
}
.logo-social {
  bottom: 60px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 300px;
  width: auto;
}

.navbar {
  padding: 0.5rem 0;
}

.navbar:hover {
  color: #ffffff;
}

.logo-container {
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.logo-mascot {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}

header.scrolled .logo-mascot {
  height: 50px;
}

.date-badge {
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: 5px;
  opacity: 1;
  transition: all 0.3s ease;
}

header.scrolled .date-badge {
  opacity: 0;
  transform: translateX(-10px);
}

.navbar-brand {
  margin-right: 0;
  padding: 0;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .navbar-brand {
    margin-right: 3rem; /* Make space for the toggle button */
  }

  .logo-mascot {
    height: 60px;
  }

  header.scrolled .logo-mascot {
    height: 40px;
  }
}

@media (max-width: 575.98px) {
  .logo-mascot {
    height: 50px;
  }

  header.scrolled .logo-mascot {
    height: 35px;
  }
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

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

/* Dropdown Menu Styles */
.dropdown-menu {
  /* color: var(--text-color) !important; */
  background-color: rgba(18, 4, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin-top: 0;
  padding: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
  color: var(--text-color);
  font-weight: 400;
  padding: 10px 20px;
  transition: all 0.3s ease;
  position: relative;
  border-left: 3px solid transparent;
}

.dropdown-item:hover,
.dropdown-item:focus {
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-color);
  border-left: 3px solid var(--accent-color);
}

/* Active Menu Item Styles */
.nav-item .nav-link.active,
.dropdown-item.active,
.dropdown-item:active {
  color: var(--active-color) !important;
  background-color: transparent;
}

.nav-item .nav-link.active::after,
.dropdown-item.active::after {
  background-color: var(--active-color);
  width: 100%;
}

/* Hover effect for dropdown items */
.dropdown-item:hover {
  color: var(--active-color) !important;
  background-color: rgba(240, 226, 255, 0.1);
}

/* Border left for active dropdown items */
.dropdown-item.active {
  border-left: 3px solid var(--active-color) !important;
}

.dropdown-toggle::after {
  margin-left: 0.5em;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Make sure dropdown is visible on hover for desktop */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Hero Carousel */
#hero-carousel {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.hero-image-container {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-image-container img {
  /* object-fit: cover; */
  height: 100%;
  width: 100%;
  /* filter: brightness(0.7); */
}

.hero-image-container img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  /* filter: brightness(0.7); */
}

/* Add responsive styles for mobile devices */
@media (max-width: 768px) {
  .hero-image-container {
    height: 50vh;
  }

  .hero-image-container img {
    /* This ensures the image maintains its original quality but crops sides */
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    /* Optional: increase scale slightly to ensure no white space */
    transform: scale(1.05);
  }
}

@media (max-width: 576px) {
  .hero-image-container {
    height: 40vh;
  }

  .hero-image-container img {
    /* For very small screens, we might want to scale a bit more */
    transform: scale(1.1);
  }
}

.flame-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2300ff66" fill-opacity="0.5" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,224C672,213,768,171,864,149.3C960,128,1056,128,1152,149.3C1248,171,1344,213,1392,234.7L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
  animation: flameMove 3s infinite alternate;
}

@keyframes flameMove {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.2);
}

.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: var(--accent-color);
  transform: scale(1.2);
}

/* Featured Teams */
#featured-teams {
  background-color: transparent;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.team-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.team-card img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.team-hashtag {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Tickets CTA */
#tickets-cta {
  background: transparent;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.cta-box {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(128, 0, 255, 0.3);
}

.glow-text {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 0 10px rgba(216, 142, 219, 0.7), 0 0 20px rgba(0, 255, 102, 0.5);
  letter-spacing: 1px;
}

/* Sponsors & Partners */
#sponsors,
#partners,
#more-partners {
  background-color: transparent;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 25%;
}

.sponsor-logo {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sponsor-logo:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Custom 5-column grid */
.col-5-custom {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-5-custom {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Footer */
footer {
  background-color: rgba(26, 5, 48, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

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

.social-icon:hover {
  background-color: var(--accent-color);
  color: var(--dark-purple);
  transform: translateY(-3px);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hashtag {
  font-weight: 700;
  margin-top: 10px;
  color: var(--accent-color);
}

/* Animations for scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Add new INFO section styles */
/* INFO Page Specific Styles */
#info {
  padding-top: 150px;
  padding-bottom: 60px;
  background-color: transparent;
  position: relative;
  min-height: calc(100vh - 200px);
  z-index: 1;
}

.info-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.info-header::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.info-title {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.info-description {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 300;
}

.faqs {
  margin-top: 80px;
  position: relative;
}

.faqs::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.faqs-title {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
}

/* Update the FAQ section styles */
.faq-container {
  margin-top: 30px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  overflow: hidden;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent-color);
}

.faq-question-container {
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  flex-grow: 1;
}

.faq-toggle {
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

/* Add a subtle glow effect to active FAQ items */
.faq-item.active {
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
}

#contacto {
  /* padding-top: 100px; */
  padding-bottom: 60px;
  background-color: transparent;
  position: relative;
  min-height: calc(100vh - 200px);
  z-index: 1;
}

.contact-form {
  margin-top: 80px;
  padding: 40px 0;
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
}

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

.form-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--text-color);
  font-family: "Oswald", sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-primary {
  background-color: var(--accent-color);
  border: none;
  color: var(--dark-purple);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 30px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #00cc52;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 255, 102, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
}

/* Estilos del footer gamer */
.gamer-footer {
  position: relative;
  background-color: rgba(26, 5, 48, 0.7);
  border-top: 2px solid #9c5ad9;
  box-shadow: 0 -5px 15px rgba(156, 90, 217, 0.5);
  overflow: hidden;
  padding-top: 3rem !important;
  padding-bottom: 2rem !important;
}

.footer-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/ALF-118.webp"); /* Reemplazar con la ruta real de la imagen */
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: brightness(0.5) hue-rotate(230deg);
  z-index: 0;
}

.gamer-footer .container {
  position: relative;
  z-index: 2;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #d1a0ff;
  text-shadow: 0 0 10px rgba(209, 160, 255, 0.8);
  letter-spacing: 2px;
}

.footer-slogan {
  font-size: 0.9rem;
  color: #b57edc;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(145deg, #2a0a4a, #1a0530);
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(156, 90, 217, 0.3);
  border: 1px solid rgba(156, 90, 217, 0.3);
}

.social-icon:hover {
  background: linear-gradient(145deg, #9c5ad9, #7e3db7);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(156, 90, 217, 0.5);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hashtag {
  font-weight: 700;
  margin-top: 15px;
  font-size: 1.1rem;
  color: #d1a0ff;
  letter-spacing: 1px;
}

.neo-text {
  text-shadow: 0 0 10px rgba(209, 160, 255, 0.8), 0 0 20px rgba(156, 90, 217, 0.5);
}

.glow-effect {
  filter: drop-shadow(0 0 8px rgba(156, 90, 217, 0.7));
  transition: all 0.3s ease;
}

.glow-effect:hover {
  filter: drop-shadow(0 0 15px rgba(156, 90, 217, 1));
}

.footer-nav {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(156, 90, 217, 0.3);
}

.footer-nav a {
  color: #ffffff;
  margin: 0 15px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #d1a0ff;
  text-shadow: 0 0 8px rgba(209, 160, 255, 0.7);
}

.copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-image-container {
    height: 60vh;
  }

  .glow-text {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
  .navbar-nav {
    text-align: center;
    margin: 15px auto;
  }

  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 20px;
    right: 15px;
  }

  /* Hacer que el icono hamburguesa sea blanco */
  .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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }

  /* Ajuste para el logo en responsive */
  .navbar-brand {
    margin-left: 15px;
  }

  /* Ocultar el logo mascota en modo responsive */
  .navbar-brand.ms-auto {
    display: none;
  }

  /* Estilos para el menú desplegado */
  .navbar-collapse {
    margin-top: 10px;
    padding-bottom: 10px;
  }

  /* Ajuste para los elementos del dropdown */
  .dropdown-menu {
    text-align: center;
    background-color: rgba(18, 4, 38, 0.95);
  }

  /* Tickets CTA responsive adjustments */
  #tickets-cta {
    padding: 60px 0;
  }

  .cta-box {
    max-width: 90%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sponsor-logo2{
    padding: 40px;
  }



  .hero-image-container {
    height: 50vh;
  }

  .glow-text {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .footer-logo,
  .footer-social {
    text-align: center;
    align-items: center;
  }

  /* Responsive adjustments for INFO section */
  .info-title {
    font-size: 3rem;
  }

  .info-description {
    font-size: 1rem;
    padding: 0 20px;
  }

  .faqs-title,
  .contact-title {
    font-size: 2.5rem;
  }
  .navbar-toggler {
    top: 15px;
    right: 10px;
  }

  .navbar-brand {
    margin-left: 10px;
  }

  /* Tickets CTA responsive adjustments */
  #tickets-cta {
    padding: 40px 0;
  }

  .cta-box {
    max-width: 95%;
    height: auto;
  }

  /* Social media section adjustments */
  .social-media {
    padding: 30px 15px;
  }

  .logo-social {
    height: 200px;
    bottom: 30px;
    margin: 0 auto;
  }
  
}

@media (max-width: 576px) {
  .hero-image-container {
    height: 40vh;
  }

  .nav-link {
    margin: 5px 0;
  }

  .team-card {
    margin-bottom: 20px;
  }

  /* Responsive adjustments for INFO section */
  .info-title {
    font-size: 2.5rem;
  }

  .faqs-title,
  .contact-title {
    font-size: 2rem;
  }

  /* Tickets CTA responsive adjustments */
  #tickets-cta {
    padding: 30px 0;
  }

  .cta-box {
    max-width: 100%;
    height: auto;
  }

  /* Social media section adjustments */
  .social-media {
    padding: 20px 10px;
  }

  .social-media .row.justify-content-center {
    flex-direction: column-reverse;
  }

  .social-media .col-md-8.col-6,
  .social-media .col-md-4.col-6 {
    width: 100%;
    padding: 10px;
  }

  .logo-social {
    height: 150px;
    bottom: 15px;
    margin: 0 auto 20px;
  }

  .glow-text {
    font-size: 1.2rem;
    margin-top: 15px;
  }
}

/* Responsive adjustments for INFO page */
@media (max-width: 768px) {
  .info-title {
    font-size: 3rem;
  }

  .info-description {
    font-size: 1rem;
    padding: 0 20px;
  }

  .faqs-title,
  .contact-title {
    font-size: 2.5rem;
  }

  .faq-item {
    padding: 15px;
  }

  .faq-question {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .info-title {
    font-size: 2.5rem;
  }

  .faqs-title,
  .contact-title {
    font-size: 2rem;
  }
}

/* Add a media query to hide the canvas on mobile devices */
@media (max-width: 768px) {
  #plexus-canvas {
    display: none;
  }

  /* Ensure the background still looks good without the animation */
  #plexus-background-container {
    background-color: var(--dark-gaming-purple);
  }
}

/* Añadir al final del archivo styles.css */

/* Estilos para la animación fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Estilos para el efecto de clic en el mapa */
.map-clicked {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Estilos adicionales para la sección de ubicación */
#ubicacion {
  padding-top: 40px;
  padding-bottom: 20px;
}

/* Animación de borde brillante */
@keyframes glowingBorder {
  0% {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(181, 126, 220, 0.4);
  }
  100% {
    border-color: #d1a0ff;
    box-shadow: 0 0 20px rgba(209, 160, 255, 0.7);
  }
}
