
:root {
    --color-primario: #2b2e83;
    --color-primario-transparente: #2b2e83a0;
    --color-contraste-primario: #f8f8f8;
    --color-secundario: #555555;
    --color-secundario-transparente: #555555a0;
    --color-contraste-secundario: #f8f8f8;
    --color-blanco: #FFFFFF;
    --color-blanco-transparente: #FFFFFFa0;
    --color-contraste-blanco: #222222;
    --color-negro: #000000;
    --color-contraste-negro: #f8f8f8;
    --color-negro-transparente: #000000a0;
    --color-texto-body: #222222;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--color-texto-body);
    background-color: var(--color-blanco);
    overflow-x: hidden;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
h1 {
    display: block;
    width: 100%;
    text-align: center;
}
.set-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    background-color: #e5e7eb;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.5;
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-negro) 100%);
}
.content-wrapper {
    position: relative;
    z-index: 10;
}
header, section, footer {
    position: relative;
    width: 100%;
    overflow: hidden;
}
footer {
    background-color: var(--color-contraste-primario);
}
header {
    height: 100vh;
}
header .overlay {
    background: rgba(0, 0, 0, 0.7);
}
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000 !important;
    transition: all 0.3s ease;
    padding: 1.5rem 2rem;
}
.nav-scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-scrolled a {
    color: var(--color-negro) !important;
}
.highlight {
    font-weight: 800;
    color: var(--color-primario) !important;
    font-size: 1.1em;
    font-style: italic;
}
.hero-text-container {
    max-width: 80%;
    max-height: 70%;
    text-align: center;
    color: var(--color-blanco);
}
.section-padding {
    padding: 40px 5%;
}
.card-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.contact-box {
    background: rgba(255, 255, 255, 0.75);
    padding: 4rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    z-index: 20;
}
.footer-col h4 {
    color: var(--color-primario);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.footer-link {
    color: var(--color-secundario);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.footer-link:hover {
    color: var(--color-primario);
}
.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

footer svg {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    fill: var(--color-primario);
}

#mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-blanco);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hamburger {
    cursor: pointer;
    z-index: 10001;
}
.grid-responsive {
    display: grid;
    gap: 2rem;
    justify-content: center;
}
@media (min-width: 769px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .grid-responsive { grid-template-columns: 1fr !important; }
    .hero-text-container { max-width: 95%; }
    .section-padding { padding: 60px 5%; }
    .contact-box { padding: 2rem; }
    .nav-container { padding: 1rem; }
}
canvas#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    display: none;
}
.aspect-1-1 { aspect-ratio: 1/1; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-3-2 { aspect-ratio: 3/2; }
.aspect-4-3 { aspect-ratio: 4/3; }
.reveal-text {
    overflow: hidden;
}
video {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100dvh;
    min-width: 100%;
    object-fit: cover;
    z-index: 0;
}
.info-estructura {
    padding: 10px 15px;
    border-radius: 8px;
    background-color: rgba(0,0,0,0.02);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.info-estructura:hover {
    transform: translateY(-5px);
    transition: all 0.2s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.info-estructura h5 {
    text-align: center;
}
.info-estructura svg {
    display: block;
    margin: 10px auto;
    width: 40px;
    height: 40px;
    border: 1px dotted var(--color-primario);
    padding: 5px;
    border-radius: 50%;
}
.info-estructura svg.fill {
    fill: var(--color-primario);
}
.info-estructura svg .stroke {
    stroke: var(--color-primario);
}
.info-estructura:hover > svg {
    background-color: var(--color-primario);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.info-estructura:hover > svg .stroke {
    stroke: var(--color-blanco);
}
.info-estructura:hover > svg.fill {
    fill: var(--color-blanco);
}
/* Cascadas */
.btn-cascada {
    cursor: pointer;
}
.btn-cascada-wrapper {
    position: relative;
}
.cascada {
    display: none;
    background-color: var(--color-blanco);
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
}
.cascada a {
    color: var(--color-negro);
    padding: 10px 5px;
    text-decoration: none;
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.cascada a:hover {
    background-color: #f8f8f8;
    color: var(--color-primario);
    padding-left: 12px;
}

#btn-lang {
    border: 1px solid var(--color-blanco);
    padding: 5px 10px;
    border-radius: 5px;
}
.nav-scrolled #btn-lang {
    border: 1px solid var(--color-negro);
}

.foot-hotel {
    padding: 15px 0 0 0;
    text-align: center;
    margin-bottom: 0;
}

.h-64 {
    height: 20rem !important;
}

.botones {
    display: block;
    text-align: center;
    margin-top: 100px;
    background-color: var(--color-primario);
    padding: 10px;
    border-radius: 5px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-blanco);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.botones:hover {
    background-color: var(--color-blanco);
    color: var(--color-primario);
}

.grid-inforestaurantes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    justify-content: center;
    width: 90%;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.grid-inforestaurantes .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    justify-content: center;
    text-align: left;
}

.grid-inforestaurantes .info-grid .botones {
    margin-top: 25px;
}

.grid-inforestaurantes .info-grid div:not(.relative.aspect-1-1):not(.set-img) {
    background-color: var(--color-secundario-transparente);
    padding: 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: fit-content;
    align-self: center;
}

/* Scroll Progress Bar */
#scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10002;
    pointer-events: none;
}
#scroll-progress-bar {
    height: 100%;
    background: var(--color-primario);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--color-primario-transparente);
}

.logo-hero {
    display: block;
    margin: 0 auto;
    height: 30px;
}

.logo-fill {
    fill: var(--color-blanco);
}

.btn-subir {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 5px;
    background-color: var(--color-primario);
    color: var(--color-blanco);
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10002;
}





/* Desktop Hover */
@media (min-width: 769px) {
    .nav-container .md\:flex {
        align-items: center;
    }
    .btn-cascada-wrapper .cascada {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0px;
    }
    .btn-cascada-wrapper:hover .cascada {
        display: block;
    }
    /* Triángulo decorativo */
    .cascada::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid var(--color-blanco);
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .cascada {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        background: transparent;
        border: none;
        text-align: center;
    }
    .cascada.active {
        display: block;
    }
    .cascada a {
        color: var(--color-primario);
        font-size: 15px;
        text-align: center;
    }
    #mobile-menu .btn-cascada-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .grid-inforestaurantes .info-grid {
        grid-template-columns: 1fr;
        gap: 0px;
        margin-bottom: 75px;
    }
    
}
