@font-face {
    font-family: 'Billion Dreams';
    src: url('assets/fonts/billion_dreams/BillionDreams_PERSONAL.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ==========================================================================
   CSS Variables & Global Settings
   ========================================================================== */
:root {
    --color-black: #0D0D0D;
    --color-carbon: #141414;
    --color-gold: #D4AF37;
    --color-gold-hover: #C5A059;
    --color-white: #F5F5F5;
    --color-gray: #A0A0A0;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ==========================================================================
   Header & Navigation — Split Logo Layout
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 2rem;
    gap: 1rem;
}

/* -- Zona 1: Redes Sociales (izquierda) -- */
.header-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 90px;
}

.social-icon-link {
    color: var(--color-gray);
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon-link:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* -- Zona 2 & 4: Navegación (ambos lados) -- */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.main-nav a {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-white);
    letter-spacing: 1px;
    position: relative;
    white-space: nowrap;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-gold);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-left ul {
    justify-content: flex-end;
}

.nav-right ul {
    justify-content: flex-start;
}

/* -- Zona 3: Logo centrado (protagonista) -- */
.logo-center {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.header-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: screen;
    transition: transform 0.3s ease;
}

.header-brand-name {
    font-family: 'Billion Dreams', cursive;
    font-size: 2.4rem;
    color: var(--color-gold);
    line-height: 1;
    margin-top: 5px;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.logo-center:hover .header-logo,
.logo-link:hover .header-logo,
.logo-link:hover .header-brand-name {
    transform: scale(1.05);
}

/* -- Zona 5: Íonos de utilidad (derecha) -- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 90px;
    justify-content: flex-end;
}

.header-icon-btn {
    background: transparent;
    border: none;
    color: var(--color-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.4rem;
    border-radius: 50%;
    transition: color 0.3s ease, background 0.3s ease;
}

.header-icon-btn:hover {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.08);
}

.header-cart-btn {
    position: relative;
    color: var(--color-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.4rem;
    border-radius: 50%;
    transition: color 0.3s ease, background 0.3s ease;
}

.header-cart-btn:hover {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.08);
}

.header-cart-btn .cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #E74C3C;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

/* -- Mobile Menu Toggle Button -- */
.mobile-menu-toggle {
    display: none;
    /* Oculto por defecto en desktop */
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle:hover {
    color: var(--color-gold);
}

/* -- Responsive Mobile -- */
@media (max-width: 900px) {

    .header-social {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        /* Mostrar botón de menú en móviles */
    }

    /* Estilos del menú móvil cuando está oculto (por defecto en esta resolución) */
    .main-nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(13, 13, 13, 0.98);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        padding: 1rem 0;
        z-index: 1001;
    }

    /* Estilos del menú móvil activo */
    .main-nav.active {
        display: block !important;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .header-logo {
        height: 50px;
    }

    .header-brand-name {
        font-size: 1.8rem;
    }

    .header-container {
        padding: 0.6rem 1rem;
        justify-content: space-between;
    }

    .header-actions .btn-gold-sm {
        display: none;
        /* Ocultar el botón Reservar en header para móviles, ya está en main */
    }
}

@media (max-width: 480px) {
    .header-logo {
        height: 40px;
    }

    .header-brand-name {
        font-size: 1.4rem;
    }
}


/* ==========================================================================
   Floating Elements (WhatsApp & Cart)
   ========================================================================== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.whatsapp-float {
    left: 30px;
    background-color: #25D366;
    color: white;
}

.whatsapp-float:hover {
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.cart-float {
    right: 30px;
    background-color: var(--color-carbon);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.cart-float:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #E74C3C;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

/* ==========================================================================
   Logo Images (panel, section, footer)
   ========================================================================== */
.panel-logo {
    max-width: 75%;
    max-height: 160px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    mix-blend-mode: screen;
    transition: transform 0.3s ease;
}

.triptych-panel:hover .panel-logo {
    transform: scale(1.05);
}

.section-logo {
    max-width: 220px;
    max-height: 180px;
    object-fit: contain;
    margin: 0 auto 1.5rem auto;
    display: block;
    mix-blend-mode: screen;
}

.footer-logo {
    max-width: 160px;
    max-height: 130px;
    object-fit: contain;
    margin-bottom: 1rem;
    mix-blend-mode: screen;
}

/* ==========================================================================
   Hero Tríptico (Triptych Section)
   ========================================================================== */
.hero-triptych {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.triptych-panel {
    position: relative;
    flex: 1;
    /* Initial width: 33.33% */
    height: 100%;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-right: none;
    /* Removed the yellow border */
    transform: skewX(-8deg);
    /* Creates the angular/diagonal cut */
    overflow: hidden;
}

/* Adjust the first and last panel to fill the screen bounds seamlessly */
.triptych-panel:first-child {
    margin-left: -5vw;
    padding-left: 5vw;
}

.triptych-panel:last-child {
    margin-right: -5vw;
    padding-right: 5vw;
    border-right: none;
}

/* The background image element */
.panel-bg {
    position: absolute;
    top: 0;
    left: -10vw;
    /* Expand to cover the skew */
    width: calc(100% + 20vw);
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: skewX(8deg);
    /* Un-skew the background */
    z-index: 0;
}

/* Hover Effect for Desktop */
@media (min-width: 992px) {
    .hero-triptych:hover .triptych-panel {
        flex: 1;
        /* Base for non-hovered elements */
    }

    .hero-triptych .triptych-panel:hover {
        flex: 2;
        /* Expands to 50% */
    }

    /* Enhance overlay and content on hover */
    .hero-triptych .triptych-panel:hover .panel-overlay {
        background: linear-gradient(to top, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.4) 100%);
    }

    .hero-triptych .triptych-panel:hover .panel-desc {
        opacity: 1;
        transform: translateY(0) skewX(8deg);
        visibility: visible;
        max-height: 100px;
    }

    .hero-triptych .triptych-panel:hover .btn-gold {
        transform: translateY(0) skewX(8deg);
        opacity: 1;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
}

/* Overlay to darken background image and ensure text readability */
.panel-overlay {
    position: absolute;
    top: 0;
    left: -10vw;
    width: calc(100% + 20vw);
    height: 100%;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.6) 100%);
    transition: background 0.6s ease;
    transform: skewX(8deg);
    /* Un-skew overlay */
    /* Sin z-index: el orden DOM (overlay antes que content) garantiza el orden correcto */
}

/* Content inside the panel */
.panel-content {
    position: relative;
    /* Sin z-index ni transform: evita crear un stacking context que bloquee mix-blend-mode */
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
}

.panel-content>* {
    transform: skewX(8deg);
    /* Un-skew the content items individually so text is straight */
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.panel-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.panel-desc {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

/* Button Styling */
.btn-gold {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Desktop behavior details */
@media (min-width: 992px) {
    .triptych-panel .panel-desc {
        opacity: 0;
        transform: translateY(20px) skewX(8deg);
        visibility: hidden;
        max-height: 0;
    }

    .triptych-panel .btn-gold {
        transform: translateY(20px) skewX(8deg);
        opacity: 0.8;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--color-carbon);
    padding: 4rem 2rem 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-gray);
}

.footer-contact h3,
.footer-social h3 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: var(--color-gray);
    font-size: 0.95rem;
}

.footer-contact li strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 0.2rem;
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.social-links a {
    color: var(--color-gray);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-gray);
    font-size: 0.85rem;
}

/* ==========================================================================
   Responsive Design (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 991px) {
    .hero-triptych {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
        position: relative;
        padding-top: 65px;
        box-sizing: border-box;
    }

    .triptych-panel {
        position: relative;
        flex: 1;
        height: 100%;
        transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transform: skewX(-6deg);
        overflow: hidden;
        border-right: 1px solid rgba(212, 175, 55, 0.25);
        margin: 0 !important;
        padding: 0 !important;
    }

    .triptych-panel:first-child {
        margin-left: -6vw !important;
        padding-left: 6vw !important;
    }

    .triptych-panel:last-child {
        margin-right: -6vw !important;
        padding-right: 6vw !important;
        border-right: none;
    }

    .panel-bg {
        position: absolute;
        top: 0;
        left: -15vw;
        width: calc(100% + 30vw);
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transform: skewX(6deg);
        z-index: 0;
    }

    .panel-overlay {
        position: absolute;
        top: 0;
        left: -15vw;
        width: calc(100% + 30vw);
        height: 100%;
        background: linear-gradient(to top, rgba(13, 13, 13, 0.94) 0%, rgba(13, 13, 13, 0.6) 100%);
        transition: background 0.5s ease;
        transform: skewX(6deg);
    }

    .panel-content {
        position: relative;
        text-align: center;
        padding: 0.5rem 0.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        transform: none;
        box-sizing: border-box;
    }

    .panel-content > * {
        transform: skewX(6deg);
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    /* Estado compacto / reposo en celular */
    .triptych-panel .panel-tagline {
        font-size: clamp(0.48rem, 1.8vw, 0.65rem);
        font-weight: 600;
        letter-spacing: 0.5px;
        line-height: 1.2;
        color: var(--color-gold);
        margin-bottom: 0.8rem;
        text-transform: uppercase;
        padding: 0 4px;
        opacity: 0.85;
        white-space: normal;
    }

    .triptych-panel .panel-logo {
        width: clamp(50px, 14vw, 70px);
        height: auto;
        max-height: 70px;
        object-fit: contain;
        margin-bottom: 1.2rem;
        transition: transform 0.4s ease, width 0.4s ease, max-height 0.4s ease;
        filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
    }

    .triptych-panel .panel-title {
        font-size: clamp(1rem, 3.5vw, 1.4rem);
        line-height: 1.1;
        margin-bottom: 0.6rem;
    }

    .triptych-panel .panel-desc {
        font-size: 0.75rem;
        line-height: 1.35;
        color: #d0d0d0;
        margin-bottom: 0.8rem;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        padding: 0 0.5rem;
    }

    .triptych-panel .btn-gold {
        padding: 0.45rem 0.6rem;
        font-size: clamp(0.58rem, 1.8vw, 0.72rem);
        letter-spacing: 0.5px;
        white-space: nowrap;
        border-radius: 50px;
        border-width: 1.5px;
        opacity: 0.9;
        transition: all 0.3s ease;
    }

    /* Estado Activo al tocar con el dedo en móvil */
    .triptych-panel.active {
        flex: 2.8;
        border-right-color: var(--color-gold);
    }

    .triptych-panel.active .panel-overlay {
        background: linear-gradient(to top, rgba(13, 13, 13, 0.96) 0%, rgba(13, 13, 13, 0.4) 100%);
    }

    .triptych-panel.active .panel-tagline {
        font-size: clamp(0.6rem, 2.2vw, 0.75rem);
        opacity: 1;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }

    .triptych-panel.active .panel-logo {
        width: clamp(75px, 20vw, 95px);
        max-height: 95px;
        transform: skewX(6deg) scale(1.08);
        margin-bottom: 0.8rem;
    }

    .triptych-panel.active .panel-desc {
        opacity: 1;
        visibility: visible;
        max-height: 110px;
        margin-bottom: 1.2rem;
    }

    .triptych-panel.active .btn-gold {
        padding: 0.65rem 1.3rem;
        font-size: clamp(0.68rem, 2.2vw, 0.8rem);
        opacity: 1;
        background-color: var(--color-gold);
        color: var(--color-black);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }
}

/* ==========================================================================
   Internal Sections
   ========================================================================== */
section[id] {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: var(--color-white);
}

/* ============================================================
   SECCIÓN: LUXURY (Slider de Servicios)
   ============================================================ */
.section-luxury-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: var(--color-black);
    overflow: hidden;
}

