/* ====== VARIABLES Y ESTILOS GLOBALES ====== */
:root {
  --color-rojo: #E63946;
  --color-naranja: #F4A261;
  --color-negro: #1A1A1A;
  --color-blanco: #FFFFFF;
  --color-gris: #2B2D42;
  --color-gris-claro: #8D99AE;
  --color-amarillo: #FFD166;
}

@font-face {
  font-family: 'Accidental Presidency';
  src: url('/fonts/accid___.woff') format('woff'),
       url('/fonts/accid___.woff2') format('woff2'),
       url('/fonts/accid___.ttf') format('truetype');
        font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--color-negro);
  color: var(--color-blanco);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Accidental Presidency', sans-serif;
  font-weight: normal;
  color: var(--color-rojo);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background-color: var(--color-rojo);
  color: var(--color-blanco);
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--color-naranja);
  transform: translateY(-2px);
}

.btn-secundario {
  background-color: transparent;
  border: 2px solid var(--color-rojo);
  margin-left: 15px;
}

.btn-secundario:hover {
  background-color: var(--color-rojo);
}

/* ====== HEADER ====== */
.header {
  background-color: var(--color-negro);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: var(--color-blanco);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--color-rojo);
}

.nav .btn {
  font-size: 0.9rem;
  padding: 8px 20px;
}

/* ====== HERO SECTION ====== */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('/image/ARMELO\ PERRO\ \(9\ de\ 7\).png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--color-blanco);
}

.hero .btn {
  font-size: 1.2rem;
  padding: 15px 40px;
}

/* ====== SECCIÓN INFO EVENTO ====== */
.info-evento {
  background-color: var(--color-blanco);
  color: var(--color-negro);
  padding: 80px 0;
}

.info-evento .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.info-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-negro);
}

.info-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.info-list {
  list-style: none;
  margin-top: 30px;
}

.info-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.info-list li:before {
  content: "•";
  color: var(--color-rojo);
  font-size: 1.5rem;
  margin-right: 10px;
}

.video-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* ====== SECCIÓN CAPTURA DE DATOS ====== */
.captura-datos {
  background-color: var(--color-negro);
  padding: 80px 0;
  text-align: center;
}

.captura-datos h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.captura-datos p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.formulario {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input, 
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-gris-claro);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-blanco);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-rojo);
}

.captura-datos:target {
  animation: highlight 2s ease-in-out;
}

@keyframes highlight {
  0% { background-color: var(--color-negro); }
  50% { background-color: rgba(230, 57, 70, 0.1); }
  100% { background-color: var(--color-negro); }
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

.cupos-restantes {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 1.1rem;
}

#contador-cupos {
  font-weight: bold;
  color: var(--color-rojo);
  font-size: 1.3rem;
}

/* ====== SECCIÓN SEDE ====== */
#sede {
  background-color: var(--color-blanco);
  color: var(--color-negro);
  padding: 80px 0;
  text-align: center;
}

#sede h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-negro);
}

#sede p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.info-sede {
  max-width: 600px;
  margin: 30px auto 0;
  text-align: left;
  background: rgba(230, 57, 70, 0.1);
  padding: 25px;
  border-radius: 10px;
}

.info-sede p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* ====== ESTILOS DE MENSAJES Y LOADING ====== */
.mensaje-exito {
  background: #4CAF50;
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  text-align: center;
  border-left: 5px solid #45a049;
}

.mensaje-error {
  background: #f44336;
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  text-align: center;
  border-left: 5px solid #d32f2f;
  display: none;
}

.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #E63946;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes spin {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

/* ====== SECCIÓN DE PAGO ====== */
#seccion-pago {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-blanco);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

#seccion-pago h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--color-negro);
}

#seccion-pago > p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--color-negro);
}

.metodos-pago {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 30px 0;
}

.metodo-pago {
  background: var(--color-gris-claro);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.metodo-pago:hover {
  border-color: var(--color-rojo);
  transform: translateY(-2px);
}

.metodo-pago h4 {
  color: var(--color-amarillo);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

/* ===== CONTENEDOR BOLD ===== */
#boton-bold-container {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  padding: 20px;
  background: var(--color-blanco);
  border-radius: 10px;
  border: 2px dashed var(--color-gris-claro);
  transition: all 0.3s ease;
}

#boton-bold-container:hover {
  border-color: var(--color-rojo);
}

.bold-info {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--color-gris-claro);
}

.info-reserva {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  margin: 25px 0;
  text-align: left;
}

.info-reserva h4 {
  margin-bottom: 15px;
  text-align: center;
  color: var(--color-negro);
}

#resumen-reserva p {
  margin-bottom: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-negro);
}

.info-importante {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  color: var(--color-negro);
}

/* ====== SECCIÓN EVENTOS ====== */
.eventos-hero {
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('/image/ARMELO\ PERRO\ \(13\ de\ 7\).png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.eventos-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hamburguesa-section {
  padding: 80px 0;
  background-color: var(--color-blanco);
  color: var(--color-negro);
}

.hamburguesa-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hamburguesa-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-negro);
}

