.sticky-form-search{
  width: 50%;
  max-width: 50%;
  margin:auto;
  background-color:white;
  padding: 20px 10px 10px;   /* top, left/right, bottom */
  border-radius:10px;
  position: fixed;
  top:60px;
  right: 10px;         /* lo colocamos al 50% del ancho */

  /* sombra solo a la derecha y abajo */
  box-shadow: 5px 15px 15px rgba(0, 0, 0, 0.2);
}

.box-category-body span{
  text-transform: capitalize;
}

/* Cada slide (item) */
.owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
}

/* Tarjeta del video */
.video-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 100%;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Mantener relación 16:9 */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Estilo de navegación de Owl (Airbnb style) */
.owl-nav button {
  background: rgba(255,255,255,0.9) !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.owl-nav button:hover {
  background: #ff385c !important; /* color Airbnb */
  color: #fff !important;
}

.owl-dots {
  margin-top: 15px;
  text-align: center;
}

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.owl-dots .owl-dot.active span {
  background: #ff385c; /* color Airbnb */
  transform: scale(1.3);
}


.swiper-slide {
  position: relative;
}
.slide-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slide-image img {
  width: 100%;
  height: 250px; /* ajusta */
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  pointer-events: none; /* no bloquea el swipe */
}


.main-header .search-box-outer .dropdown-menu {
  width: 30vw !important;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  padding:10px;
  border-radius: 5px;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.list-group-item {
  border: none;
  border-bottom: 1px solid #eee;
  padding: 20px 10px;
}

.list-group-item h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.list-inline > li {
  margin-right: 15px;
  font-size: 13px;
  color: #333;
}

.btn-sm {
  margin-top: 10px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  z-index: 1000;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.btn-group.open .dropdown-menu {
  display: block;
}
.form-input{
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
    display: block;
    padding:3px;
    font-size:14px !important;
}
.btn-search{
  font-size:18px !important;
}

.modal-lg, .modal-xlarge {
    width: 95%;
}
.card-game{
  box-shadow: 10px 10px 10px -5px rgba(168,168,168,1);
  position: relative;
  max-height: 400px;
  height:400px;
  border-radius: 30px;
  border:1px solid #f2f2f2;
  padding:30px 50px;
  margin-bottom: 50px;
}
.card-pregunta{
  color: #a70460 !important;
}
.card-submit{
  position:absolute;
  bottom:20px;
  right:30px;
}
/* Ocultar los radio buttons por defecto */
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #007bff; /* Color del borde */
  border-radius: 50%; /* Redondeado completo */
  outline: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

/* Estilo del radio button cuando está seleccionado */
input[type="radio"]:checked {
  background-color: #007bff; /* Color de fondo cuando está seleccionado */
  border-color: #007bff;
}

/* Estilo del círculo interior al seleccionar */
input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: white; /* Color del círculo interior */
  border-radius: 50%;
  margin: 3px;
}

/* Estilo cuando pasas el mouse por encima */
input[type="radio"]:hover {
  border-color: #0056b3;
}

.frm-radioButton{
  width:400px;
  border-radius: 10px;
  border: 2px solid royalblue;
  float:left;
  clear:both;
  padding-left:10px;
  margin-bottom:10px;
  font-size:1.3em;
}

.card-respuestas{
  padding:20px;
}


.box{
  position: relative;
  max-height: 400px;
  height:400px;
  margin-bottom:50px;
  border-radius: 5px;
  overflow: hidden;
  /*box-shadow: 10px 10px 10px -5px rgba(168,168,168,1);*/
  box-shadow:  0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
  border:1px solid #f2f2f2;
  background: #fff;
}
.box-price{
  position: absolute;
  padding:5px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius:5px;
  left:5px;
  top:5px;
}
.box-image{
  max-height: 200px;
  height:200px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow:hidden;
}
.box-body{
  padding:30px;
  position:relative;
}
.box-details{
  color:#828282;
  font-size:14px;
  margin-bottom:20px;
}
.text-success{ color:green; }




.box-categoria{
  position: relative;
  max-height: 200px;
  height:200px;
  margin-bottom:50px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 10px 10px 10px -5px rgba(168,168,168,1);
  -moz-box-shadow: 10px 10px 10px -5px rgba(168,168,168,1);
  box-shadow: 10px 10px 10px -5px rgba(168,168,168,1);
  background: rgba(0,0,0,   0.8) !important;
  cursor: pointer;

}
.box-categoria-image{
  max-height: 200px;
  background-size: cover;
  overflow:hidden;
  z-index: 90;

}
.box-categoria-body{
  padding:10px 30px;
  position: absolute;
  pointer-events: none; /* no captura toques ni clicks */
  /*top: 50%;
  left: 50%;*/
  width:100%;
  bottom:0;
  left:0;
  background: rgba(0,0,0, 0.8);
  color: white;
  text-align: center;
  font-size: 1.5em;
}
.box-categoria-body span,
.box-categoria-body a,
.box-categoria-body button {
  pointer-events: auto;
  text-transform: capitalize !important;
}
.box-categoria-body-text{
  width:100%;
  position: absolute;
  padding:10px ;
  bottom: 5%;
  left: 10px;
  color: white;
  text-align: left;
  font-size: 1em;
}
.box-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Overlay negro al 80% de opacidad */
}
.box-overlay:hover{
  background: rgba(0,0,0,   0.4) !important;
}



.btn-pink{
  background-color: #a70460 !important;
}
.text-pink{
  color: #a70460 !important;
  text-transform: none;
}
.text-bolder{
  font-weight: bolder;
  font-size: 1.5em;
}
.gray-light{
  padding:30px;
  background-color: #DEDEDE;
  max-height:300px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;

}
.btn-wl{
  width:100%;
  padding:10px;
  font-size:1.3em;
  color: #a70460 !important;
  background-color: #fafafa;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  -webkit-box-shadow: 10px 10px 17px -5px rgba(189,189,189,1);
  -moz-box-shadow: 10px 10px 17px -5px rgba(189,189,189,1);
  box-shadow: 10px 10px 17px -5px rgba(189,189,189,1);
}
.btn-pink{
  width:100%;
  padding:6px 12px;
  font-size: 14px;
  color: white !important;
  background-color: #a70460 !important;
  border: 1px solid #f2f2f2;
  border-radius: 4px;
  -webkit-box-shadow: 10px 10px 17px -5px rgba(189,189,189,1);
  -moz-box-shadow: 10px 10px 17px -5px rgba(189,189,189,1);
  box-shadow: 10px 10px 17px -5px rgba(189,189,189,1);
}
.image{
  border-radius:15px;
}
.page-title{
  padding: 50px !important;
}
.sidebar-page-container{
  padding:10px 0px 20px !important;
}

#parallax {
  /* The image used */
  position: relative;

  background-color: #fff;
  /* background-image: url("../img/bg_playa.jpg"); */
  min-height:100%;
  background:linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/bg_playa.jpg");

  /* Set a specific height */
  min-height: 400px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.text-parallax{
  vertical-align: middle;
  text-align: center;
}
.text-big{
  font-size: 6em;
}
.nav-link{  font-weight:bold; font-size:16px;  }
.nav-link:hover{
  color:#a70460 !important;
}






.grid-gallery {
  display: grid;
  grid-auto-rows: 200px;
  gap: 1rem;
  grid-auto-flow: row dense;
}

@media all and (min-width: 320px) {
  .grid-gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media all and (min-width: 768px) {
  .grid-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media all and (min-width: 1024px) {
  .grid-gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}

.grid-gallery__item:nth-child(11n+1) {
  grid-column: span 1;
}

.grid-gallery__item:nth-child(11n+4) {
  grid-column: span 2;
  grid-row: span 1;
}

.grid-gallery__item:nth-child(11n+6) {
  grid-column: span 3;
  grid-row: span 1;
}

.grid-gallery__item:nth-child(11n+7) {
  grid-column: span 1;
  grid-row: span 2;
}

.grid-gallery__item:nth-child(11n+8) {
  grid-column: span 2;
  grid-row: span 2;
}

.grid-gallery__item:nth-child(11n+9) {
  grid-row: span 3;
}

.grid-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border:6px solid white; */
  border-radius:10px;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.13);
  -moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.13);
  box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.13);
}
.badge{
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.13);
  -moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.13);
  box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.13);
}


