@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cantata+One&family=Gravitas+One&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Rakkas&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('fonts/RockersGarage.ttf');

.rockersG {
  font-family: 'Rockers Garage', sans-serif;
}

.buscar-txt {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}

.card {
  width: 100%;
  border-radius: 10px;
}

.card img {
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}

.gradiente-fondo {
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(16,22,91,1) 65%); 
  font-family: "Open Sans", sans-serif;
}

/* 3D Spinner */
.owl-carousel .item {
  text-align: center;
  padding: 30px;
  margin-bottom: 10px;
  opacity: .2;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Estilo para el item activo */
.owl-carousel .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1.0, 1.0, 1);
  transform: scale3d(1.0, 1.0, 1);
}

/* Estilos para los dots personalizados */
.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dots .owl-dot {
  display: inline-block;
  margin: 0 10px;
  width: 80px;
  height: 80px;
  background-image: url('../assets/img/inspira/calendar.png'); /* Imagen por defecto */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10%;
  cursor: pointer;
  position: relative;
  transition: background-image 0.3s, transform 0.3s;
}

/* Estilo del dot activo */
.owl-dots .owl-dot.active {
  background-image: url('../assets/img/inspira/calendar-hover-linea-blanca.png'); /* Imagen activa */
}

/* Efecto de hover sobre los dots */
.owl-dots .owl-dot:hover {
  background-image: url('../assets/img/inspira/calendar-hover-linea-blanca.png'); /* Cambia la imagen al pasar el mouse */
  transform: scale(1.1);
}

/* Texto del día */
.owl-dots .owl-dot .day-text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: bold;
  color: #000; /* Color del texto del día por defecto */
  transition: color 0.3s; /* Transición suave para el cambio de color */
}

/* Texto del mes */
.owl-dots .owl-dot .date-text {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: bold;
  color: #000; /* Color del texto del mes por defecto */
  transition: color 0.3s; /* Transición suave para el cambio de color */
}

/* Cambiar el color del texto al pasar el mouse */
.owl-dots .owl-dot:hover .day-text,
.owl-dots .owl-dot:hover .date-text {
  color: #ffffff; /* Color del texto al pasar el mouse */
}

/* Estilo del dot activo */
.owl-dots .owl-dot.active {
  background-image: url('../assets/img/inspira/calendar-hover-linea-blanca.png'); /* Imagen activa */
}

/* Texto del dot activo */
.owl-dots .owl-dot.active .day-text,
.owl-dots .owl-dot.active .date-text {
  color: #ffffff; /* Color del texto en el dot activo */
}

.btn-blue-king {
  background-color: #1C2756;
  color: #ffffff;
}

.btn-blue-king:hover {
  background-color: #1C2756;
  color: #ffffff;
}

.ficha {
  max-height: 500px;
}

.btn-cerrar {
  cursor: pointer !important;
}

.logoFeria {
  max-height: 100px !important;
}

.d-flex {
  gap: 3px; /* Define el espacio exacto entre los botones */
}

/* Cambiar la opacidad del fondo del modal */
.modal-backdrop {
  opacity: 0.3 !important; /* Ajusta el valor entre 0 y 1 para cambiar la opacidad */
}

.rockeromero {
  font-family: 'MyCustomFont', sans-serif;
}

/* Estilos para tablets (pantallas medianas) */
@media (max-width: 480px) {
  .logoInspira {
    position: absolute; /* Posiciona la imagen fuera del flujo normal */
    top: 100px; /* Posiciona la imagen verticalmente en el centro del contenedor */
    left: 50%; /* Posiciona la imagen horizontalmente en el centro del contenedor */
    transform: translate(-50%, -50%); /* Ajusta la posición para centrarla correctamente */
    z-index: 40; /* Asegura que la imagen esté por encima del contenido */
  }
}