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

:root {
    /* Colors */
    --color-forest: #1E2621;
    --color-wood: #C17C54;
    --color-sand: #F4F1EA;
    --color-white: #FFFFFF;
    --text-main: #2C332E;

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

    /* Spacing & UI */
    --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;
}

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;
}

.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%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.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.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    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: 0 2px 4px rgba(0, 0, 0, 0.5);
    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 verde bosque sólido para asegurar legibilidad */
    background-color: var(--color-forest) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.5rem 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.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: 2rem 1.5rem;
        margin-top: 0;
        /* En celular no se superpone, queda debajo */
        text-align: center;
        background-color: #1a201d;
        /* Fondo sólido en móvil para mejor lectura */
    }

    .benefit-title {
        font-size: 1.4rem;
        display: block;
        /* Título en su propia línea */
        margin-top: 0.5rem;
    }

    .benefit-icon {
        display: block;
        /* Icono arriba del título */
        margin: 0 auto 0.5rem auto;
        font-size: 2rem;
    }

    .benefit-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem !important;
    }

    .btn-cobre {
        width: 100%;
        /* Botón ancho completo en celular */
        padding: 1.2rem;
        /* Botón más alto para tocar fácil */
    }
}

/* --- 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 */
    }
}
/* EXPERIENCIAS */
.exp-section{ background:#fff; }

.exp-block{
  padding:3rem 0;
  border-top:1px solid rgba(0,0,0,.06);
}

.exp-tag{
  font-size:.75rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:700;
  color:#b8743a;
}

.exp-h2{
  font-family:"DM Serif Display",serif;
  font-size:2rem;
  margin:.5rem 0 1rem;
}

.exp-text{
  font-size:1.05rem;
  line-height:1.65;
  color:#6b7280;
  margin-bottom:1.5rem;
}

.exp-img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 .75rem 1.5rem rgba(0,0,0,.15);
}

/* Botones */
.exp-btn-outline,
.exp-btn-primary{
  display:inline-block;
  padding:.75rem 1.2rem;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
}

.exp-btn-outline{
  border:1px solid rgba(0,0,0,.25);
  color:#111;
}
.exp-btn-outline:hover{ border-color:#111; }

.exp-btn-primary{
  background:#b8743a;
  color:#fff;
}
.exp-btn-primary:hover{ background:#a76633; }

/* Cierre */
.exp-cierre{
  padding:3.5rem 0;
}
.exp-cierre-text{
  font-family:"DM Serif Display",serif;
  font-size:1.6rem;
}

/* iPhone */
@media(max-width:430px){
  .exp-img{ height:280px; }
  .exp-btn-outline,
  .exp-btn-primary{ width:100%; text-align:center; }
  .exp-h2{ font-size:1.5rem; }
}