body, html{
  background: #f5f6f7;
}



ul.ul-pretty {
    list-style-type: none; /* Eliminar el estilo de lista predeterminado */
    padding: 0;
    margin: 0;
}

ul.ul-pretty li {
    position: relative; /* Necesario para colocar el ícono */
    margin-bottom: 15px; /* Espacio entre los elementos de la lista */
    font-size: 1.1rem; /* Tamaño de fuente ligeramente mayor */
    line-height: 1.5; /* Espaciado de línea */
    background-color: #f9f9f9; /* Color de fondo suave */
    padding: 10px 35px; /* Espaciado interno */
    border-radius: 10px; /* Bordes redondeados */
    transition: background-color 0.3s ease; /* Animación suave al pasar el mouse */
}

ul.ul-pretty li::before {
    content: "\2714"; /* Usamos un símbolo de checkmark (✔) */
    position: absolute;
    left: 10px; /* Posición del ícono */
    color: #28a745; /* Color verde para el ícono */
    font-size: 1.3rem; /* Tamaño del ícono */
    top: 50%;
    transform: translateY(-50%); /* Centrar verticalmente el ícono */
    padding-left: 5px;
}

ul.ul-pretty li:hover {
    background-color: #e9ecef; /* Color de fondo cuando se pasa el mouse */
    cursor: pointer; /* Cambiar el cursor al pasar el mouse */
}


