/* imports */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Caveat:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* fonts */

.logo-responsive {
    max-width: 100%; /* Ocupa el ancho máximo del contenedor */
    height: auto; /* Mantiene las proporciones */
  }
  
  @media (max-width: 768px) { /* Pantallas pequeñas */
    .logo-responsive {
      max-width: 90px; /* Reduce el tamaño del logo */
    }
}
  

.raleway {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-display: swap;
}
.bebas-neue-regular {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.btn-reserva {
    min-width: 150px; /* Define un ancho mínimo */
    height: 50px;     /* Establece una altura fija */
    background-color: #cb9b64;
    color: white;
    font-size: 1.25rem; /* Tamaño de fuente */
    border: none;      /* Sin bordes */
    border-radius: 5px; /* Bordes redondeados opcionales */
    cursor: pointer;   /* Cambia el cursor al pasar */
    transition: background-color 0.3s ease; /* Efecto suave al pasar el mouse */
}
  
.btn-reserva:hover {
    background-color: #a3774e; /* Color más oscuro al pasar el mouse */
}

.btn:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}
  
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.ticket {
    display: inline-block;
    background-color: #cb9b64;
    border-radius: 13px;       
    transition: background-color 0.3s;
}

.features-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 15px;
    font-family: Arial, sans-serif;
}

.features-list {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    padding: 15px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 15px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #1a237e;
    font-size: 14px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.accordion-item {
    background-color: transparent; /* Fondo transparente */
    border: none; /* Sin bordes */
  }

  /* Botón del acordeón */
  .accordion-button {
    background-color: transparent; /* Fondo transparente */
    color: white; /* Texto blanco */
    border: none; /* Sin bordes */
  }

  /* Botón al estar expandido */
  .accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.1); /* Fondo semi-transparente al expandirse */
    color: white; /* Texto blanco */
    box-shadow: none; /* Quitar sombra */
  }

  /* Cuerpo del acordeón */
  .accordion-body {
    background-color: transparent; /* Fondo transparente */
    color: white; /* Texto blanco */
}

 /* Cambiar color de las flechas generadas por Bootstrap */
.accordion-button::after {
    color: white !important; /* Cambiar color del pseudo-elemento */
    filter: brightness(0) invert(1); /* Si son imágenes, ajusta su color */
}

/* Asegurar que las flechas al expandirse también sean blancas */
.accordion-button:not(.collapsed)::after {
    color: white !important;
    filter: brightness(0) invert(1); /* Para SVGs o imágenes */
}




@media (max-width: 480px) {
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@keyframes show {
    from {
        opacity: 0;
        scale: 25%;
    }

    to {
        opacity: 1;
        scale: 100%;
    }
   }

   .img-animation {
    view-timeline-name: --image;
    view-timeline-axis: block;

    animation-timeline: --image;
    animation-name: show;

    animation-range: entry 25% cover 45%;

   }