.elementor-28 .elementor-element.elementor-element-f87f8db{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-617ad53 *//* --- VARIABLES --- */
:root {
    --f-ivory: rgba(246, 241, 234, 0.95);
    --f-charcoal: #1A1A1A;
    --f-gold: #C5A059; /* Un dorado sutil por si acaso */
}

/* --- CONTENEDOR PRINCIPAL --- */
.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: var(--f-ivory);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Efecto al hacer scroll (opcional) */
.custom-header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    background: rgba(246, 241, 234, 0.98);
}

/* --- LOGO --- */
.header-logo img {
    display: block;
    height: auto;
    transition: height 0.3s ease;
}

/* --- BOTONES "BONITOS" (NUEVO) --- */
.h-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px; /* Bordes redondeados modernos */
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.5px;
}

/* Botón WhatsApp (Outline elegante) */
.h-btn-wa {
    background: transparent;
    border: 1px solid var(--f-charcoal);
    color: var(--f-charcoal);
}

.h-btn-wa:hover {
    background: rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

/* Botón Reservar (Sólido y destacado) */
.h-btn-primary {
    background: var(--f-charcoal);
    border: 1px solid var(--f-charcoal);
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.h-btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* --- VERSIÓN DESKTOP --- */
@media (min-width: 1025px) {
    .header-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 10px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo Desktop Grande */
    .header-logo img { height: 140px; }

    /* Ocultar móvil */
    .h-mobile-toggle, .h-mobile-menu { display: none !important; }

    /* Mostrar desktop */
    .header-nav-desktop, .header-actions {
        display: flex;
        gap: 30px; /* Más espacio entre items */
        align-items: center;
    }

    /* Enlaces del menú */
    .h-link {
        font-family: 'Inter', sans-serif;
        color: var(--f-charcoal);
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        position: relative;
    }

    /* Subrayado animado al pasar el mouse */
    .h-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: -4px;
        left: 0;
        background-color: var(--f-charcoal);
        transition: width 0.3s ease;
    }
    .h-link:hover::after { width: 100%; }
}

/* --- VERSIÓN MÓVIL (Grid Centrado) --- */
@media (max-width: 1024px) {
    .header-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 10px 20px;
        height: 100px;
    }

    /* Logo al centro */
    .header-logo {
        grid-column: 2;
        justify-self: center;
    }
    .header-logo img { height: 85px; } /* Logo Móvil Grande */

    /* Hamburguesa a la derecha */
    .h-mobile-toggle {
        grid-column: 3;
        justify-self: end;
        display: flex;
    }

    /* Ocultar desktop */
    .header-nav-desktop, .header-actions { display: none; }
}

/* --- HAMBURGUESA --- */
.h-mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}
.h-mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--f-charcoal);
    transition: 0.3s;
}
.h-mobile-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.h-mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
.h-mobile-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- DRAWER MÓVIL --- */
.h-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--f-ivory);
    padding-top: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 99990;
}
.h-mobile-menu.active { transform: translateY(0); }

.h-mobile-menu a {
    font-size: 24px;
    color: var(--f-charcoal);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
}

/* Botón reserva móvil */
.m-btn {
    margin-top: 20px;
    background: var(--f-charcoal);
    color: white !important;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}/* End custom CSS */