
:root {
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-menu: #d1d1d1;
    --accent: #8b5cf6;
    --accent-dark: #7c3aed;
    --background: #ffffff;
    --background-subtle: #c4c4c7; 
    --border-color: #e5e7eb;
    --navbar-h: 4rem;
    --header-pt: 6rem;
    --header-pb: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--background);
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: var(--navbar-h);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3 {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
p { margin-bottom: 1rem; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--accent-dark); }

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- NAVEGACIÓN RESPONSIVE --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #222222;
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--navbar-h);
}
.logo-image {
    height: calc(var(--navbar-h) - 16px);
    width: auto;
}
.nav-links { 
    display: none;
 }


.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    padding: 0.5rem;
}
.mobile-menu-button .icon {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}
.mobile-menu {
    display: none;
    background-color: #222222;
    border-top: 1px solid #444;
}
.mobile-menu a {
    display: block;
    padding: 1rem;
    text-align: center;
    color: var(--text-menu);
    font-weight: 500;
}
.mobile-menu.active { display: block; }

/* ===================================================
   REGLAS PARA MOSTRAR EL MENÚ DE ESCRITORIO
   (Añadir al final del archivo css/style-suite.css)
   =================================================== */

@media (min-width: 768px) {

     body {
        font-size: 17px;
    }

    /* Oculta el botón de hamburguesa en pantallas grandes */
    .mobile-menu-button {
        display: none;
    }

    /* Oculta el panel del menú móvil (incluso si se quedó abierto) */
    .mobile-menu {
        display: none !important;
    }

    /* Muestra los enlaces del menú de escritorio */
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem; /* Espacio entre los enlaces del menú */
    }

    /* Estilo para el texto de los enlaces */
    .nav-links .text-menu {
        color: var(--text-menu);
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .nav-links .text-menu:hover {
        color: #ffffff;
    }
}

.sub-header-suite {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100px; 
    padding: 20px;
    text-align: center;
    background-color: #6a6969;
    color: #d1d1d1;
    margin-top: 60px;
}

.sub-header-title {
    font-size: 24px;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sub-header-text { 
    font-size: 18px; 
    color: #d1d1d1; 
    max-width: 600px; 
    line-height: 1.6;
}

@media (min-width: 768px) {
    .sub-header-suite {
        padding: 20px;
    }
    .sub-header-title {
        font-size: 24px;
    }
    .sub-header-text {
        max-width: 900px;
    }
}

.horizontal-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    padding: 4.5rem 0;
    background: linear-gradient(to bottom, #d9d9d9 40%, #ffffff 100%);
}

.horizontal-scroll-wrapper::-webkit-scrollbar { 
    display: none;
 }

.horizontal-scroll-track {
    display: flex;
    padding: 0 5vw;
    gap: 8vw;
}

@media (min-width: 768px) {
    .horizontal-scroll-wrapper {
        padding: 14rem 0;
    }
}

@media (min-width: 1104px) {
    .horizontal-scroll-wrapper {
        padding: 1.5rem 0;
    }
}


.module-section, .module-section-b {
    width: 85vw; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-shrink: 0;
    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .module-section, .module-section-b {
        width: 600px;
    }
}

.module-text h2 {
    font-size: 24px;
    color: #131313;
    font-weight: bold;
    margin-bottom: 1rem;
}

.module-text p { 
    font-size: 16px; 
    line-height: 1.7rem; 
    color: #090909; 
}

@media (min-width: 768px) {
    .module-text h2 {
        font-size: 24px;
    }
    .module-text p {
        font-size: 16px;
        line-height: 1.8rem;
    }
}

.suite-image {
    width: 280px;
    height: 220px;
    border-radius: 0 20px 0 20px;
    box-shadow: 10px 15px 20px rgba(0, 0, 0, 0.8);
    transition: transform 0.6s ease, box-shadow 0.6s ease, filter 0.6s ease;
    filter: grayscale(100%);
    cursor: pointer;
}

.suite-image:hover {
    transform: scale(1.05);
    box-shadow: 15px 20px 25px rgba(0, 0, 0, 0.8);
    filter: grayscale(0%);
}

@media (min-width: 768px) {
    .suite-image {
        width: 360px;
        height: 300px;
    }
}
@media (min-width: 1024px) {

    body {
        font-size: 18px;
    }

    .suite-image {
        width: 300px;
        height: 270px;
    }
}

/* --- MODAL DE LA SUITE (SIN CAMBIOS) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background-color: var(--background);
    border-radius: 1rem;
    position: relative;
    max-width: 800px;
    max-height: 90vh;
    width: 90vw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}
.modal-overlay.visible .modal-content { transform: scale(1); }
.modal-page-content { padding: 2rem; flex-grow: 1; overflow-y: auto; }
#modal-image {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}
#modal-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
#modal-description { font-size: 1rem; line-height: 1.6; }
.modal-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}
.modal-nav-arrow {
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    padding: 0 1.5rem;
    transition: color 0.2s ease;
}
.modal-nav-arrow:hover { color: var(--text-primary); }
.modal-nav-arrow:disabled { color: #ddd; cursor: not-allowed; }
.modal-page-indicator {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    min-width: 50px;
    text-align: center;
}

/* --- BOTÓN FLOTANTE DE WHATSAPP --- */
.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    display: grid;
    place-items: center;
    z-index: 999;
    transition: transform .15s ease, box-shadow .15s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.3); }
.wa-float svg { width: 28px; height: 28px; fill: #ffffff; }