/* 
    AQUI VAMOS A METER ESTILOS QUE SE USAN EN TODO EL SITIO 
    HAY QUE INTENTAR AGRUPARLOS DENTRO DEL MISMO ARCHIVO Y EXPLICAR POR QUÉ Y PARA QUÉ SE USAN
*/

/* GENERALES */

    body {
        font-family: 'Lato', Verdana, serif;
        background-color: #EFF3F6;
    }
    .clickable-div:hover {
        transform: scale(1.05); /* Increases size */
    }
    /** New home design 13-11-24 **/
    .primary-dark-hoteleus {
        background-color: #122A3F;
    }
    .primary-hoteleus {
        background-color: #255580;
    }
    .primary-light-hoteleus {
        background-color: #377FBE;
    }
    .secondary-hoteleus {
        background: #0D6EFC;
    }
    .orange-hoteleus {
        background: #F39C11;
    }
    .text-secondary-dark {
        color: #024AB6;
    }
    .text-estado-info {
        color: #17A2B8;
    }
    .text-secondary-hoteleus {
        color: #0D6EFC;
    }
    .blue-100-hoteleus {
        background-color: #EFF3F6;
    }
    .blue-200-hoteleus {
        background-color: #D5DDE7;
    }
    .text-blue-200 {
        background-color: #D5DDE7;
    }
    .text-blue-400-hoteleus {
        color: #6A7B97;
    }
    .text-primary-dark {
        color: #122A3F;
    }
    .text-white {
        color: white;
    }
    .gray-600-hoteleus {
        background: #6c757d;
    }
    .text-gray-600 {
        color: #6c757d;
    }
    .text-gray-700 {
        color: #495057;
    }
    .text-primary-hoteleus {
        color: #255580;
    }
    .text-orange {
        color: #F39C11;
    }
    .text-success-hoteleus
    {
        color: #20c997;
    }
    .estado-success-hoteleus {
        background: #20c997;
    }
    .secondary-light-hoteleus {
        background: #5D9DFD;
    }

    .bg-hoteleus {
        background-color: #255581;
    }
    .justify {
        text-align: justify;
    }
    .fs-7 {
        font-size: 0.8rem !important;
    }
    .fs-8 {
        font-size: 0.7rem !important;
    }
    .fs-9 {
        font-size: 0.6rem !important;
    }
    .fs-10 {
        font-size: 0.5rem !important;
    }

    .light-links {
        color: white !important;
        text-decoration: none;
    }
    .light-links:hover {
        color: #CAFFFF;
        text-decoration: none;
        cursor: pointer;
    }

    .blue-links {
        color: #255581;
        text-decoration: none;
    }
    .blue-links:hover {
        color: #0D6EFD;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-tel {
        color: #F39C11 !important;
        font-weight: bold;
        text-decoration: none;
    }
    .no-border {
        border-style: none;
    }

    .navigation-menu {
        letter-spacing: 0.5px;
        font-weight: 400;
        color: white;
        line-height: 1.7;
        font-size: 14px;
        padding-right: 21px;
        cursor: pointer;
    }
    .navigation-menu:last-child {
        padding-right: 0px;
        margin-right: 0px;
    }

    .header-contacto, .header-perfil {
        margin: 0 auto;
        min-height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .xaman-caratula {
        padding: 0px !important;
        background-size: cover;
        background-repeat: no-repeat;
    }


    .cg {
        color: #8C8C8C;
    }
    .cy {
        color: #ffc107;
    }

    .nav-tabs .nav-link.active {
        color: #495057;
        background-color: #f8f9fa;
        border-color: #dee2e6 #dee2e6 #EFEFEF;
    }

    .etiqueta_circuitos {
        color: #ffffff;
        background-color: #e85e34;
        line-height: 1;
        z-index: 1;
        position: absolute;
        top: 30px;
        font-size: 14px;
        font-weight: 600;
        padding: 14px 20px 14px 30px;
        left: -10px;
    }

    .mensaje_gracias {
        text-align: center;
        padding: 5px;
        color: white;
        font-weight: 800;
    }

    .container-perfil {
        margin-right: auto;
        margin-left: auto;
        max-width: 1320px;
        padding-top: calc(var(--bs-gutter-y)/ 2);
        padding-bottom: calc(var(--bs-gutter-y)/ 2);
        --bs-gutter-y: 3rem;
    }

    .submenu-sesion {
        color: #4692e7 !important;
        font-size: 13px;
    }

    .menu-sesion {
        font-size: 13px;
        line-height: 30px;
        color: #e2e2e2;
        font-weight: normal;
        font-family: Lato, sans-serif;
    }

    .preload {
        opacity: 0.9;
    }

    @media (max-width: 1400px) {
        .container-perfil {
            max-width: 1320px;
        }
    }

    @media (max-width: 1200px) {
        .container-perfil {
            max-width: 1140px;
        }
    }

    @media (max-width: 992px) {
        .container-perfil {
            max-width: 960px;
        }
    }

    @media (max-width: 768px) {
        .container-perfil {
            max-width: 720px;
        }
    }

    @media (max-width: 576px) {
        .container-perfil {
            max-width: 540px;
        }
    }

    .swiper-slide {
        height: 100%; /* O un valor fijo como 300px */
    }   

/* FIN GENERALES */

/* APLICA SOMBRAS A ELEMENTOS PARA HACERLOS MÁS DINÁMICOS Y CURSOR */
.hover-cursor:hover {
    cursor: pointer; /* Hace que el cursor sea un puntero */
}

.shadow-hover-primary:hover {
    box-shadow: 0px 0px 10px 5px rgba(13, 110, 253, 0.4); /* Blue shadow with #0D6EFD */
}

.btn-primary:hover {
    box-shadow: 0px 0px 10px 5px rgba(13, 110, 253, 0.4); /* Blue shadow with #0D6EFD */
}

/******************

  HOME DESTINOS

******************/

.contenedor-destino
{
    height: 235px;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

.container-destiny
{
    height: 235px;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: black;
    background-color: #255581 !important;
    border-color: #dee2e6 #dee2e6 #EFEFEF;
}

.carousel-summary-desktop
{
    max-width:100%!important;
}
.service-carousel-container.AVERAGE_CUSTOMER_RATING
{
    max-width:100%!important;
}

.degradado-fondo-header
{
    /* For WebKit */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(13, 110, 252, .25)), to(rgba(18, 42, 63, 1)));
/* For Mozilla */
    background: -moz-linear-gradient(top, rgba(18, 42, 63,1), rgba(13, 110, 252,.3));
/* For lt IE8 */
    filter: progid:DXImageTransform.Microsoft.gradient(gradientyype=0,
startColorstr='#122A3F', endColorstr='#0D6EFC');
/* For gt IE8 */
    -moz-filter: progid:DXImageTransform.Microsoft.gradient(gradientyype=0,
startColorstr='#122A3F', endColorstr='#0D6EFC');


}
.buscador
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    padding-right: 8rem !important;
    padding-left: 8rem !important;
    width: 100% !important;
    margin: 0px !important;
}
.botones-busqueda-navegacion
{
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    width: 48%;
}
#destino_padre
{
    border-radius:30px;
}
#destino_nieto
{
    border-radius:30px;
}
#destino
{
    border-radius:30px;
}
.select-busqueda-avanzada
{
    width: 100%;
    border: none;
    border-radius: 30px;
    padding: 10px;
}
.select-selected:after {

    border-radius:10px;
}

