/* ==========================================================================
   Estilos Generales
   ========================================================================== */
body {
    font-family: "Lato", sans-serif;
    overflow-x: hidden;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lato", sans-serif;
}

.sin_margen {
    margin-right: 0px;
    margin-left: 0px;
}

.sin_padding {
    padding-left: 0px;
    padding-right: 0px;
}

.sin_flex {
    display: inherit;
}

.sin_padding_der {
    padding-right: 0px;
}

.sin_padding_izq {
    padding-left: 0px;
}

/* Márgenes */
.margen_arriba_1 {
    margin-top: 1%;
}

.margen_arriba_2 {
    margin-top: 2%;
}

.margen_arriba_3 {
    margin-top: 3%;
}

.margen_arriba_4 {
    margin-top: 4%;
}

.margen_arriba_5 {
    margin-top: 5%;
}

.margen_abajo_1 {
    margin-bottom: 1%;
}

.margen_abajo_2 {
    margin-bottom: 2%;
}

.margen_abajo_3 {
    margin-bottom: 3%;
}

.margen_abajo_4 {
    margin-bottom: 4%;
}

.margen_abajo_5 {
    margin-bottom: 5%;
}

/* ==========================================================================
   Colores y Fondos
   ========================================================================== */
.bg_naranja {
    background-color: #E14B25 !important;
}

.bg_oscuro {
    background-color: #000 !important;
    /* El footer es negro puro en el diseño */
}

.tit_naranja {
    color: #E14B25 !important;
}

/* ==========================================================================
   Header y Hero Video
   ========================================================================== */
.cont_hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.video_fondo_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.video_fondo_container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.overlay_oscuro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.logo_header {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.placeholder_logo {
    width: 120px;
    height: 120px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 12px;
    line-height: 1.2;
}

.tit_banner_home {
    font-size: 4.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.subtit_hero {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Botones
   ========================================================================== */
.bot_naranja {
    background-color: #E14B25;
    color: #FFF;
    padding: 12px 35px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s ease;
    border: 2px solid #E14B25;
    display: inline-block;
}

.bot_naranja:hover {
    background-color: transparent;
    color: #FFF;
    border: 2px solid #FFF;
}

.bot_verde {
    background-color: #25D366;
    color: #FFF;
    padding: 12px 35px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s ease;
    border: 2px solid #25D366;
    display: inline-block;
}

.bot_verde:hover {
    background-color: #1EBE5C;
    color: #FFF;
}

.bot_amarillo {
    background-color: #FFC107;
    /* Color amarillo oro como en el mockup */
    color: #000;
    padding: 12px 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
}

.bot_amarillo:hover {
    background-color: #FFB000;
    color: #000;
}


/* ==========================================================================
   Secciones y Componentes
   ========================================================================== */

.placeholder_img {
    background-color: #f1f3f5;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #adb5bd;
    font-weight: bold;
    font-size: 1rem;
}

/* Cards Pousadas */
.cont_pousadas_bg {
    border-bottom-left-radius: 67px;
    border-bottom-right-radius: 67px;
}

.card_pousada {
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    /* Cartas altas tipo retrato */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card_pousada_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card_pousada_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.pousada_logo {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tit_c_info {
    font-size: 1.2rem;
}

.subtit_c_info {
    font-size: 1rem;
}

.placeholder_text {
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

/* Slider Lifestyle */
.topografia_bg {
    background-image: url('../imagenes/fundo-site3 2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card_img_slider_vertical {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.badge_naranja_top {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E14B25;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    z-index: 10;
}

.slider_arrow.left {
    left: -30px;
}

.slider_arrow.right {
    right: -30px;
}

/* Frase fondo */
.placeholder_bg_full {
    background-size: cover;
    background-position: center;
}

/* Accès */
.img_acces {
    width: 150px;
    height: auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.placeholder_text_small {
    color: #adb5bd;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Footer */


.icon_hover {
    transition: 0.3s;
}

.icon_hover:hover {
    color: #E14B25 !important;
}

.texto_footer_contacto {
    width: 100%;
    max-width: 450px;
}

.bg_info_footer {        
    p {
        font-size: 18px !important;
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991px) {
    .tit_banner_home {
        font-size: 3.5rem;
    }

    .slider_arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .tit_banner_home {
        font-size: 2.2rem;
    }

    .subtit_hero {
        font-size: 1.2rem !important;
    }

    .video_fondo_container iframe {
        width: auto;
        height: 100vh;
        min-width: 177.77vh;
    }

    .bot_naranja,
    .bot_verde {
        width: auto;
    }

    .hero_botones {
        gap: 10px !important;
        flex-wrap: nowrap !important;
        padding: 0 10px;
        /* Para que no toquen los bordes de la pantalla */
    }

    .hero_botones .bot_naranja,
    .hero_botones .bot_verde {
        padding: 10px 5px !important;
        font-size: 0.85rem !important;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        white-space: nowrap;
    }

    .btn_whatsapp_overlap {
        transform: translateY(50%);
        z-index: 10;
        position: relative;
    }

    .cont_hero {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .cont_pousadas_bg {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .bot_amarillo {
        margin-top: 0 !important;
    }

    .scroll_resp {
        bottom:2% !important;
    }

    .topografia_bg {
        z-index: 20;
    }

    .frase_banner_playa {
        font-size: 18px !important;
    }

    .bg_info_footer {
        padding-top: 0 !important;

        p {
            font-size: 18px !important;
        }
    }


}