/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GENERAL */
/* [01] RESET & GENERAL */
body {
  font-family: 'Arimo', sans-serif;
  background-color: #1a1a1a; /* Esto quita los bordes blancos en el fondo */
  overflow-x: hidden; /* Evita desplazamientos laterales raros */
}
/* TITULOS */
h1, h2, h3,
.main-title,
.event-title,
.info-title,
#modal-title {
  font-family: 'Iceland', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* TEXTOS */
p,
.about-desc,
.description,
.info-item p,
#modal-body {
  font-family: 'Arimo', sans-serif;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  background-image: url("img/fondo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.subtitle {
  color: #ccc;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.description {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

.logo {
  width: 500px;
  max-width: 90%;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* --- BOTÓN VIOLETA ACTUALIZADO --- */
.btn {
  margin-top: 25px;
  padding: 15px 40px;
  background-color: #8A2BE2; /* Fondo Violeta */
  color: white;              /* Texto Blanco */
  border: 2px solid #8A2BE2;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background-color: white;   /* Fondo Blanco al pasar cursor */
  color: #8A2BE2;            /* Texto Violeta al pasar cursor */
  border-color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* ================= ABOUT ================= */
.about {
  background: #d9d9d9;
  padding: 100px 0;
}

.about-center {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.countdown {
  display: flex;
  justify-content: space-between; 
  width: 100%;
  max-width: 1100px; 
  margin: 50px auto;
  padding: 0 40px;
}

.flip-card {
  background: #000;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 4px;
}

.flip-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  z-index: 1;
}

.flip-card span {
  font-family: 'Iceland', sans-serif;
  font-size: 55px;
  color: #fff;
  z-index: 2;
  position: relative;
}

.flip-card p {
  position: absolute;
  bottom: -40px; 
  color: #000;
  font-family: 'Arimo', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
/* [03] ABOUT - BAJAR SOLO EL TÍTULO */
.about-title {
    /* El margin-top es el espacio que empuja la frase hacia abajo */
    margin-top: 150px !important; 
    
    /* Estos son los que ya tenías o para asegurar el estilo */
    text-align: center;
    font-family: 'Iceland', sans-serif;
    font-size: 2rem; 
    margin-bottom: 10px; /* Espacio entre el título y la imagen de abajo */
}
.about-img-container {
  position: relative;
  width: 1100px;
  max-width: 95%;
  margin: 100px auto 30px;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.about-img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.overlay-text {
  color: white;
  font-size: 26px;
  font-weight: 600;
  text-align: flex;
  line-height: 1.5;
  text-shadow: 2px 2px 8px rgba(0,0,0,1), 0px 0px 10px rgba(0,0,0,0.8);
  transform: translateY(30px);
  transition: transform 0.5s ease;
}

.about-img-container:hover .image-overlay {
  opacity: 1;
}

.about-img-container:hover .overlay-text {
  transform: translateY(0);
}

.about-img-container:hover .about-img {
  transform: scale(1.03);
}

/* ================= ARTISTS ================= */
.artists-section {
  position: relative;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
  background-image: url("img/fondo3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.artists-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.artists-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.main-title {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.sparkle-text {
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 10px;
  font-style: italic;
  opacity: 0.9;
}

.carousel-container {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: scroll-infinite 35s linear infinite;
}

.artist-card {
  width: 240px;
  flex-shrink: 0;
  text-align: left;
  position: relative;
}

.artist-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.artist-card span {
  display: block;
  margin-top: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1.1rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.artist-card:hover img {
  transform: scale(1.02);
  filter: brightness(1.1);
}

@keyframes scroll-infinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-track:hover {
  animation-play-state: paused;
}

/* ================= SECCIÓN INFORMACIÓN (DISEÑO FINAL) ================= */
/* ================= SECCIÓN INFORMACIÓN FINAL ================= */
.info-section {
    background-color: #d9d9d9;
    /* Reducimos el primer valor (padding-top) para que suba la sección */
    padding: 30px 0 80px 0; 
    text-align: center;
}

.info-title {
    /* Mantenemos Iceland para el título principal si así lo prefieres */
    font-family: 'Iceland', sans-serif; 
    font-size: 3rem;
    margin-bottom: 10px;
}

.info-subtitle {
    /* Aplicamos la tipografía Arimo que definimos antes */
    font-family: 'Arimo', sans-serif; 
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px; /* Espacio antes de las tarjetas */
    font-weight: 400;
}


.info-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* TARJETA ESTILO "BANCA" CON EFECTO */
.info-card {
    background-color: #cfcccc; 
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 450px;
    border-radius: 40px;
    position: relative;
    
    /* Efecto neón violeta abajo */
    box-shadow: 0 12px 0px -2px #8A2BE2; 
    border: 1px solid rgba(255,255,255,0.1);
    
    /* EFECTO QUE HABÍAMOS HECHO ANTES */
    transition: all 0.3s ease-in-out;
}

/* Recuperando la animación al pasar el mouse */
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 0px -2px #8A2BE2; /* La sombra baja un poco más */
}

.card-icon {
    background: #111;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.card-icon img {
    width: 35px;
    filter: invert(1);
}

.card-text {
    text-align: left;
    color: #111;
}

.card-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: bold;
}

.card-text p {
    font-size: 14px;
    line-height: 1.4;
}

/* MINIATURA DEL HIPÓDROMO */
.inner-thumb {
    width: 120px;
    border-radius: 10px;
    margin: 5px 0;
    display: block;
}

/* MAPA DERECHA (ACHICADO) */
.main-map {
    max-width: 480px; /* Antes era 550px, ahora es más chico */
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 15px 0px -2px #8A2BE2;
    transition: transform 0.3s ease;
}

.main-map:hover {
    transform: scale(1.02); /* Efecto sutil al tocar el mapa */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .info-layout { flex-direction: column; align-items: center; }
    .info-card { border-radius: 30px; }
    .main-map { max-width: 90%; }
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .info-layout { flex-direction: column; align-items: center; }
    .info-card { border-radius: 30px; }
}
/* ================= RESPONSIVE: AJUSTE PARA CELULAR ================= */
@media screen and (max-width: 768px) {
  .info-layout {
    flex-direction: column; /* Apilar una cosa arriba de la otra */
    align-items: center;
  }
  
  .info-panels {
    width: 100%;
    order: -1; /* Poner las tarjetas arriba en el celu */
  }
  
  .event-map {
    width: 100%; /* El mapa ocupa todo el ancho en el celu */
    margin-top: 30px;
  }
  
  .info-panel-card {
    padding: 20px;
    gap: 15px;
  }
  
  .panel-icon img {
    width: 40px;
    height: 40px;
  }
}
/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #d9d9d9;
  padding: 40px;
  border-radius: 30px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  position: relative;
  color: #333;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

#modal-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #000;
  
}
/* [08] MODAL - ELIMINAR BOTÓN DE CIERRE INFERIOR */
.close-btn, .close-modal {
    display: none !important;
}

/* ================= COLLABORATORS ================= */
.sponsors-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("img/fondo4.png"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 100px 0;
  z-index: 1;
}

.sponsors-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.sponsors-title {
  color: #fff;
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 80px;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 80px; 
  max-width: 1200px;
  margin: 0 auto;
}

.sponsor-bubble {
  width: 160px;
  height: 160px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -8px 0px 0px 2px #fff;
  transition: all 0.4s ease;
  animation: float-crazy 6s ease-in-out infinite;
}

.sponsor-bubble img {
  width: 70%;
  height: auto;
  mix-blend-mode: screen;
  filter: grayscale(1) brightness(1.3);
}

@keyframes float-crazy {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-15px) translateX(8px); }
  66% { transform: translateY(-8px) translateX(-8px); }
}

/* ================= REGISTRO ================= */
.registration-section {
    background: #d9d9d9;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.registration-container {
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 0 20px;
}

.registration-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #000;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.input-group {
    width: 100%;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 15px;
    border: 2px solid #000;
    font-family: 'Arimo', sans-serif;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: #f9f9f9;
}

/* --- BOTÓN REGISTRO VIOLETA --- */
.btn-submit {
    margin-top: 20px;
    padding: 12px 40px;
    background-color: #8A2BE2; /* Violeta */
    color: #fff;
    border: 2px solid #8A2BE2;
    border-radius: 50px;
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: white; /* Blanco al pasar cursor */
    color: #8A2BE2;          /* Texto Violeta */
    border-color: white;
    transform: scale(1.05);
}

/* ================= FOOTER ================= */
.main-footer {
    background-color: #1a1a1a;
    padding: 60px 0 20px;
    position: relative;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    text-align: center;
    color: white;
    
    border-radius: 40px 40px 0 0; /* Solo redondeado arriba */
    margin-top: -20px; /* Sube un poquito para solapar cualquier borde blanco */
    padding-bottom: 40px; /* Más espacio abajo para que no se corte */

}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-links a img {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links a:hover img {
    transform: translateY(-5px);
    filter: brightness(0.8);
}

.footer-brand {
    position: absolute;
    bottom: 15px;
    right: 30px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    opacity: 0.8;
}
/* [09.1] COPYRIGHT Y DERECHOS */
.footer-bottom {
    margin-top: 40px; /* Espacio entre las redes y el texto */
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Una línea finita divisoria */
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 12px; /* Letra bien chiquita y elegante */
    color: #888;     /* Color gris suave para que no resalte más que el logo */
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Ajuste para celular */
@media (max-width: 768px) {
    .footer-bottom {
        margin-top: 20px;
        width: 90%;
    }
    .footer-bottom p {
        font-size: 10px;
    }
}

/* ================= RESPONSIVE GENERAL ================= */
@media (max-width: 768px) {

  .flip-card {
    flex: 1;
    height: 70px;
  }
  .flip-card span { font-size: 22px; }
  .flip-card p { font-size: 9px; bottom: -25px; }

  .about-img-container {
    width: 100%;
    margin-top: 60px;
  }
  .overlay-text { font-size: 16px; padding: 15px; }

  .info-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .info-item img { width: 100px; height: 100px; }

  .registration-title { font-size: 1.8rem; }
  .registration-container { max-width: 90%; }
}
/* ESTRUCTURA DE DOS COLUMNAS */
.registration-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.form-side {
  flex: 1;
  max-width: 450px;
}

.image-side {
  flex: 1;
}

.reg-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 4px;
  filter: grayscale(1); /* Efecto blanco y negro de la foto */
}

/* INPUTS CON BORDE NEGRO */
.input-group input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 15px;
  border: 3px solid #000;
  background: white;
  margin-bottom: 10px;
}

/* BOTÓN VIOLETA OVALADO */
.btn-submit {
  display: block;
  margin: 20px auto 0; /* Lo centra bajo el form */
  padding: 15px 50px;
  background-color: #8A2BE2;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: white;
  color: #8A2BE2;
}

/* AJUSTE PARA CELULARES */
@media (max-width: 768px) {
  .registration-layout {
    flex-direction: column;
    text-align: center;
  }
  .image-side { order: -1; } /* La imagen arriba en el celu */
}
/* --- OCULTAR IMAGEN EN CELULARES --- */

/* Esta regla se aplica a pantallas de 768px o menos (celulares y tablets chicas) */
@media screen and (max-width: 768px) {
  .image-side {
    display: none !important; /* ¡OCULTA EL CONTENEDOR DE LA IMAGEN! */
  }
}







































/* ================= CELULAR (RESPONSIVE) ================= */
@media (max-width: 768px) {
  /* 1. Contenedores */
  .container {
    padding: 0 20px !important;
    width: 100%;
  }

  /* 2. Hero */
/* 2. Hero (AJUSTADO PARA BAJAR BOTÓN) */
  .hero {
    align-items: flex-start !important; /* Cambiamos de center a inicio */
    padding-top: 35vh; /* Empuja todo el contenido (logo y texto) hacia abajo */
  }

  .logo {
    width: 280px;
    height: auto;
    margin-bottom: 10px;
  }

  .hero .description {
    margin-bottom: 5px; /* Espacio bajo el texto */
  }

  /* Este es el botón violeta de la primera pantalla */
  .hero .btn {
    margin-top: 130px !important; /* ¡AQUÍ LO BAJAMOS! Ajusta este número a tu gusto */
    width: 240px;
    display: block;
    /* Define el ancho al 90% de la pantalla para que sea alargado */
    width: 70% !important;
    
    /* Centra el botón horizontalmente */
    margin-left: auto !important;
    margin-right: auto !important;
    
    /* Asegura que el padding no lo deforme */
    padding: 15px 0 !important; 
    
    /* Centra el texto dentro del botón */
    text-align: center !important;
  }


  /* 3. About: Contador Flip horizontal */
  .countdown {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 40px auto;
    padding: 0 10px;
    box-sizing: border-box;
    gap: 8px;
  }

  /* [03.1] BAJAR CONTENIDO */
.about-title {
    margin-top: 100px !important; /* Baja el título "¡Sobre nosotros!" */
    margin-bottom: 30px;
}

/* [03.2] TEXTO FIJO EN CELULAR */
@media (max-width: 768px) {
    /* Hacemos que el fondo oscuro del texto se vea siempre */
    .image-overlay {
        opacity: 1 !important; 
        background: rgba(0, 0, 0, 0.5) !important; /* Fondo semi-transparente para leer bien */
        display: flex !important;
        align-items: flex-end !important; /* Centra el texto en la imagen */
        padding: 10px !important;
    }

    /* Ajustamos el texto para que no se mueva */
    .overlay-text {
        transform: translateY(0) !important;
        font-size: 12px !important;
        text-shadow: 0,5px 0,5px 5px rgba(0,0,0,0.8);
    }
}

  .flip-card {
    flex: 1;
    min-width: 0;
    height: 70px;
    background: #000;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .flip-card span {
    font-size: 22px;
    font-family: 'Iceland', sans-serif;
    color: #fff;
  }

  .flip-card p {
    font-size: 9px;
    bottom: -25px;
    position: absolute;
    width: 100%;
    text-align: center;
    color: #000;
    white-space: nowrap;
  }

  .about-img-container {
    width: 100%;
    margin-top: 60px;
  }

  .overlay-text {
    font-size: 19px;
    padding: 15px;
  }

  /* 4. Artistas */
  .artist-card {
    width: 170px;
  }
  .artist-card img {
    height: 260px;
  }

  /* >>> 5. INFORMACIÓN (NUEVO DISEÑO ARRIBA) <<< */
  .info-section {
    padding: 20px 0 40px 0; /* Subimos la sección */
    background-color: #d9d9d9;
  }

  .info-title {
    font-size: 2.2rem;
    margin-bottom: 5px;
  }

  .info-subtitle {
    font-family: 'Arimo', sans-serif !important; /* Tipografía Arimo aplicada */
    font-size: 1rem;
    margin-bottom: 25px;
    padding: 0 15px;
  }

  .info-layout {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .info-card {
    width: 95%;
    max-width: 100%;
    border-radius: 25px; /* Bordes redondeados tipo banca */
    padding: 15px;
    box-shadow: 0 10px 0px -2px #8A2BE2; /* Sombra violeta neón */
  }

  .main-map {
    max-width: 90%; /* Mapa achicado */
    border-radius: 25px;
    margin-top: 20px;
    box-shadow: 0 10px 0px -2px #8A2BE2;
  }

  /* 6. Colaboradores (Burbujas) */
  .sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sponsor-bubble {
    width: 90px;
    height: 90px;
    margin: 0 !important;
  }

  /* 7. Modal */
  .modal-content {
    width: 95%;
    padding: 20px;
  }

  /* >>> 8. REGISTRO (AJUSTADO) <<< */
  .registration-section {
    padding: 40px 0;
  }

  .registration-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .input-group input {
    font-size: 14px;
    padding: 12px 15px;
    border-radius: 12px;
  }

  .btn-submit {
    width: auto; /* Ya no ocupa el 80%, es más fino */
    max-width: 200px;
    padding: 10px 25px;
    font-size: 15px;
    margin: 45px auto 10px auto !important; /* 45px de margen arriba para bajarlo más */
    display: block;
    border-radius: 100px;
  }
}

/* Estilos base para la página de éxito */
.success-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
    background-color: #000;
    background-image: url('img/fondo5.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}





/* ================================================================
   ÍNDICE DE BUSQUEDA RÁPIDA (Usa Ctrl + F para saltar a la sección)
   ================================================================
   [01] RESET & GENERAL ....... Estilos base y tipografías.
   [02] HERO SECTION .......... Pantalla principal (Fondo, Logo, Botón 1).
   [03] ABOUT SECTION ......... Contador (Flip Cards) y fotos.
   [04] ARTISTS SECTION ....... Carrusel de artistas.
   [05] INFO SECTION .......... Tarjetas de información y mapa.
   [06] SPONSORS .............. Burbujas de colaboradores.
   [07] REGISTRO SECTION ...... Formulario y Botón "Reservar ticket".
   [08] MODAL ................. Ventanas emergentes.
   [09] FOOTER ................ Redes sociales y pie de página.
   [10] RESPONSIVE CELULAR .... Todo lo que cambia en móviles.
   ================================================================
*/