.boton-nav {
    border: 2px solid #5D9DFD;
    border-radius: 50%;
    height: 32px;
    width: 32px;
    background-color: #0D6EFC;
    color: white;
    cursor: pointer;
}
.boton-nav:hover {
    box-shadow: 0px 0px 10px 5px rgba(13, 110, 253, 0.4); /* Blue shadow with #0D6EFD */
}

.fotografia-travel
{
    height:100px;
}

.contenedor-nav-destinos,.contenedor-nav-td
{
    text-align: right;
    padding-right: 20px;
}

.card-description 
{
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 10px;
    margin-bottom: 0px;
    padding: 5px;
}
.card-description h2 {
  font-size: 18px;
}
.card-description p {
  font-size: 16px;
  color:#FDB933;
  font-weight: bold;
}

.card-link:hover{
  opacity: 0.1;
}


.contenedor-circulo-travel
{
    margin-left: 10%;
    margin-right: 10%;
}

.contenedor-travel-designer
{
    cursor: pointer;
}

#boton-saber-mas {
    font-size: 14px;
}

.contenedor-titulo-tipo-tour
{
    border-right: 2px solid #6A7B97;
}

.pleca_tipo_tour
{
    font-size:12px;
    border-radius: 5px;
    padding: 5px;
}

#pleca_tipo_flexible
{
    background-color: #20c997;
    color: #122A3F;
}

#pleca_tipo_guiado
{
    background-color: #5D9DFD;
    color:white;
}