/* --- Fondo Slider --- */
.lux-slider-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lux-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
    transform: scale(1.05);
}

.lux-slide.active {
    opacity: 1;
    transform: scale(1);
}

.lux-slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.6) 0%,
        rgba(13, 13, 13, 0.4) 40%,
        rgba(13, 13, 13, 0.9) 100%
    );
    z-index: 1;
}

/* --- Contenido Superior (Título y Caja Info) --- */
.lux-slider-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
}

.lux-slider-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem 4rem 4rem 4rem;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    gap: 4rem;
}

.lux-slider-left {
    flex: 1;
    max-width: 600px;
}

.lux-tagline {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.lux-tagline-icon {
    margin-right: 8px;
    margin-top: -2px;
}

.lux-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.lux-desc {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.lux-slider-right {
    flex: 0 0 400px;
}

.lux-info-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: transparent;
}

.lux-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.lux-info-text h4 {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.lux-info-text p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.5;
    margin: 0;
}

.lux-btn {
    margin-top: 15px;
    display: inline-block;
}

/* --- Barra Inferior (Servicios) --- */
.lux-services-bottom-bar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.lux-srv-item {
    padding: 2.2rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lux-srv-item:last-child {
    border-right: none;
}

.lux-srv-item:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.lux-srv-item h4 {
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.lux-srv-item p {
    font-size: 0.9rem;
    color: var(--color-gold);
    margin: 0;
    font-weight: 500;
    margin-top: auto;
}

.services-list {
    list-style: none;
    margin-bottom: 3rem;
}

.services-list li {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.services-list li:hover {
    border-bottom-color: var(--color-gold);
}

.service-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.services-list li:hover .service-name {
    color: var(--color-gold);
}

.service-price {
    color: var(--color-gold);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* School Section */
.section-school {
    background-color: var(--color-black);
    text-align: center;
}

.school-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.school-header p {
    color: var(--color-gray);
    font-size: 1.1rem;
}

.school-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    margin-bottom: 3rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.course-card {
    background-color: var(--color-carbon);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.course-card.highlighted {
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    position: relative;
}

.course-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: #0d0d0d;
}

.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.course-card:hover .course-img {
    transform: scale(1.06);
}

.course-card-body {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.course-card h3 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    letter-spacing: 1px;
}

.course-subtitle {
    color: #b0b0b0;
    font-size: 0.88rem;
    margin-bottom: 1.4rem;
    line-height: 1.4;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--color-gray);
}

.course-features li svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.course-schedule-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.5rem;
    font-size: 0.82rem;
    line-height: 1.5;
}

.schedule-title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-gold);
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.course-pricing {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.2rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    display: block;
    margin-bottom: 0.2rem;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.3rem;
}

.price-terms {
    font-size: 0.78rem;
    color: #aaa;
    line-height: 1.3;
}

.course-duration {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    padding: 0.6rem;
    text-align: center;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.course-actions {
    margin-top: auto;
}

.course-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
    transition: all 0.3s ease;
}

.course-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* School Videos Section */
.school-videos-section {
    margin-top: 5rem;
    margin-bottom: 2rem;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.card {
    width: 250px;
    height: 480px;
    margin: 0 auto;
    /* Centrar el teléfono */
    background: black;
    border-radius: 35px;
    border: 2px solid rgb(40, 40, 40);
    padding: 7px;
    position: relative;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.486), 0 0 0 2px var(--color-gold);
    /* Mantenemos un sutil resplandor dorado */
}

.card-int {
    background-image: linear-gradient(to right bottom, #ff0000, #ff0045, #ff0078, #ea00aa, #b81cd7, #8a3ad6, #5746cf, #004ac2, #003d94, #002e66, #001d3a, #020812);
    background-size: 200% 200%;
    background-position: 0% 0%;
    height: 100%;
    border-radius: 25px;
    transition: all 0.6s ease-out;
    overflow: hidden;
    position: relative;
}

.card:hover .card-int {
    background-position: 100% 100%;
}

.top {
    position: absolute;
    top: 0px;
    right: 50%;
    transform: translate(50%, 0%);
    width: 35%;
    height: 18px;
    background-color: black;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
    /* Asegurar que quede por encima del video */
}

.speaker {
    position: absolute;
    top: 2px;
    right: 50%;
    transform: translate(50%, 0%);
    width: 40%;
    height: 2px;
    border-radius: 2px;
    background-color: rgb(20, 20, 20);
}

.camera {
    position: absolute;
    top: 6px;
    right: 84%;
    transform: translate(50%, 0%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.048);
}

.int {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background-color: rgba(0, 0, 255, 0.212);
}

.btn1,
.btn2,
.btn3,
.btn4 {
    position: absolute;
    width: 2px;
}

.btn1,
.btn2,
.btn3 {
    height: 45px;
    top: 30%;
    right: -4px;
    background-image: linear-gradient(to right, #111111, #222222, #333333, #464646, #595959);
}

.btn2,
.btn3 {
    transform: scale(-1);
    left: -4px;
}

.btn2,
.btn3 {
    transform: scale(-1);
    height: 30px;
}

.btn2 {
    top: 26%
}

.btn3 {
    top: 36%
}

.hello {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 35px;
    height: 100%;
    transition: 0.5s ease-in-out;
}

.hidden {
    display: block;
    opacity: 0;
    transition: all 0.3s ease-in;
}

.card:hover .hidden {
    opacity: 1;
}

.card:hover .hello {
    /* transform: translateY(-20px); */
}

#school-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.sound-toggle-btn {
    position: absolute;
    top: 35px;
    /* En la parte superior */
    left: 15px;
    /* A la izquierda */
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Borde sutil dorado */
    color: var(--color-white);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.sound-toggle-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

.btn-gold.outline {
    background: transparent;
    color: var(--color-gold);
}

.btn-gold.outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* Store Section */
.section-store {
    background-color: var(--color-carbon);
}

.store-header {
    text-align: center;
    margin-bottom: 4rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background-color: #111;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.product-price {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-gold-sm {
    background: transparent;
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    color: var(--color-gold);
    padding: 0.6rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-gold-sm:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* Make section responsive changes */
@media (max-width: 992px) {
    .lux-services-bottom-bar {
        grid-template-columns: repeat(3, 1fr);
    }
    .lux-srv-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    .lux-srv-item:nth-child(3n) {
        border-right: none;
    }
    .lux-srv-item:nth-last-child(-n+3) {
        border-bottom: none;
    }
    .school-cards {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .lux-slider-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem 2rem 1.5rem;
        gap: 2.5rem;
    }

    .lux-slider-right {
        flex: 1;
        max-width: 100%;
    }

    .lux-services-bottom-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .lux-srv-item {
        padding: 1.4rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lux-srv-item:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lux-srv-item:nth-child(2n) {
        border-right: none;
    }

    .lux-srv-item:nth-child(5) {
        grid-column: span 1;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lux-srv-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .school-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 2rem;
    }

    .course-card-body {
        padding: 1.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .lux-services-bottom-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .lux-srv-item {
        padding: 1.1rem 0.8rem;
    }

    .lux-srv-item h4 {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
        line-height: 1.3;
    }

    .lux-srv-item p {
        font-size: 0.85rem;
    }

    .course-img-wrapper {
        height: 200px;
    }
}

@media (max-width: 360px) {
    .lux-services-bottom-bar {
        grid-template-columns: 1fr;
    }

    .lux-srv-item {
        border-right: none !important;
        padding: 1rem 1.2rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .lux-srv-item h4 {
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    .lux-srv-item p {
        margin-top: 0;
        white-space: nowrap;
        font-size: 0.9rem;
    }

    .lux-srv-item:last-child {
        border-bottom: none;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.section-testimonials {
    background-color: var(--color-black);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-carbon);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-gold);
}

/* ==========================================================================
   Contact & Location Section
   ========================================================================== */
.section-contact {
    background-color: var(--color-carbon);
    /* Se quita padding fijo, ya viene del general de section, pero por si acaso ajustamos */
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info-card {
    flex: 1 1 400px;
    background-color: var(--color-black);
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-info-card p {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.contact-details li svg {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-details li a {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.contact-details li a:hover {
    color: var(--color-gold);
}

.contact-map {
    flex: 2 1 500px;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: var(--color-carbon);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    resize: vertical;
}

.map-link-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.map-link-btn:hover {
    background-color: var(--color-gold-hover);
    transform: translateX(-50%) translateY(-3px);
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 2rem;
    }

    .contact-map {
        min-height: 300px;
    }
}