/* 
   TURISMO PEWMA - LUXURY MODERN STYLE
   Theme: Immersive, Elegant, Nature-First
*/

:root {
    /* NextGen Design Tokens */
    --primary-green: #2D5A27;
    --accent-orange: #E67E22;
    --bg-cream: #F8F9FA;
    --status-success: #27AE60;

    /* Legacy compatible mappings */
    --color-forest: var(--primary-green);
    --color-wood: #C17C54;
    --color-sand: var(--bg-cream);
    --color-white: #FFFFFF;
    --text-main: #2C332E;
    --text-muted: #4A4A4A;

    /* Typography */
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & UI */
    --radius-premium: 12px;
    --touch-target: 48px;
    --radius-lg: 16px;
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Base Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-sand);
    color: var(--text-main);
    line-height: 1.6;
}

/* PRIORITY 5: iOS ZOOM FIX */
input,
select,
textarea {
    font-size: 16px !important;
}

/* PRIORITY 4: MIGRATED FROM HTML */
html,
body {
    margin: 0;
    padding: 0;
}



.hero-section {
    min-height: 100vh;
    height: auto;
    display: block !important;
    align-items: center;
    justify-content: center;
    background-image: url('https://www.turismopewma.cl/assets/images/general/home-hero-poster-new.webp');
    background-size: cover;
    background-position: center bottom;
    position: relative;
    padding-top: 240px !important;
    padding-bottom: 200px !important;
}

@media (max-width: 767px) {
    .hero-section {
        background-image: url('https://www.turismopewma.cl/assets/images/general/tinaja-portada-movil.webp');
    }
}

h1,
h2,
h3 {
    font-family: var(--font-display);
}

/* --- COMPONENTS --- */

/* --- TARJETA GASTRONOMÍA (BOX MATINAL) --- */

.local-flavor-card {
    display: grid;
    grid-template-columns: 1fr;
    background-color: #F9F5F0;
    /* Color crema suave, estilo papel kraft claro */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 4rem;
}

@media (min-width: 900px) {
    .local-flavor-card {
        grid-template-columns: 1fr 1fr;
        /* Mitad foto, mitad texto */
        align-items: center;
    }
}

/* La Imagen */
.flavor-image {
    position: relative;
    height: 400px;
    /* Altura fija */
}

.flavor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flavor-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #C17C54;
    /* Color Cobre */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* El Contenido */
.flavor-content {
    padding: 3rem;
}

.flavor-title {
    font-family: var(--font-display);
    /* Tu fuente elegante */
    font-size: 2.5rem;
    color: #2D4A3E;
    /* Verde Bosque */
    margin-bottom: 1rem;
}

.flavor-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Lista de ingredientes */
.flavor-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.flavor-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #2D4A3E;
    font-weight: 600;
    font-size: 0.95rem;
}

.flavor-list i {
    color: #C17C54;
    /* Iconos color cobre */
}

.flavor-note {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

/* --- ARREGLO DEL LOGO --- */

.logo-img {
    height: 75px;
    width: 75px;
    border-radius: 50%;
    /* ¡ESTO QUITA EL CUADRO BLANCO! */
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo-img:hover {
    transform: scale(1.1);
}

/* Versión Móvil */
@media (max-width: 768px) {
    .logo-img {
        height: 60px;
        width: 60px;
    }
}

/* Eliminar estilos del frame anterior si quedan residuos en HTML */
.logo-frame {
    display: contents;
    border: none;
    width: auto;
    height: auto;
    background: transparent;
}

/* Ajuste para que el logo quede a la izquierda y el menú a la derecha */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: transparent;
    /* Fondo transparente inicial */
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(20, 30, 25, 0.95);
    /* Forest Dark casi sólido */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 5%;
    /* Un poco más compacta */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links li a:hover {
    color: var(--color-wood);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

/* Fix for details summary arrows */
summary::-webkit-details-marker {
    display: none !important;
}

summary {
    list-style: none !important;
}


.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 101;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(30, 38, 33, 0.98);
        /* Forest Dark */
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 100;
    }

    .nav-links.active {
        right: 0;
    }
}

/* 1. HERO SECTION */
/* DISEÑO PANORÁMICO 2026 */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* ALINEADO ARRIBA para no tapar el agua */
    padding: 0 5%;
    padding-top: 250px;
    /* Espacio desde el techo (Navbar + Aire) */
    align-items: flex-start;
    /* Todo a la izquierda */
    overflow: hidden;
    background-color: var(--color-forest);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    /* Ocupa el 40% inferior */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    /* Deja pasar los clics */
    z-index: 5;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* LIGHTER OVERLAY as requested (20-30% reduction) */
    /* PRIORITY 6: HERO CONTRAST IMPROVED */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

/* ... existing styles ... */

/* --- TRUST BADGES (SOCIAL PROOF) - MICRO STYLE REFINED --- */
/* --- TRUST BADGES (AWARD STYLE) --- */
/* --- TRUST BADGES (ADAPTIVE AWARD STYLE) --- */

/* CONTAINER: Shared positioning */
.trust-badges-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    position: relative;
    z-index: 50;
    width: 100%;
}

/* =========================================
   MOBILE STYLE: Vertical Colored Cards
   (Default for mobile-first or kept distinct)
   ========================================= */