.gm-style-iw-chr{ display: none;}
.gm-style-iw-d, .gm-style .gm-style-iw-c { padding: 0px; margin:0px;}
.gm-style-iw-d{ overflow: hidden !important; }

/* Estilos personalizados para el InfoWindow */
.info-window-custom {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  transition: transform 0.3s ease;
}
.info-window-custom:hover {
  transform: scale(1.02);
}
.info-window-custom .info-img-wrapper{
  padding:0;
  margin:0;
  width: 100%;
  height: 200px;
  display: block;
  border-bottom: 5px solid #007bff; /* Agregar una línea de color */
  overflow: none;
}
.info-window-custom .info-img-wrapper img {
  max-width: 100%;
  height: 220px;
  display: block;
}
.info-window-custom .info-content {
  padding: 15px;
  text-align: left;
  margin-top:10px;
}
.info-window-custom .info-content h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}
.info-window-custom .info-content p {
  margin: 10px 0 15px;
  font-size: 14px;
  color: #666;
}
.info-window-custom .visit-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.info-window-custom .visit-button:hover {
  background-color: #0056b3;
}
/* Estilo para el botón de cerrar */
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  outline: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.close-button:hover {
  color: #ff0000; /* Cambia a rojo cuando se pasa el ratón */
}


.panel-title a {
    text-decoration: none;
    display: block;
    padding: 10px;
    color: #333;
}

.panel-title a:hover {
    text-decoration: none;
    color: #007bff;
}

.panel-body {
    padding-left: 15px;
    background-color: #f7f7f7;
    border-left: 3px solid #007bff;
}

.thumb-image{
  height: 300px;
  max-height: 300px;
  overflow: hidden;
}




.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Columnas flexibles */
    gap: 20px; /* Espaciado entre las entradas */
    padding: 20px;
}

.thumbnail {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.thumbnail:hover {
    transform: translateY(-5px); /* Efecto de elevación */
}

.thumb-image {
    width: 100%;
    height: 300px; /* Altura máxima de la imagen */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
}

.thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra sin distorsionarse */
}

.caption {
    padding: 15px;
}

.caption h3 a {
    color: #a70460; /* Color de énfasis */
    text-decoration: none;
}

.caption h3 a:hover {
    text-decoration: underline;
}

.caption p {
    font-size: 14px;
    color: #666;
}

.btn-primary {
    background-color: #a70460;
    border-color: #87044f;
}

.btn-primary:hover {
    background-color: #87044f;
    border-color: #6b033d;
}
