  @font-face {
    font-family: 'Mango Grotesque-VF';
    src: url('../fonts/Mango Grotesque-VF.ttf') format('truetype');
    font-style: normal;
  }
  @font-face {
    font-family: 'GothamBook';
    src: url('../fonts/GothamBook.ttf') format('truetype');
    font-style: normal;
  }
  @font-face {
    font-family: 'GothamBold';
    src: url('../fonts/GothamBold.ttf') format('truetype');
    font-style: normal;
  }
  @font-face {
    font-family: 'Gotham-Black';
    src: url('../fonts/Gotham-Black.otf') format('truetype');
    font-style: normal;
  }

/* styles.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.hero-section {
  background-color: #f4a300; /* Fondo naranja */
  text-align: center;
  padding: 2rem 1rem;
}

.logo-container {
  margin-bottom: 1rem;
}

.logo {
  max-width: 250px;
}

.main-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0.5rem 0;
}

.highlight {
  color: #884aff; /* Color del texto destacado */
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.description {
    padding: 2rem;
    line-height: 1.6;
    font-size: 1.2rem;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.description p {
  margin: 1rem 0;
}

.cta h1 {
    text-align: center;
    color: #f4a300;
    font-weight: bold;
    margin-top: 1rem;
    font-size: 3rem;
    font-family: "Mango Grotesque", sans-serif;
}

.cta h2 {
    text-align: center;
    font-weight: bold;
    margin-top: 5rem;
    font-size: 3rem;
    font-family: "Mango Grotesque", sans-serif;
    width: 100%;
}


/* Galería general */
.gallery {
  display: flex;
  flex-wrap: wrap; /* Permite que las imágenes pasen a la siguiente fila si no caben */
  justify-content: space-between; /* Espacio uniforme entre imágenes */
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
margin: 50px 0;
}

/* Ítem individual de la galería */
.gallery-item {
  flex: 1 1 calc(14.28% - 1rem); /* 7 imágenes en una fila en pantallas grandes */
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}

.gallery-item img {
  width: 100%; /* La imagen ocupa todo el contenedor */
  height: auto; /* Mantiene proporciones */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0.8; /* Opacidad al pasar el ratón */
}

.gallery-item img:hover {
    position: relative;
    opacity: 1;
    transform: scale(1.5);
    z-index: 11111;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* Diseño responsivo */
@media (max-width: 1024px) {
  .gallery-item {
    flex: 1 1 calc(33.33% - 1rem); /* 3 imágenes por fila en tablets */
  }
}

@media (max-width: 768px) {
  .gallery {
    overflow-x: auto; /* Hacer desplazable horizontal en móviles */
    flex-wrap: nowrap; /* Mantener imágenes en una sola fila en móviles */
  }

  .gallery-item {
    flex: 0 0 auto; /* Mantener tamaño fijo para cada imagen */
    width: 80%; /* Mostrar imágenes más grandes en móviles */
  }
}



/* General accordion section */
.accordion-section {
  background-color: #ee5124; /* Fondo naranja */
  padding: 2rem;
  color: white;
  text-align: center;
border-bottom: solid 2px #fff;
}

.accordion-section-2 {
  background-color: #f39cc1;
  padding: 2rem;
  color: white;
  text-align: center;
}

.accordion-section-4 {
  background-color: #234872;
  padding: 2rem;
  color: white;
  text-align: center;
}

.accordion-section-5 {
  background-color: #0e564d;
  padding: 2rem;
  color: white;
  text-align: center;
}


/* Accordion item */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-section-5 .accordion,
.accordion-section-4 .accordion,
.accordion-section-3 .accordion,
.accordion-section-2 .accordion {
    max-width: 1200px;
}

.accordion-item {
  margin-bottom: 1rem;
}



/* Accordion header */
.accordion-header {
  background: transparent;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;foo
  font-family: Arial, sans-serif;
}

.accordion-header .text {
  position: relative;
  z-index: 1;
  flex: 1;
    font-family: "Mango Grotesque", sans-serif;
    font-size: 4rem;
    text-transform: none;
}

@media (max-width: 480px) {
.accordion-header .text {
    font-size: 2rem;
}
.accordion-section .accordion-content h2 {
    font-size: 2.5rem !important;
}
.accordion-section .accordion-content h2 {
    font-size: 3rem;
}
.event-section {
    padding: 0 !important;
}
}

.accordion-header .text::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 3.5%;
    width: 93%;
    height: 30px;
    background: rgb(236 118 36);
    z-index: -1;
}

.accordion-section-2 .accordion-header .text::before {

    left: 20%;
    width: 60%;
    background: #ef7672;
}

.accordion-section-4 .accordion-header .text::before {

    left: 20%;
    width: 60%;
    background: #6372a9;
}

.accordion-section-5 .accordion-header .text::before {

    left: 20%;
    width: 60%;
    background: #296996;
}

.accordion-section-3 {
    background-color: #8085c1;
    padding: 2rem;
    color: white;
    text-align: center;
}

.accordion-section-3 .accordion-header .text::before {
    left: 20%;
    width: 60%;
    background: #b990c1;
}

.accordion-content .text {
  position: relative;
  z-index: 1;
  flex: 1;
border-top: solid 3px;
    margin: 30px 0;
    padding: 30px 0;
}

.accordion-content .text::before {
    content: "";
    position: absolute;
top: 60px;
    left: 26%;
    width: 48%;
    height: 30px;
    background: rgb(236 118 36);
    z-index: -1;
}



.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg); /* Rotar la flecha hacia arriba */
}

/* Accordion content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.accordion-content p {
  margin: 1rem 0;
}

.accordion-section .accordion-content h2 {
font-size: 4rem;
    font-family: "Mango Grotesque", sans-serif;
    font-weight: 500;
}

.accordion-section-4 h3, .accordion-section-4 h2, .accordion-section-4 p, .accordion-section-4 a, .accordion-section-5 h3, .accordion-section-5 h2, .accordion-section-5 p, .accordion-section-5 a {
    color: #fff;
}

/* footer  */

.footer {
    margin-top: 50px;
}

.footer img {
    width: 100%;
}



/* Sección de eventos */
.event-section {
  padding: 2rem;
  font-family: Arial, sans-serif;
  color: #333; /* Color del texto */
  line-height: 1.6;
border-top: solid 2px #fff;
}

/* Evento individual */
.event {
text-align: left;
  margin-bottom: 2rem; /* Espaciado entre eventos */
}

.event hr{
    border: solid 1px #ffffff2b;
    width: 56%;
margin: 3% auto;
}

/* Horario */
.time {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.2rem;
}

/* Ubicación */
.location {
  font-size: 1rem;
  color: #555; /* Color ligeramente más claro */

margin: 0px !important;
}

/* Título */
.title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #333; /* Texto oscuro */
  margin-bottom: 1rem;
}

/* Descripción */
.acordion-description {
  font-size: 1rem;
  text-align: justify; /* Justificar texto */
  color: #333;
padding: 0;
}

