#logo img {
    width: 50px !important;
}

#logo-footer {
    width: 70px !important;
}

/* Estilos para los iconos de redes sociales */
.social_link .facebook i,
.social_link .instagram i,
.social_link .tiktok i {
    color: #373A3C !important;
}

/* Centrado vertical de la imagen del banner */
.div-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    background-color: #EAE9E9 !important;
}

/* Estilos para el fondo de la imagen del banner */
.div-img img {
    border-radius: 5px;
    /* Evita distorsión: respeta proporción */
    max-width: 100%;
    height: auto;
    object-fit: contain;
}


/* Requisitos (Home):
   Antes usábamos `filter: grayscale(100%)` en el contenedor `.map-ba`,
   pero eso vuelve grises TODOS los hijos (incluye el naranja del título).
   Solución: aplicamos el grayscale solo al fondo usando un pseudo-elemento. */
.map-ba{
    position: relative;
    overflow: hidden;
    /* Apagamos el fondo de style.css para reemplazarlo por ::before */
    background-image: none !important;
}

.map-ba::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/bg_3.webp);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    z-index: 0;
}

.map-ba > *{
    position: relative;
    z-index: 1;
}

/* Solo la palabra "REQUISITOS" en naranja */
.requisitos-highlight{
    color: #FF9800 !important;
}

/* HERO (Home):
   Reservamos espacio con el wrapper y ponemos el placeholder en overlay.
   Así cuando el slider se inicializa NO hay salto (CLS). */
#rev_slider_4_1_wrapper{
    position: relative;
    min-height: 555px;
}

#hero_static{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg_01.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

#rev_slider_4_1{
    position: relative;
    z-index: 1;
}

@media (max-width: 778px){
    #rev_slider_4_1_wrapper{ min-height: 500px; }
}

@media (max-width: 480px){
    #rev_slider_4_1_wrapper{ min-height: 400px; }
}

/* Estilos para el contenedor de las imágenes de los vehículos */
.hotel-img a {
    display: block;
}

/* HOME - Promos: sacar recuadro blanco (card) */
#apiom_promociones .hotel-grid.background-white{
    background: transparent !important;
}

#apiom_promociones .hotel-grid.border,
#apiom_promociones .hotel-grid.border-grey-1{
    border: 0 !important;
    box-shadow: none !important;
}

/* HOME - Promos: que la imagen sea el "card" */
#apiom_promociones .hotel-img{
    /* Fuerza mismo tamaño en las 3 promos */
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#apiom_promociones .hotel-img a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#apiom_promociones .apiom_photo_promocion{
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* Estilos para el contenedor de los requisitos */
.requisitos-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.requisitos-list .icono {
    color: #FF9800;
    font-weight: bold;
    margin-right: 8px;
    font-size: 18px;
    line-height: 1.2;
}



/* Estilos para el contenedor de las imágenes de los vehículos */
#apiom_container_vehicle .hotel-img {
    height: 210px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#apiom_container_vehicle .hotel-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Opción B: llena el cuadro recortando (tipo “cover”) */
/*
  #apiom_container_vehicle .hotel-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  */


/* WHATSAPP */
.whatsapp_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 90px;
    height: 90px;
    bottom: 120px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    z-index: 100;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.2s;
    flex-direction: column;
    padding: 10px 0;
    cursor: pointer;
}

.whatsapp-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.whatsapp-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp-text {
    font-size: 12px;
    line-height: 1.1;
}

.whatsapp_btn:hover {
    background-color: #1ebe57;
}

.whatsapp_btn:hover .whatsapp-icon {
    color: #E5610D;
}

.whatsapp_btn:hover .whatsapp-text {
    color: #0658A3;
}


@media only screen and (max-width: 769px) {

    .whatsapp_btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 11px;
        padding: 0;
    }

    .whatsapp-icon {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .whatsapp-text {
        font-size: 8px;
    }
}

.contacto-foto {
    width: 100% !important;
    max-height: 165px !important;
    /* ajustá este valor */
    object-fit: contain !important;
    /* no recorta, no deforma */
    border-radius: 8px !important;
}

@media (max-width: 769px) {
    .contacto-foto {
        max-height: 160px !important;
    }
}


/* Decoración naranja: compatible con Owl Carousel */
.travelers-say li {
    position: relative;
    overflow: hidden;
    border-left: 4px solid #ff7a00;
}

.travelers-say li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #ff7a00;
    opacity: .85;
}

.travelers-say-in {
    padding-right: 30px;
}

@media (max-width: 991px) {
    .travelers-say-in {
        padding-right: 15px;
    }
}

/* Sombra solo en el item activo (evita ver sombras de los vecinos) */
.travelers-say.owl-carousel li.border-grey-1 {
    box-shadow: none !important;
}

.travelers-say.owl-carousel .owl-item.active li.border-grey-1 {
    box-shadow: 0px 0px 8px -1px rgba(89, 89, 89, 0.9) !important;
}

/* Ocultar el carrusel en pantallas pequeñas */
.owl-carousel{ display:none; }


/* FAQ: títulos siempre en negro */
#accordion .card-header a,
#accordion .card-header a i,
#accordion .card-header a span{
  color: #000 !important;
}

