/* Estilos generales */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Banner Section */
.banner-section {
  position: relative;
  color: #fff;
  height: 100vh; /* Ocupa toda la pantalla */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url("/assets/images/banner2.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* PARALLAX EFFECT */
}

.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 13, 13, 0.8); /* Overlay oscuro */
  z-index: 1; /* Capa encima del video */
}

.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 13, 13, 0.8); /* Overlay oscuro */
  z-index: 1; /* Capa encima del video */
}

.banner-section .container {
  position: relative;
  z-index: 2; /* Eleva el contenido sobre el overlay */
}

.banner-image {
  max-width: 700px;
  width: 100%;
  margin: 0 auto 20px;
  animation: slideUp 1s forwards; /* Aparece con deslizamiento */
}

.banner-text {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  animation: slideUp 1.2s forwards; /* Retraso para aparecer */
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-section {
    padding: 100px 20px;
  }

  .banner-text {
    font-size: 32px;
  }

  .banner-image {
    max-width: 400px;
  }

  .banner-section {
    background-attachment: scroll !important;
    background-size: cover;
    background-position: center center;
  }
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s forwards;
}

.animate-slide-up.delay-1 {
  animation-delay: 0.8s;
}

.animate-slide-up.delay-2 {
  animation-delay: 1.1s;
}

.animate-slide-up.delay-3 {
  animation-delay: 1.4s;
}

/* Sección principal */
.main-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  color: #fff;
  background-color: rgb(14, 13, 13);
}

.main-section .text-content {
  max-width: 50%;
  /*background-color: rgba(121, 0, 0, 0.8);
    Opacity start
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.80;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    Opacity end
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);*/
  border-radius: 10px;
  padding: 20px;
}

.main-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.main-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.videos {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.video-left,
.video-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.video-right {
  text-align: right;
}

#eventContainer {
  width: 70%;
}

@media (max-width: 1600px) {
  #eventContainer {
    width: 80%;
    justify-self: center;
  }

  .videos {
    width: 80%;
  }
}

@media (max-width: 1200px) {
  #eventContainer {
    width: 100%;
    justify-self: center;
  }

  .span-text-content {
    display: none;
  }
}