.hamburguesa-text h3 {
  font-size: 1.5rem;
  margin: 25px 0 15px;
  color: var(--color-negro);
}

.hamburguesa-text ul {
  list-style: none;
  margin-left: 20px;
}

.hamburguesa-text li {
  margin-bottom: 10px;
  position: relative;
}

.hamburguesa-text li:before {
  content: "•";
  color: var(--color-rojo);
  position: absolute;
  left: -25px;
}

/* Estilos del Carrusel */
.hamburguesa-carousel {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 400px; /* Ajusta según necesites */
  overflow: hidden;
}

.carousel-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

/* Indicadores */
.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.indicator.active {
  background-color: var(--color-rojo);
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Botones de navegación */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburguesa-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .carousel-container {
    height: 300px;
  }
  
  .hamburguesa-text h2 {
    font-size: 2rem;
  }
}
.actividades {
  padding: 80px 0;
  background-color: var(--color-blanco);
}

.actividades h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--color-negro);
}

.actividades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.actividad {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--color-blanco);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.actividad:hover {
  transform: translateY(-10px);
}

.actividad-imagen {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-color: var(--color-rojo);
}

.imagen-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--color-rojo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-blanco);
  font-weight: bold;
}

.actividad h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-negro);
}

.actividad p {
  color: var(--color-gris);
}

.oferta {
  padding: 80px 0;
  background-color: var(--color-negro);
  text-align: center;
}

.oferta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.oferta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.oferta ul {
  text-align: left;
  display: inline-block;
  color: white;
  margin-bottom: 30px;
}

.oferta li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.multimedia {
  padding: 80px 0;
  background-color: var(--color-blanco);
}

.multimedia h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--color-negro);
}

.multimedia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.media-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: var(--color-blanco);
}

.media-item h4 {
  padding: 20px;
  margin: 0;
  background: var(--color-rojo);
  color: var(--color-blanco);
  text-align: center;
  font-size: 1.2rem;
}

.media-item video {
  width: 100%;
  height: auto;
  display: block;
}

/* ====== SECCIÓN SOBRE NOSOTROS ====== */
.sobre-hero {
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('/image/SobreNosotros.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.sobre-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

/* ===== SECCIÓN HISTORIA (LÍNEA DE TIEMPO) ===== */
.historia {
  padding: 80px 0;
  background-color: var(--color-blanco);
  color: var(--color-negro);
}

.historia h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--color-negro);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-rojo);
  transform: translateX(-50%);
}

.timeline-item {
  background: var(--color-blanco);
  padding: 20px;
  margin: 30px 0;
  border-radius: 15px;
  box-shadow: var(--sombra);
  position: relative;
  width: calc(50% - 40px);
}

.timeline-item:nth-child(odd) {
  margin-left: auto;
}

.timeline-item:nth-child(even) {
  margin-right: auto;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--color-rojo);
  border-radius: 50%;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
  left: -50px;
}

.timeline-item:nth-child(even)::before {
  right: -50px;
}

.timeline-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--color-negro);
}

.timeline-item p {
  color: var(--color-gris);
}

.alianzas {
  padding: 80px 0;
  background-color: var(--color-blanco);
}

.alianzas h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--color-negro);
}

.alianzas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.alianza {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--color-blanco);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.alianza:hover {
  transform: translateY(-5px);
}

.alianza-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background-color: var(--color-blanco);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alianza-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.alianza h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-negro);
}

.alianza p {
  color: var(--color-gris);
}



/* ====== FOOTER ====== */
.footer {
  background-color: var(--color-negro);
  padding: 50px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--color-blanco);
}

.footer-section p, .footer-section a {
  color: var(--color-gris-claro);
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--color-rojo);
}

/* Estilos para íconos sociales */

.social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
  width: 100%;
  position: relative; /* Para referencia si es necesario */
}

.social-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-gris);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--color-blanco);
}

.social-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centrado perfecto */
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
}

/* Para imágenes */
.social-image {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Para SVG */
.social-icon svg {
  width: 20px;
  height: 20px;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-gris-claro);
  font-size: 0.9rem;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .info-evento .container,
  .hamburguesa-content,
  .actividades-grid,
  .multimedia-grid,
  .alianzas-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .eventos-hero h1,
  .sobre-hero h1 {
    font-size: 2.5rem;
  }
  
  .actividades-grid,
  .alianzas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .actividades-grid,
  .alianzas-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-secundario {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .hero,
  .eventos-hero,
  .sobre-hero {
    background-attachment: scroll;
  }
  
  #seccion-pago {
    padding: 25px;
  }
}

/* Efectos de scroll suave para las secciones */
section {
  scroll-margin-top: 80px;
}

/* Mejoras visuales para el botón de Bold */
#boton-bold-container {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estilos para el modo prueba */
#boton-bold-container[data-test-mode] {
  background: rgba(255, 165, 0, 0.1);
  border: 2px dashed orange;
  padding: 20px;
  border-radius: 10px;
}