@media (max-width: 768px) {
    .trust-badges-container {
        gap: 8px;
        /* PRIORITY 3: FIX MOBILE BADGES */
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        margin-top: 0 !important;
        z-index: 60;
    }


    .award-badge {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 75px;
        min-width: 75px;
        /* Force minimum width */
        height: 100px;
        border-radius: 12px;
        color: white;
        padding: 8px 4px;
        /* Reduced padding */
        position: relative;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        overflow: hidden;
        /* Cut off anything that spills out */
    }

    /* Brand Backgrounds ONLY on Mobile */
    .bg-booking {
        background: #003580;
    }

    .bg-tripadvisor {
        background: #00AA6C;
    }

    .bg-google {
        background: #4285F4;
    }

    .award-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .award-logo {
        height: 12px !important;
        max-height: 12px !important;
        width: auto !important;
        max-width: 65px !important;
        object-fit: contain;
        filter: brightness(0) invert(1) !important;
        -webkit-filter: brightness(0) invert(1) !important;
        opacity: 1;
        margin-bottom: 2px;
    }

    .award-logo-text {
        color: white;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 70px;
    }

    .award-year {
        font-size: 0.6rem;
        font-weight: 500;
        opacity: 0.8;
    }

    .award-score {
        background: #FFB700;
        color: #222;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 0.9rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        margin: 4px 0;
    }

    .award-label {
        font-size: 0.55rem;
        text-transform: uppercase;
        opacity: 0.9;
        font-weight: 600;
    }
}

/* =========================================
   DESKTOP STYLE: Clean Integrated Badges
   (Removing the white strip - Making it feel like premium stickers)
   ========================================= */
@media (min-width: 769px) {
    .trust-badges-container {
        display: flex !important;
        justify-content: center !important;
        gap: 20px !important;
        background: transparent !important;
        /* NO MORE WHITE STRIP */
        backdrop-filter: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        position: absolute !important;
        bottom: 40px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
    }

    .award-badge {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100px !important;
        height: 110px !important;
        backdrop-filter: blur(8px) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 12px !important;
        padding: 10px !important;
        color: white !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    }

    .bg-booking {
        background: #003580 !important;
    }

    .bg-tripadvisor {
        background: #00AA6C !important;
    }

    .bg-google {
        background: #4285F4 !important;
    }

    .award-badge:hover {
        transform: translateY(-5px) !important;
        filter: brightness(1.15);
    }

    .award-year {
        display: block !important;
        font-size: 0.6rem !important;
        opacity: 0.8;
        margin-bottom: 2px;
    }

    .award-logo {
        height: 16px !important;
        width: auto !important;
        filter: brightness(0) invert(1) !important;
        /* White logo for dark bg */
        margin-bottom: 5px !important;
    }

    .award-score {
        background: transparent !important;
        border: none !important;
        color: #FFB700 !important;
        /* Gold Score */
        font-size: 1.4rem !important;
        font-weight: 800 !important;
        padding: 0 !important;
    }

    .award-label {
        display: block !important;
        font-size: 0.5rem !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.7;
    }
}



.hero-content {
    text-align: left;
    max-width: 800px;
    z-index: 10;
    margin-bottom: 0;
    /* Ajustado para el margen del widget */
    position: relative;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1;
    color: white;
    margin-bottom: 1rem;
    font-family: 'DM Serif Display', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    border-left: 3px solid #C17C54;
    /* Línea cobre decorativa */
    padding-left: 15px;
}

/* WIDGET CÁPSULA */
/* WIDGET MINIMALISTA TRANSPARENTE */
.booking-widget {
    width: 100%;
    max-width: 1000px;
    background: transparent !important;
    /* Fondo invisible */
    box-shadow: none !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 2rem 0;
    /* Aire arriba/abajo */
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Alinear abajo para que coincida con la línea */
    margin-top: 4rem;
    position: relative;
    z-index: 20;
}

/* Inputs y Selects: Solo línea abajo */
.booking-input {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    padding: 0.5rem 0;
    font-weight: 500;
    font-size: 1.1rem;
    width: 100%;
    outline: none;
    cursor: pointer;
    appearance: none;
    /* Quitar estilo nativo */
}

.booking-input:focus {
    border-bottom-color: #ffffff !important;
    box-shadow: none !important;
}

/* Placeholder color */
.booking-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Opciones del Select (necesitan fondo oscuro para leerse) */
.booking-input option {
    background-color: #1a2a20;
    color: white;
}

/* Labels */
.booking-label {
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
    font-weight: 600;
}

/* Flecha del Select personalizada (Blanca) */
select.booking-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 12px;
    padding-right: 20px;
}

.booking-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Ajuste Móvil */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .booking-widget {
        flex-direction: column;
        border-radius: 20px;
        gap: 1rem;
        align-items: stretch;
    }

    .booking-divider {
        display: none;
    }
}

/* --- ESTILO ECO-LUXURY RESTAURADO (2x2) --- */

/* 1. LA GRILLA PERFECTA 2x2 */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Móvil: 1 columna */
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bento-grid {
        /* ESCRITORIO: 2 columnas exactas */
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 450px !important;
        /* Altura fija elegante */
    }
}

/* 2. LA TARJETA (Sin fondo blanco) */
/* --- DISEÑO MINIMALISTA INTERACTIVO (2025-2026) --- */

.bento-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

/* La imagen de fondo */
.bento-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* El Contenido (Texto) - INICIALMENTE OCULTO */
.bento-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 30, 25, 0.95);
    /* Fondo oscuro casi sólido */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;

    /* LA CLAVE: Opacidad 0 para ver la madera tallada */
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Al pasar el mouse, mostramos el texto */
.bento-card:hover .bento-content {
    opacity: 1;
}

.bento-card:hover .bento-bg {
    transform: scale(1.1);
}

/* Visible al pasar mouse */


/* --- CAPAS DE INFORMACIÓN --- */

/* CAPA 1: Nombre Elegante (Visible siempre en la esquina) */
.card-name-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0,0,0,0.6);
    background: rgba(20, 30, 25, 0.45); /* Fondo oscuro natural de Pewma */
    padding: 6px 14px;
    border-radius: 8px;
    backdrop-filter: blur(3px); /* Efecto cristal elegante */
    z-index: 5;
    transition: all 0.4s ease;
}

.bento-card:hover .card-name-overlay {
    opacity: 0;
    /* Ocultamos el nombre de la esquina para limpiar */
}