.contenedor-travel-designer:nth-of-type(even)
{
    margin-top: 50px !important;
}

@media only screen and (min-width: 0px) and (max-width: 500px) 
{
    .botones-busqueda-navegacion
    {
        width: 49.5%;
        /*margin-left: 0px !important;
        margin-right: 0px !important; */
    }
    .buscador
    {
        border-top-left-radius:15px;
        border-top-right-radius:15px;
        padding:10px !important;
    }

    .texto-descubre
    {
        text-align:center;
    }
    #boton-saber-mas
    {
        width:100%;
        border-radius:25px;
        font-size: 14px;
        
    }
        #boton-travel-designer
    {
        width:100% !important;
        border-radius:25px !important;
        font-size: 14px !important;
        background-color: #255580 !important;
    }
    .titulos
    {
        text-align:center;
    }
    .texto-movil
    {
        text-align:center;
    }
    .texto-tipo-tour
    {
        display:none;
    }
    .contenedor-titulo-tipo-tour
    {
        border:none;
    }

    .fotografia-travel
    {
        height: 13vh;
    }

        .pleca_tipo_tour
    {
        font-size:16px;
        background-color: transparent !important;
        font-weight: bold;
    }

    #pleca_tipo_flexible
    {
        color: #20c997;
    }

    #pleca_tipo_guiado
    {
        color: #5D9DFD;
    }

}

@media (max-width: 480px) {
    #feefo-service-review-carousel-widgetId {
        transform: scale(0.8); /* Shrinks the widget to 80% */
        transform-origin: top center; /* Ensures it scales from the top */
    }
}

/******************

  YOUTUBE PLAYER 

******************/
.youtube-player {
    position: relative;
    padding-bottom: 56.23%;
    /* Use 75% for 4:3 videos */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 5px;
  }
  .youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
  }
      
  .youtube-player img {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
  }
  .youtube-player img:hover {
    -webkit-filter: brightness(75%);
    filter: brightness(75%);
  }
  .youtube-player .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    background: url("https://archivo.tourifyme.com/sitioweb/play_youtube70x70.png") no-repeat;
    cursor: pointer;
  }

  /********************

  DESTINOS

  *********************/
  /* Bootstrap 5 breakpoints for increasing padding */
@media (min-width: 576px) { /* SM */
    .header-destino {
        padding: 4rem 1rem;
    }
}

@media (min-width: 768px) { /* MD */
    .header-destino {
        padding: 5rem 1rem;
    }
}

@media (min-width: 992px) { /* LG */
    .hero-padding {
        padding: 7rem 1rem;
    }
}

@media (min-width: 1200px) { /* XL */
    .header-destino {
        padding: 9rem 1rem;
    }
}

@media (min-width: 1400px) { /* XXL */
    .header-destino {
        padding: 12rem 1rem;
    }
}


/* Hero Container */
.hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background-color: #1b3e5b;
}

/* Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the container */
    filter: brightness(40%); /* Darkens the image */
}

.hero-content {
    position: relative;
    max-width: 900px;
    text-align: center;
    padding-top: 2rem 1rem;
    
}

/* Button Styles */