@media (max-width: 1024px) {
  .main-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .main-section .text-content {
    max-width: 100%;
    text-align: left;
  }

  .video-left,
  .video-right {
    width: 50%;
  }

  .text-content {
    width: 90%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .main-section {
    flex-direction: column-reverse;
    padding: 30px;
  }

  .main-section h2 {
    font-size: 2.2rem;
  }

  .video-right,
  .video-left {
    text-align: center;
  }

  .video-left,
  .video-right {
    width: 70%;
  }
}

/* Parallax Effect para el fondo del carrusel */
.parallax-eventos {
  position: relative;
  background-image: url("/assets/images/fondo-eventos2.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eventos-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

.titulo-eventos {
  color: white;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.eventos-section {
  z-index: 2;
  position: relative;
}

.event-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

.card-body {
  padding: 15px;
}

.event-place {
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.hashtag {
  font-weight: bold;
  color: #ff4d00;
}

.btn-icon {
  height: 25px;
}

#eventContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

@media (max-width: 767px) {
  .col-md-4 {
    flex: 0 0 48%;
    max-width: 48%;
  }

  #eventContainer {
    width: 90%;
  }

  .parallax-eventos {
    background-attachment: scroll !important;
    background-size: cover;
    background-position: center center;
  }
}

@media (max-width: 576px) {
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #eventContainer {
    width: 70%;
  }
}

.fecha-container {
  display: flex;
  align-items: center;
  gap: 10px; /* Espacio entre la línea y la fecha */
}

.fecha-linea {
  flex-grow: 1; /* Hace que la línea se expanda */
  height: 2px;
  background-color: #ccc; /* Color de la línea */
  position: relative;
}

.fecha-linea::after {
  position: absolute;
  right: -15px; /* Ajuste de posición de la flecha */
  font-size: 1.2rem;
  color: #ccc;
}

.fecha-text {
  font-size: 0.85rem;
  font-weight: bold;
  color: #555;
}
.historia-leclat {
  background-color: #0d0d0d;
  padding: 60px 20px;
  color: #e0ce99;
  font-family: "Courier New", Courier, monospace;
  font-weight: 800;
  text-align: center;
  overflow: hidden; /* oculta el scroll horizontal */
}

.historia-titulo {
  font-family: "Courier New", Courier, monospace; /* o alguna otra fuente llamativa que tengas */
  font-size: 2.5rem;
  margin-bottom: 40px;
  letter-spacing: 2px;
  color: #e0ce99;
  text-shadow: 0 0 10px rgba(224, 206, 153, 0.3);
  font-weight: 500;
}

.historia-contenedor {
  overflow: hidden; /* Ocultamos scroll manual */
  width: 100%;
}

.historia-slider {
  display: flex;
  gap: 20px;
  animation: scrollYRewind 20s infinite;
}

@keyframes scrollYRewind {
  0% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(-100%);
  }
  81% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.historia-item {
  flex: 0 0 80%;
  background-color: #1a1a1a;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.historia-item:hover {
  transform: scale(1.02);
}

.historia-item img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  object-fit: cover;
  max-height: 400px;
}

.historia-item p {
  font-size: 1rem;
  color: #e0ce99;
}

.historia-reserva {
  margin-top: 40px;
}

.historia-reserva p {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.historia-reserva a {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #e0ce99;
  color: #e0ce99;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.historia-reserva a:hover {
  background-color: #e0ce99;
  color: #0d0d0d;
}

.btn-reserva {
  display: inline-block;
  padding: 12px 24px;
  background-color: #e0ce99;
  color: #0d0d0d;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-reserva:hover {
  background-color: #d5be87;
  color: #000;
}

/* Modal oscuro y elegante */
.custom-modal-content {
  background-color: #0f0f0f !important;
  color: #e0ce99;
  border: 2px solid #e0ce99;
  border-radius: 14px;
  padding: 25px;
}

.custom-modal-content .modal-header {
  border-bottom: 1px solid rgba(224, 206, 153, 0.2);
}

.custom-modal-content .modal-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  font-size: 1.4rem;
  color: #e0ce99;
}

.custom-modal-content .modal-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}

.wpp-buttons {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.btn-wpp {
  background-color: #e0ce99;
  color: #0f0f0f;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-wpp:hover {
  background-color: #cdb875;
  color: #000;
}

.separador {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.linea {
  flex: 1;
  height: 1px;
  background-color: #fff;
  max-width: 100%;
}

.icono-separador {
  height: 30px;
  margin: 0 15px;
}

@media (max-width: 768px) {
  .historia-item {
    flex: 0 0 100%;
    padding: 5px;
  }

  .historia-item img {
    max-height: 200px;
  }

  @keyframes scrollYRewind {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(-410%);
    }
    81% {
      transform: translateX(-410%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .historia-slider {
    animation: scrollYRewind 20s infinite;
  }
}

@media (min-width: 768px) {
  .historia-item {
    flex: 0 0 40%;
  }
}

.social-icons-banner {
  margin-top: 15px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons-banner a {
  width: 60px; /* Tamaño del círculo */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%; /* Hace el círculo */
  background-color: rgba(255, 255, 255, 0.2); /* Color del fondo del círculo */
  transition: all 0.3s ease-in-out;
}

.social-icons-banner a i {
  font-size: 32px; /* Tamaño del ícono */
  color: white;
}

.social-icons-banner a:hover {
  background-color: rgba(255, 255, 255, 0.4); /* Efecto hover */
  transform: scale(1.1); /* Agranda el botón al pasar el mouse */
}

.parallax-transporte {
  position: relative;
  background-image: url("/assets/images/fondo-transporte.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transporte-overlay {
  background-color: rgba(65, 65, 65, 0.5);
  width: 100%;
  height: 100%;
}

.transporte-section {
  z-index: 2;
  position: relative;
}

#transporte {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 20px;
}

.transporte-title {
  font-weight: bold;
  color: #ff4d00;
  text-transform: uppercase;
}

.localidades-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.localidades-list li {
  background: linear-gradient(135deg, #ff4d00, #ff6a00);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  padding: 10px 20px;
  list-style: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  font-size: 0.95rem;
  box-shadow: 0 0 8px rgba(255, 77, 0, 0.5);
}

.localidades-list li.visible {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.8);
}

/* Botón personalizado naranja fuego */
.btn-consulta-transporte {
  background: linear-gradient(135deg, #ff4d00, #ff6a00);
  border: none;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.6);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
}

.btn-consulta-transporte i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #fff;
}

.btn-consulta-transporte strong {
  color: #fff;
}

.btn-consulta-transporte:hover {
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(255, 77, 0, 0.9);
  color: #fff;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .localidades-list li {
    width: 100%;
    text-align: center;
  }

  .btn-consulta-transporte {
    width: 100%;
    text-align: center;
  }

  #transporte {
    border-radius: 0px;
  }
  
  .parallax-transporte {
    background-attachment: scroll !important;
    background-size: cover;
    background-position: center center;
  }
}

.faq-horizon {
  background-color: #111;
  padding: 80px 20px;
  font-family: "SFPro", sans-serif;
  color: #eee;
}

.faq-h-title {
  text-align: center;
  color: #ff6a00;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.faq-h-subtitle {
  text-align: center;
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.faq-h-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 950px;
  margin: 0 auto;
}

.faq-h-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #1a1a1a;
  border: 1px solid #2b2b2b;
  border-radius: 14px;
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-h-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(249, 130, 28, 0.1);
}

.faq-h-icon {
  font-size: 2rem;
  color: #ff6a00;
  flex-shrink: 0;
  margin-top: 4px;
}

.faq-h-question {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.faq-h-answer {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .faq-h-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .faq-h-icon {
    margin-bottom: 8px;
  }
}

/* Animaciones suaves */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.animate-fade-up.delay-1 {
  animation-delay: 0.1s;
}
.animate-fade-up.delay-2 {
  animation-delay: 0.2s;
}
.animate-fade-up.delay-3 {
  animation-delay: 0.3s;
}
.animate-fade-up.delay-4 {
  animation-delay: 0.4s;
}
.animate-fade-up.delay-5 {
  animation-delay: 0.5s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 576px) {
  .fancy-button {
    font-size: 1rem;
  }

  .fancy-body {
    font-size: 0.9rem;
  }
}