/* ICONOS DE SERVICIOS (Dentro del telón) */
.card-icons-grid {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.icon-item {
    text-align: center;
    color: white;
}

.icon-item i {
    font-size: 1.5rem;
    color: var(--color-wood);
    /* Color Cobre */
    margin-bottom: 0.5rem;
    display: block;
}

.icon-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* BOTÓN DE GALERÍA */
.btn-gallery {
    background: transparent;
    border: 1px solid var(--color-wood);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-gallery:hover {
    background: var(--color-wood);
    transform: translateY(-2px);
}

/* Animación de entrada de los elementos */
.card-icons-grid,
.btn-gallery {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.bento-card:hover .card-icons-grid,
.bento-card:hover .btn-gallery {
    transform: translateY(0);
    opacity: 1;
}

/* ESTILOS DE TEXTO */
.card-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-wood);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.bento-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.bento-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    max-width: 80%;
    margin-bottom: 1.5rem;
}

.price-tag {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
}

/* 3. BUTTONS & UI */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    background: var(--color-wood);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FEATURES GRID (Comodidades) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 1.5rem;
    color: #C17C54;
    /* Color Cobre */
    background: rgba(193, 124, 84, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--color-forest);
}

.feature-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* --- EXTRAS & SECTIONS --- */

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
}

.text-center {
    text-align: center;
}

/* FONDO BLANCO PARA SEPARAR SECCIONES */
.bg-white {
    background-color: #FFFFFF;
    position: relative;
    /* Para que la sombra se vea bien */
    z-index: 1;
}

/* Imperdibles Grid */
.grid-imperdibles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.card-imperdible {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    /* Formato vertical tipo Poster */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    background: #000;
    /* Fondo negro por si carga lento */
}

.card-imperdible:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    opacity: 0.9;
}

.card-imperdible:hover .card-img {
    transform: scale(1.1);
    opacity: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    /* Menos padding arriba */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 35%, transparent 100%);
    /* Degradado más bajo y sutil */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: auto;
    /* Ya no 100%, solo lo necesario abajo */
    min-height: 50%;
    /* Para asegurar degradado suficiente */
    pointer-events: none;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.6);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.card-imperdible:hover .card-title {
    transform: translateY(-5px);
}

.card-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Tag Flotante */
.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-forest);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    align-self: flex-end;
    /* Por si flex afecta */
    margin-bottom: auto;
    /* Empuja hacia arriba en flex column */
}

/* --- TÍTULOS DE PORTADA --- */
.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    /* Espacio antes del calendario */
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: var(--font-display);
    /* Usando variable existente */
    font-size: 3.5rem;
    /* Tamaño grande e impactante */
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Sombra suave para levantar el texto */
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: var(--font-body);
    /* Usando variable existente */
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Versión Móvil */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* --- CALENDARIO DE RESERVAS (Efecto Glass) --- */
.booking-widget {
    background: rgba(20, 20, 20, 0.6);
    /* Fondo oscuro semitransparente */
    backdrop-filter: blur(12px);
    /* Efecto borroso de fondo (Glassmorphism) */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Borde fino y sutil */
    padding: 1.5rem 2rem;
    border-radius: 50px;
    /* Bordes totalmente redondeados */
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    /* Sombra flotante */
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

/* Etiquetas (Llegada, Salida...) */
.booking-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    /* Gris claro */
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

/* Corrección para que el calendario se vea y funcione bien */
.booking-input {
    color: #ffffff !important;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    outline: none;

    /* TRUCO: Hace que el calendario nativo sea oscuro */
    color-scheme: dark;
}

/* Hace que el icono del calendario sea blanco para verlo */
.booking-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

/* Estilo para las opciones del menú desplegable (Huéspedes) */
.booking-input option {
    background-color: #1E2621;
    /* Fondo oscuro */
    color: white;
    /* Texto blanco */
}

/* El Botón "Reservar" */
.booking-submit {
    background-color: var(--color-wood);
    /* Color Cobre/Madera */
    color: white;
    padding: 0.6rem 1.2rem;
    /* Más compacto */
    border-radius: 50px;
    border: none;
    font-size: 0.85rem;
    /* Texto más sutil */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: auto;
    min-width: 120px;
}

.booking-submit:hover {
    background-color: #d48c66;
    /* Un poco más claro al pasar el mouse */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 124, 84, 0.4);
}

/* Ajuste para móviles: Que se ponga uno debajo del otro */
@media (max-width: 768px) {
    .booking-widget {
        flex-direction: column;
        border-radius: 20px;
        align-items: stretch;
        /* Ocupa todo el ancho */
    }

    .booking-submit {
        width: 100%;
    }
}

/* Sauna Feature */
.sauna-feature {
    display: flex;
    flex-direction: column;
    background: var(--color-forest);
    color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 4rem 0;
}

@media (min-width: 768px) {
    .sauna-feature {
        flex-direction: row;
        height: 400px;
    }
}

.sauna-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-terracotta {
    background-color: var(--color-wood);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn-terracotta:hover {
    background-color: #A66844;
    transform: translateY(-2px);
}

/* --- SECCIÓN CONTACTO --- */
.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (min-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.location-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-subtitle {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-forest);
    margin-bottom: 1rem;
}

.location-desc {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(45, 74, 62, 0.1);
    /* Verde suave */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-list strong {
    display: block;
    color: var(--color-forest);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-list span {
    color: #555;
    font-size: 0.95rem;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-terracotta);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: var(--color-wood);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 81, 70, 0.3);
}

.map-container {
    min-height: 400px;
    background: #eee;
}

/* --- FOOTER DE LUJO --- */
.footer {
    background-color: #1E2621;
    /* Verde Bosque Muy Oscuro (Casi Negro) */
    color: white;
    /* Texto blanco */
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 900px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        /* Columna de marca más ancha */
    }
}

/* Marca y Texto */
.footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