/* Small devices (≥576px) */
@media (min-width: 576px) {
    .hero-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .hero-btn {
        margin-top: 3rem;
    }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
    .hero-content {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .hero-btn {
        margin-top: 4rem;
    }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
    .hero-content {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .hero-btn {
        margin-top: 5rem;
    }
}

/* Extra-large devices (≥1200px) */
@media (min-width: 1200px) {
    .hero-content {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .hero-btn {
        margin-top: 6rem;
    }
}

/* XXL screens (≥1400px) */
@media (min-width: 1400px) {
    .hero-content {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
    .hero-btn {
        margin-top: 7rem;
    }
}

.hero-h1 {
    font-size: 1.5rem; /* Default font size for small screens */
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Subtle shadow */
}

/* Medium devices (tablets) */
@media (min-width: 576px) { 
    .hero-h1 {
        font-size: 1.75rem;
    }
}

/* Large devices (desktops) */
@media (min-width: 768px) { 
    .hero-h1 {
        font-size: 2rem;
    }
}

/* Extra large devices (wide screens) */
@media (min-width: 992px) { 
    .hero-h1 {
        font-size: 2.5rem;
    }
}

/* XXL screens (very large monitors) */
@media (min-width: 1200px) { 
    .hero-h1 {
        font-size: 3rem;
    }
}

/* Medium devices */
@media (min-width: 576px) { 
    .hero-h2 {
        font-size: 1.4rem;
    }
}

/* Large devices */
@media (min-width: 768px) { 
    .hero-h2 {
        font-size: 1.6rem;
    }
}

/* Extra large devices */
@media (min-width: 992px) { 
    .hero-h2 {
        font-size: 1.8rem;
    }
}

/* XXL screens */
@media (min-width: 1200px) { 
    .hero-h2 {
        font-size: 2rem;
    }
}


    
  .paginador 
  {
      margin-right: 5px !important;
      margin-bottom: 5px !important;
  }
   
   /**modal filtro busqueda movil*/
   .campos_busqueda_movil
   {
       border-radius:25px !important;
   }
   .btn-descargar-catalogo {
        border-radius: 25px;
        width: 70%;
        margin: 25px 15px;
        font-size: 14px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .btn-primary:hover {
        background-color: #0056b3 !important;
        transform: scale(1.05);
      }
      .btn-primary-hoteleus {
        background-color: #255581;
      }
    .btn-primary-hoteleus:hover {
    background-color: #1E4466 !important; /* Un tono más oscuro de #255580 */
    transform: scale(1.05); /* Ligera expansión al pasar el mouse */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Suaviza la transición */
    }
      
    .btn-descargar-catalogo:hover {
        background-color: #0056b3;
        transform: scale(1.01);
        color: white !important;
    }
    .btn-azul-hero {
        border-radius: 25px;
        width: 70%;
        max-width: 400px;
        margin-right: 50px;
        font-size: 14px;
        background-color: #007bff;
        color: white !important;
        border: none;
        padding: 15px 20px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
      }
  
      .btn-azul-hero:hover {
        background-color: #0056b3 !important;
        transform: scale(1.05);
      }
    .btn-naranja {
        border-radius: 25px;
        width: 70%;
        max-width: 400px;
        margin-right: 50px;
        font-size: 14px;
        background-color: #EA8000;
        color: white !important;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
      }
  
      .btn-naranja:hover {
        background-color: #c96e00 !important;
        transform: scale(1.05);
      }
      .btn-naranja-chico {
        border-radius: 25px;
        max-width: 400px;
        font-size: 14px;
        background-color: #EA8000;
        color: white !important;
        border: none;
        padding: 5px 15px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
      }
  
      .btn-naranja-chico:hover {
        background-color: #c96e00 !important;
        transform: scale(1.05);
      }

      
      .hero-button-margin
      {
        margin: 10px 25px 10px 40px
      }

      .btn-azul-outline {
        border-radius: 25px;
        font-size: 14px;
        color: #024AB6 !important;
        border: 1px solid  #024AB6;
        padding: 10px 10px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
      }
      .btn-azul-outline:hover {
        background-color: #024AB6 !important;
        color: white !important;
        transform: scale(1.05);
      } 

   .breadcrumb-link:hover 
   {
      color: #255580 !important;
   }


   .boton-nav {
      border: 2px solid #5D9DFD;
      border-radius: 50%;
      height: 32px;
      width: 32px;
      background-color: #0D6EFC;
      color: white;
  }

  .contenedor-nav-destinos,.contenedor-nav-td
  {
      text-align: right;
  }

  .contenedor-nav-socios,.contenedor-nav-td
  {
      text-align: right;
  }
  .contenedor-socio, .contenedor-hotel
  {
      padding: 0px 20px;
  }
  .titulo-mejores-hoteles
  {
      font-size: 21px;
  }


  /**css buscador*/
  .titulo-filtro
  {
      font-size:16px;
      font-weight:bold;
  }
  select.blue-200-hoteleus 
  {
      border-radius:25px;
  }
  input.blue-200-hoteleus 
  {
      border-radius:25px !important;
  }
  .botones-filtro
  {
      border-radius:25px;
      color: white;
      font-weight:bold;
      border-color:none;
      width: 100%;
  }
  
    @media only screen and (min-width: 0px) and (max-width: 500px) 
    {
        .tbl_dnone 
        {
            display: none;
        }
        
        .contenedor-ordenamiento
        {
            display:contents;
            max-width: 100%;
        }
        .buscador
        {
            width: 100%;
        }
        .form-busqueda
        {
            width:100%;
        }
        .contenedor-texto-ordenamiento
        {
            text-align: center !important;
        }
        
        
       .btn-descargar-catalogo
       {
           min-width: 300px; 
           margin-right: 0px; 
       }

     }