/* Redes Sociales */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    /* Added font size */
    transition: all 0.3s ease;
    text-decoration: none;
    /* Ensure no underline */
}

.social-links a:hover {
    background: var(--color-wood);
    color: white;
    transform: translateY(-3px);
}

.social-links i {
    color: inherit;
    /* Ensure icon takes the color */
}

/* Títulos de Columnas */
.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-wood);
    /* Color Cobre */
    font-family: 'DM Serif Display', serif;
    letter-spacing: 1px;
}

/* Listas de Enlaces */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a,
.footer ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer ul li a:hover {
    color: white;
    padding-left: 5px;
    /* Pequeño movimiento al pasar el mouse */
}

.footer-contact i {
    color: var(--color-wood);
}

/* Badges de Confianza */
.badges-container {
    display: flex;
    gap: 1rem;
}

.trust-badge {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    line-height: 1.2;
}

.trust-badge i {
    font-size: 1.5rem;
    color: #4CAF50;
    /* Verde Sostenible */
}

/* Barra Inferior */
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Animación de pulso para llamar la atención */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 12px 25px;
    /* Más espacio horizontal */
    border-radius: 50px;
    /* Forma de píldora */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Espacio entre icono y texto */
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
    /* Animación constante */
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #20bd5a;
    animation: none;
    /* Pausar animación al hacer hover */
}

.whatsapp-icon {
    font-size: 24px;
    /* Tamaño del icono FontAwesome */
}

.whatsapp-text {
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-body);
    white-space: nowrap;
}

/* --- ESTILOS DEL BLOQUE "IMAGEN + TEXTO" --- */

/* 1. Quitamos el padding de la sección principal para que llegue a los bordes */
.image-text-section {
    padding: 0 !important;
    /* Importante: Fuerza a que no haya espacio interno */
    overflow: hidden;
    /* Asegura que nada se salga del contenedor */
    background-color: #f8f9fa;
    /* Un fondo gris muy claro por si acaso */
}

/* 2. Ajustamos el contenedor del texto para que tenga espacio pero no márgenes externos */
.text-content {
    padding: 5rem;
    /* Espacio interno generoso alrededor del texto */
}

/* --- AJUSTES PARA MÓVILES (Celulares) --- */
@media (max-width: 768px) {
    .text-content {
        padding: 3rem 1.5rem;
        /* Menos padding en pantallas pequeñas */
        text-align: center;
        /* Centramos el texto para que se vea mejor */
    }

    .section-title {
        font-size: 2.5rem;
        /* Reducimos un poco el tamaño del título */
    }
}

/* --- CLASES UTILITARIAS (Agregadas para soporte) --- */
.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-forest);
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* --- ESTILOS SECCIÓN ANCHO COMPLETO (Entorno) --- */

/* Clase para la sección que debe ir de borde a borde */
.full-width-split {
    padding: 0 !important;
    /* Fuerza a que no haya espacio interno en el contenedor principal */
    overflow: hidden;
    /* Asegura que nada se salga */
    background-color: #f9f5f0;
    /* El mismo color de fondo de tu web */
}

/* El contenedor del texto necesita su propio espacio interno generoso */
.split-text-content {
    padding: 5rem;
    /* Mucho espacio para que respire */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- AJUSTES PARA MÓVILES (Celulares) --- */
@media (max-width: 991px) {
    .split-text-content {
        padding: 3rem 1.5rem;
        /* Menos padding en pantallas pequeñas */
        text-align: center;
        /* Centramos el texto para que se vea mejor */
        align-items: center;
    }

    /* Ajuste para que la imagen tenga una altura definida en móvil */
    .full-width-split img {
        min-height: 300px;
        object-fit: cover;
    }
}

.section-eyebrow {
    color: #C17C54;
    /* Color Cobre */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

/* --- BOTÓN RESERVAR NAVBAR --- */
.btn-reservar-nav {
    background-color: var(--color-wood);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
    /* display: none;  <-- REMOVED to show on mobile menu */
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-reservar-nav:hover {
    background-color: white;
    color: var(--color-wood);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
    .btn-reservar-nav {
        display: inline-block;
    }
}

/* Ensure mobile menu items are spaced correctly */
@media (max-width: 768px) {
    .btn-reservar-nav {
        margin-left: 0;
        margin-top: 1rem;
        background-color: var(--color-terracotta);
        /* Stand out on mobile */
        width: 80%;
        text-align: center;
    }
}

/* --- NUEVA BARRA DE ATENCIÓN DIRECTA (WhatsApp) --- */

.whatsapp-direct-bar {
    /* Fondo negro semitransparente y efecto "cristal" */
    background-color: rgba(15, 23, 18, 0.8);
    /* Un verde bosque muy oscuro y transparente */
    backdrop-filter: blur(10px);
    /* Efecto de desenfoque premium detrás */
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.8rem 0;
    /* Un poco más de espacio vertical */
    margin-top: -4rem;
    /* Se superpone elegantemente a la foto de portada */
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    /* Sombra suave para profundidad */
}

.benefit-title {
    font-family: 'DM Serif Display', serif;
    /* Tu fuente elegante para títulos */
    font-size: 1.6rem;
    letter-spacing: 0.5px;
}

.benefit-icon {
    font-size: 1.6rem;
    margin-right: 0.5rem;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    /* Sombra sutil al icono */
}

.benefit-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Botón Cobre Mejorado para la acción principal */
.btn-cobre {
    background: linear-gradient(135deg, #C17C54, #A86540);
    /* Degradado sutil color cobre */
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    /* Botón más ancho y cómodo */
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    /* Botón redondeado moderno */
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(193, 124, 84, 0.3);
    /* Sombra brillante del color cobre */
}

.btn-cobre:hover {
    background: linear-gradient(135deg, #d48d66, #b57350);
    /* Un poco más claro al pasar el mouse */
    transform: translateY(-3px);
    /* Efecto de elevación */
    box-shadow: 0 8px 20px rgba(193, 124, 84, 0.5);
    color: white;
}

/* Icono de WhatsApp dentro del botón */
.btn-cobre svg {
    width: 24px;
    height: 24px;
}

/* Ajustes para Celulares */
@media (max-width: 768px) {
    .whatsapp-direct-bar {
        padding: 1rem 1rem;
        /* Reducido de 2rem 1.5rem */
        margin-top: 0;
        text-align: center;
        background-color: rgba(26, 32, 29, 0.95);
        /* Más transparente y compacto */
        backdrop-filter: blur(5px);
    }

    .benefit-title {
        font-size: 1.1rem;
        /* Reducido de 1.4rem */
        display: block;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }

    .benefit-icon {
        display: inline-block;
        /* Icono al lado para ahorrar espacio vertical */
        margin: 0 0.5rem 0 0;
        font-size: 1.2rem;
        /* Más pequeño */
    }

    .benefit-subtitle {
        font-size: 0.85rem;
        /* Reducido */
        margin-bottom: 0.8rem !important;
        line-height: 1.3;
    }

    .btn-cobre {
        width: 100%;
        padding: 0.7rem 1rem;
        /* Mucho más compacto */
        font-size: 0.9rem;
    }
}

/* --- ABOUT PAGE --- */

.about-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--color-forest);
    overflow: hidden;
}

.about-content {
    padding: 5rem 0;
}

.text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #F9F5F0;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-wood);
    margin-bottom: 1.5rem;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-forest);
}

/* Hosts Section */
.hosts-section {
    margin-top: 5rem;
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hosts-img-container {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    width: 200px;
    height: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    margin-bottom: 1.5rem;
}

.hosts-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hosts-section:hover .hosts-img {
    transform: scale(1.1);
}

.hosts-title {
    font-family: var(--font-display);
    color: var(--color-forest);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hosts-subtitle {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
}



@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

.form-label {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-control,
.form-select {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus,
.form-select:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--color-wood);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(193, 124, 84, 0.25);
}

/* Flatpickr compatibility */
.flatpickr-day.selected {
    background: var(--color-wood) !important;
    border-color: var(--color-wood) !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.w-100 {
    width: 100% !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.fst-italic {
    font-style: italic !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

/* ==============================================
   NUEVA BARRA DE RESERVAS MINIMALISTA (HOME)
   ============================================== */

/* 1. Quitar el fondo negro y sombras del contenedor principal */
.booking-container {
    background-color: transparent !important;
    /* Hace el fondo invisible */
    box-shadow: none !important;
    /* Quita cualquier sombra */
    border: none !important;
    padding-top: 2rem;
    /* Un poco de aire arriba */
}

/* Opcional: Un degradado sutil negro solo en la parte inferior para asegurar
   que el texto blanco se lea si la parte baja de la foto es muy clara */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    /* Ocupa el 40% inferior */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    /* Deja pasar los clics */
    z-index: 1;
}

/* Aseguramos que la barra esté sobre el degradado */
.booking-container {
    position: relative;
    z-index: 2;
}


/* 2. Estilizar los campos de entrada (Inputs y Selects) para que sean limpios */
.booking-container .form-control,
.booking-container .form-select {
    background-color: transparent !important;
    /* Sin fondo de caja */
    border: none !important;
    /* Quitamos los 4 bordes */
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
    /* Solo dejamos una línea fina blanca abajo */
    border-radius: 0 !important;
    /* Esquinas rectas */
    color: #ffffff !important;
    /* Texto blanco brillante */
    padding-left: 0;
    /* Pegado a la izquierda */
    font-weight: 500;
    box-shadow: none !important;
    /* Quita el brillo azul al hacer clic */
}

/* Estilo cuando el usuario hace clic en un campo */
.booking-container .form-control:focus,
.booking-container .form-select:focus {
    background-color: transparent !important;
    border-bottom-color: #ffffff !important;
    /* La línea se pone blanca sólida */
    box-shadow: none !important;
}

/* Cambio de color para los textos "placeholder" (ej. "Llegada", "Salida") */
.booking-container .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* 3. Estilizar las etiquetas pequeñas encima de los campos (si las hay) */
.booking-container label {
    color: rgba(255, 255, 255, 0.6) !important;
    /* Blanco más suave */
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* 4. Asegurar que la flechita del selector de huéspedes sea blanca */
.booking-container .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

/* ================================================================
   ESTILOS FINALES PARA EL LANZAMIENTO (LUJO & FUNCIONALIDAD)
   ================================================================ */

/* --- 1. BARRA DE RESERVAS MINIMALISTA TRANSPARENTE (HOME) --- */
/* Esto logra el efecto limpio sobre la tinaja que vimos en la imagen final */

.hero-section .booking-container {
    background-color: transparent !important;
    /* Fondo invisible */
    box-shadow: none !important;
    /* Sin sombras */
    border: none !important;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Campos de texto (Llegada, Salida, Huéspedes) */
.hero-section .booking-container .form-control,
.hero-section .booking-container .form-select {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
    /* Línea fina blanca */
    border-radius: 0 !important;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 1.1rem;
    padding-left: 0;
    box-shadow: none !important;
}

/* Al hacer clic en un campo */
.hero-section .booking-container .form-control:focus,
.hero-section .booking-container .form-select:focus {
    background-color: transparent !important;
    border-bottom-color: #ffffff !important;
    box-shadow: none !important;
}

/* Etiquetas pequeñas (LLEGADA, SALIDA) */
.hero-section .booking-container label {
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

/* Botón Cotizar Verde - Ajuste de tamaño y peso */
.hero-section .btn-cotizar-whatsapp {
    font-weight: 700 !important;
    letter-spacing: 1px;
    padding: 1rem 1.5rem;
    /* Un poco más robusto */
    font-size: 1rem;
}


/* --- 2. AJUSTES FINALES DEL FOOTER (PIE DE PÁGINA) --- */

/* Títulos del footer */
footer h5 {
    font-family: 'DM Serif Display', serif;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Lista de métodos de pago con iconos pequeños */
.payment-methods-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* === FIX URGENTE BOTÓN MÓVIL (MODO TOTAL) === */
@media (max-width: 991px) {

    /* 1. ROMPER LA GRILLA DEL HTML ANTIGUO: Forzamos Flex Vertical */
    .booking-container form {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        align-items: stretch !important;
        width: 100% !important;
        grid-template-columns: none !important;
        /* Anular Grid si existe */
    }

    /* 2. ANULAR ANCHOS FIJOS DE LOS CAMPOS */
    .booking-container form>div {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    /* TRUCO DE ESPACIO: Poner Llegada y Salida en la misma línea (50% y 50%) */
    /* Asumimos que son el 2do y 3er div dentro del form (según el orden HTML) */
    .booking-container form>div:nth-child(2),
    /* Llegada */
    .booking-container form>div:nth-child(3)

    /* Salida */
        {
        width: 48% !important;
        /* Casi la mitad */
        display: inline-block !important;
    }

    /* Contenedor flexible para alinearlos juntos si hace falta */
    .booking-container form {
        display: flex !important;
        flex-direction: row !important;
        /* Volver a fila para permitir wrap */
        flex-wrap: wrap !important;
        gap: 10px !important;
        justify-content: space-between !important;
    }

    /* Cabaña y Huéspedes ocupan todo el ancho */
    .booking-container form>div:nth-child(1),
    /* Texto oculto input no cuenta visualmente */
    .booking-container form>div:nth-child(2),
    /* Cabaña */
    .booking-container form>div:nth-child(5),
    /* Huéspedes */
    .booking-container form>div:nth-child(6)

    /* Botón Container */
        {
        width: 100% !important;
    }

    /* Corrección específica: Los inputs de fecha (hijos 3 y 4 visualmente considerando el hidden) */
    /* Ajuste preciso dado el HTML:
       1. Hidden Input
       2. Div Cabaña
       3. Div Llegada
       4. Div Salida
       5. Div Huéspedes
       6. Div Botón
    */
    .booking-container form>div:nth-of-type(2),
    /* Llegada */
    .booking-container form>div:nth-of-type(3)

    /* Salida */
        {
        width: 48% !important;
    }

    /* 3. BOTÓN GIGANTE */
    .btn-cotizar-whatsapp {
        display: flex !important;
        width: 100% !important;
        justify-content: center;
        align-items: center;
        padding: 16px !important;
        font-size: 1.1rem !important;
        margin-top: 10px;
        background-color: #25D366 !important;
        /* Verde WhatsApp */
        border-radius: 50px !important;
    }

    /* 4. Asegurar que los inputs se vean bien */
    .booking-container label {
        margin-top: 5px;
    }

    /* 5. FIX DE ALTURA: Evitar que el botón se monte encima de la siguiente sección */
    .hero-section {
        height: auto !important;
        /* Crece lo que necesite */
        min-height: 100vh !important;
        /* Mínimo pantalla completa */
        padding-bottom: 4rem !important;
        /* Espacio extra abajo */
    }
}

/* --- MOBILE UX FIX: Visible Content (No Hover) --- */
@media (max-width: 991px) {

    .bento-content,
    .card-icons-grid,
    .btn-gallery {
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
        /* FIX: Gradient background instead of solid color so image is visible */
        background: linear-gradient(to top, rgba(20, 30, 25, 0.95) 0%, rgba(20, 30, 25, 0.6) 50%, transparent 100%) !important;
        justify-content: flex-end;
        /* Align content to bottom */
        padding-bottom: 2rem;
    }

    .card-name-overlay {
        opacity: 1 !important;
        font-size: 1.2rem !important;
        z-index: 10 !important;
        position: absolute !important;
        top: 15px !important;
        left: 15px !important;
    }

    .bento-bg {
        transform: scale(1.05);
        /* Slight zoom usually looks good */
        filter: brightness(0.6);
        /* Darker bg to make text readable */
    }
}

/* --- FIX PAGE HEADER CABANAS (PORTADA) --- */
.page-header {
    height: 60vh !important;
    /* Altura forzada */
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.page-header img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    /* Mejor encuadre para la foto nueva */
    opacity: 0.8;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


/* --- HERO CABANAS FIX (STRICT) --- */
.hero-cabanas {
    min-height: 80vh;
    /* Use path relative to CSS file: ../assets/... */
    background-image: url('../assets/images/general/portada-cabanas-hero-final.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay for readability */
.hero-cabanas::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-cabanas .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cabanas h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.hero-cabanas p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* MOBILE ADJUSTMENT */
@media (max-width: 768px) {
    .hero-cabanas {
        min-height: 70vh;
        background-position: center top;
    }

    .hero-cabanas h1 {
        font-size: 2.5rem;
    }
}


/* =====================================================
   HERO CABAÑAS – RESET LIMPIO Y DEFINITIVO
   ===================================================== */

.hero-cabanas {
    position: relative;
    width: 100%;
    min-height: 80vh;

    /* ⚠️ REEMPLAZAR POR LA RUTA REAL DE LA IMAGEN */
    background-image: url('../assets/images/general/portada-cabanas-hero-final.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #ffffff;

    /* COMPENSACIÓN HEADER FIJO */
    padding-top: 120px;
}

/* Overlay suave para legibilidad (NO oscuro) */
.hero-cabanas .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* Contenido del hero */
.hero-cabanas .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-cabanas h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 12px;
    line-height: 1.1;
    font-family: var(--font-display);
}

.hero-cabanas p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* =====================================================
   MOBILE
   ===================================================== */
@media (max-width: 768px) {
    .hero-cabanas {
        min-height: 70vh;
        background-position: center top;
        padding-top: 100px;
    }

    .hero-cabanas h1 {
        font-size: 2.2rem;
    }

    .hero-cabanas p {
        font-size: 1rem;
    }
}



/* =========================================
   CLEANUP & NEW FEATURES (2025)
   ========================================= */

/* --- SIMPLE SOLID HEADER (NO IMAGE) --- */
.hero-simple-solid {
    padding-top: 150px;
    padding-bottom: 3rem;
    background-color: #1E2621;
    /* Color corporativo oscuro */
    text-align: center;
    color: white;
}

.hero-simple-solid h1 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-simple-solid p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* --- CATALOG GRID STYLES (RESET) --- */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.cabin-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Ensure no hero styles leak here */
    height: auto !important;
    min-height: 0 !important;
}

.cabin-card:hover {
    transform: translateY(-5px);
}

.cabin-image {
    width: 100%;
    height: 250px;
    /* Force consistent height */
    object-fit: cover;
    display: block;
}

.cabin-info {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cabin-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-forest, #1E2621);
    font-family: var(--font-display, serif);
}

.cabin-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.cabin-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-wood, #C17C54);
    margin-top: auto;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .hero-simple-solid {
        padding-top: 120px;
        padding-bottom: 2rem;
    }

    .hero-simple-solid h1 {
        font-size: 2.2rem;
    }

    .catalog-grid {
        padding: 2rem 5%;
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }
}

/* =========================================
   HERO CABAÑAS UPDATE (Dec 24, 2025)
   ========================================= */

.hero-cabanas-2025 {
    position: relative;
    background-image: url('../assets/images/general/hero-cabanas-2025.webp');
    background-size: 115% auto;
    /* Alejar/Zoom leve (115%) */
    background-position: center 60%;
    /* Ajuste de encuadre */
    background-repeat: no-repeat;
    /* Height derived from requested 1920x900px aspect ratio, but flexible for screens */
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    /* Offset for fixed navbar if needed */
}

/* Dark overlay for readability */
.hero-cabanas-2025::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    /* Overlay reducido para más luz */
    z-index: 1;
}

.hero-cabanas-2025 .container {
    position: relative;
    z-index: 2;
}

.hero-cabanas-2025 h1 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    color: white;
}

.hero-cabanas-2025 p {
    font-size: 1.25rem;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    color: white;
}

@media (max-width: 768px) {
    .hero-cabanas-2025 {
        height: 40vh;
        min-height: 300px;
        margin-top: 60px;
        background-size: cover;
        /* Mobile: Cover es obligatorio para evitar cortes */
        background-position: center center;
    }

    .hero-cabanas-2025 h1 {
        font-size: 2.2rem;
    }
}

/* --- UTILITY CLASSES (BOOTSTRAP COMPATIBILITY) --- */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-flex {
        display: flex !important;
    }

    .sticky-md-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020;
    }
}

/* --- MOBILE BENTO FIX (Keep images visible) --- */
@media (max-width: 768px) {
    .bento-content {
        /* On mobile, don't cover the whole image */
        height: auto !important;
        min-height: 40% !important;
        top: auto !important;
        bottom: 0 !important;

        /* Gradient instead of solid dark */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%) !important;

        /* Always show text, no hover needed */
        opacity: 1 !important;

        /* Layout adjustments */
        padding: 1.5rem 1rem !important;
        justify-content: flex-end !important;
        display: flex !important;
    }

    /* Keep icons and button visible without animation delay */
    .card-icons-grid,
    .btn-gallery {
        transform: translateY(0) !important;
        opacity: 1 !important;
        transition: none !important;
    }

    /* FIX: Remove blurry text shadow from testimonials */
    .review-card p,
    .review-card h4,
    .review-card strong {
        text-shadow: none !important;
    }

    .card-icons-grid {
        margin-bottom: 0.5rem !important;
        gap: 1rem !important;
    }

    .icon-item i {
        font-size: 1.2rem !important;
    }

    .icon-item span {
        font-size: 0.7rem !important;
    }

    /* Ensure name overlay is always visible */
    .card-name-overlay {
        opacity: 1 !important;
        font-size: 1.5rem !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }

    /* Tweaks for description text */
    .bento-content p {
        font-size: 0.8rem !important;
        margin-bottom: 0.8rem !important;
        /* Let's keep it but small */
        display: block;
        opacity: 0.9;
    }

    /* Make button smaller/compact */
    .btn-gallery {
        padding: 0.5rem 1.5rem !important;
        font-size: 0.75rem !important;
    }
}

/* Fix overlap of Intro text on mobile */
@media (max-width: 768px) {
    .intro {
        position: relative;
        z-index: 2;
        padding-top: 3rem;
        padding-bottom: 2rem;
        background-color: var(--color-sand);
        /* Ensure solid background */
    }

    /* Ensure campaign bar is not hidden */
    #campaign-top-bar {
        display: flex !important;
        visibility: visible !important;
    }

    /* Rotate Carpintero Negro specific images if they have this class */
    .rotate-180 {
        transform: rotate(180deg);
    }
}

/* =========================================
   MOBILE FIXES & RESPONSIVE OVERRIDES
   (Moved from inline HTML - 2026 Refactor)
   ========================================= */

/* 1. Base del formulario móvil: Flexible y compacto */
.responsive-booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* === EMERGENCY STYLES (NUCLEAR FALLBACK) === */
.logo-img {
    width: 75px !important;
    height: 75px !important;
    max-width: 75px !important;
    object-fit: cover;
    border-radius: 50%;
}

.hero-section {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    z-index: 10000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Managed by JS */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 70%;
        height: 100vh;
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* Mobile Bento Fix */
@media (max-width: 768px) {
    .bento-content {
        opacity: 1 !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%) !important;
        bottom: 0 !important;
        top: auto !important;
        height: auto !important;
    }

    .card-name-overlay {
        opacity: 1 !important;
    }
}

/* 2. Reglas móviles por defecto (Mobile First real) */

/* Cabaña (100% ancho) */
.form-group-responsive:nth-of-type(1) {
    flex: 1 1 100%;
    width: 100%;
}

/* Fechas: Llegada y Salida (48% ancho c/u para caber en una línea) */
.form-group-responsive:nth-of-type(2),
.form-group-responsive:nth-of-type(3) {
    flex: 0 0 48%;
    width: 48%;
}

/* Huéspedes (100% ancho) */
.form-group-responsive:nth-of-type(4) {
    flex: 1 1 100%;
    width: 100%;
}

/* Botón (100% ancho y margen ajustado para alineación) */
.form-group-responsive.btn-container {
    flex: 1 1 100%;
    width: 100%;
    margin-top: 5px;
}

/* Ajustes visuales para inputs móviles */
.form-group-responsive label {
    font-size: 0.7rem;
    margin-bottom: 2px;
}

/* ESCRITORIO (Pantallas grandes > 992px) */
@media (min-width: 992px) {
    .responsive-booking-form {
        flex-wrap: nowrap !important;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        max-width: 1000px;
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.3);
        padding: 15px 25px;
        border-radius: 50px;
        backdrop-filter: blur(5px);
    }

    .form-group-responsive {
        flex: 0 1 auto !important;
        width: auto !important;
        margin-bottom: 0;
    }

    /* Anchos específicos escritorio */
    .form-group-responsive:nth-of-type(1) {
        min-width: 220px !important;
        flex: 2 !important;
    }

    .form-group-responsive:nth-of-type(2),
    .form-group-responsive:nth-of-type(3) {
        min-width: 140px !important;
        flex: 1 !important;
    }

    .form-group-responsive:nth-of-type(4) {
        min-width: 130px !important;
        flex: 1 !important;
    }

    /* Fix Button Container */
    .form-group-responsive.btn-container {
        width: auto !important;
        flex: 0 0 auto !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 10px;
    }

    .responsive-booking-form button {
        width: auto !important;
        min-width: 180px;
        height: 45px !important;
        margin: 0 !important;
    }

    /* BENTO GRID FIX PC */
    .span-pc-2 {
        grid-column: span 2 !important;
    }
}

/* FIX BARRA NARANJA FIJA EN MÓVIL */
@media (max-width: 768px) {
    .whatsapp-direct-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        margin-top: 0 !important;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    }

    body {
        padding-bottom: 100px !important;
    }
}

/* === AJUSTES FINALES MÓVIL (Versión "Logo Libre & Sin Choques") === */
@media (max-width: 991px) {
    .hero-section {
        background-position: center bottom !important;
        padding-top: 180px !important;
        padding-bottom: 150px !important;
        height: auto !important;
        min-height: 100vh !important;
    }

    .hero-section>.container {
        padding-top: 0 !important;
    }

    .hero-title {
        font-size: 2.6rem !important;
        margin-top: 0 !important;
    }

    .form-group-responsive:nth-of-type(2),
    .form-group-responsive:nth-of-type(3) {
        flex: 0 0 44% !important;
        width: 44% !important;
    }

    .btn-cotizar-whatsapp {
        margin-bottom: 0 !important;
    }
}

/* --- NUCLEAR FIX FOR HERO ELEMENTS --- */

/* 1. Ensure booking fields are always transparent (Prevent "white bar") */
.hero-section .form-select,
.hero-section .form-control {
    background-color: transparent !important;
    background: transparent !important;
    color: white !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.hero-section .form-select option {
    background-color: #1a2a20 !important;
    color: white !important;
}

/* 2. Position stickers at the bottom of the hero (Spanish & English) */
.hero-section .trust-badges-container {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    z-index: 100 !important;
    margin-top: 0 !important;
    background: transparent !important;
}

@media (max-width: 768px) {
    .hero-section .trust-badges-container {
        bottom: 15px !important;
        gap: 8px !important;
    }
}

/* ============================================================
   UX + PERFORMANCE FIXES — 2026-04-09
   ============================================================ */

/* Z-INDEX HIERARCHY — centralized */
:root {
    --z-content:    1;
    --z-sticky:   100;
    --z-floats:   900;
    --z-whatsapp: 9999;
    --z-booking-btn: 10000;
    --z-navbar:  10001;
    --z-banner:  10002;
    --z-modal:   20000;
}

/* Hero subtitle — mobile legibility fix */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem !important;
        padding: 0 20px !important;
        max-width: 100% !important;
        border-left: none !important;
        padding-left: 0 !important;
        text-align: center;
        line-height: 1.4;
    }
}

/* Floating buttons — align at bottom edge, no content overlap */
@media (max-width: 768px) {
    .btn-floating-booking {
        bottom: 20px !important;
        right: 20px !important;
    }
}

/* ============================================================
   MOBILE MENU DROPDOWN — fondo oscuro al abrir
   El navbar es bg-transparent: sin fondo el menú es ilegible
   ============================================================ */
@media (max-width: 991.98px) {
    #navbarNav.show {
        background: rgba(10, 22, 14, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        padding: 1.2rem 1.5rem 1.5rem;
        border-radius: 0 0 16px 16px;
        margin-top: 6px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    }

    /* Separar ítems verticalmente para mejor touch target */
    #navbarNav.show .nav-item {
        padding: 6px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    #navbarNav.show .nav-item:last-child {
        border-bottom: none;
        padding-top: 12px;
    }

    /* Nav links más grandes para mobile */
    #navbarNav.show .nav-link {
        font-size: 1rem;
        letter-spacing: 1.5px;
        padding: 8px 4px !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    #navbarNav.show .nav-link:hover,
    #navbarNav.show .nav-link.active {
        color: #C17C54 !important;
    }
}