/* ==========================================================================
   PORTAFOLIO DE DJ LUIS TACHO - SECCIÓN HERO & NAVBAR PREMIUM (REDESIGN)
   ========================================================================== */

/* 1. RESET Y VARIABLES GLOBALES */
@font-face {
    font-family: 'Azonix';
    src: url('assets/fonts/Azonix.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Paleta de Colores (Estilo ATOMIC - Muted Slate Deep con Acentos) */
    --color-bg-deep: #131520;       /* Azul pizarra oscuro profundo */
    --color-bg-base: #171a26;       /* Azul pizarra base */
    
    /* Efecto Glassmorphism Premium: realmente transparente y brillante */
    --color-bg-card: rgba(255, 255, 255, 0.02); 
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-glass-hover: 1px solid rgba(255, 255, 255, 0.15);
    --border-turquoise-glow: 1px solid rgba(77, 235, 200, 0.35);
    
    /* Acentos Atmosféricos (Luminosos y Curados) */
    --color-turquoise: #4debc8;    /* Turquesa menta */
    --color-violet: #8a7be7;       /* Violeta lila */
    --color-coral: #ff6b35;        /* Naranja coral */
    --color-lime: #ccff00;         /* Verde limón/lima */
    
    /* Texto */
    --color-text-primary: #ffffff;
    --color-text-secondary: #8e99bc;
    --color-text-muted: #5e6785;
    
    /* Sombras */
    --shadow-glass: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
    --shadow-glass-hover: 0 16px 48px 0 rgba(0, 0, 0, 0.55);
    
    /* Tipografía */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transiciones */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}
/* Bloquear scroll cuando el menú móvil está abierto (más fiable que inline style en iOS) */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--color-bg-base);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-muted);
}

/* 2. GLOW SPHERES (EFECTO ATMOSFÉRICO DETRÁS DE LOS CRISTALES) */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 3;
    pointer-events: none;
}
/* Posicionados estratégicamente detrás de logo, menú y tarjetas */
.bg-glow-turquoise {
    width: 450px;
    height: 450px;
    background-color: var(--color-turquoise);
    top: -80px;
    right: 15%;
    opacity: 0.22;
}
.bg-glow-violet {
    width: 450px;
    height: 450px;
    background-color: var(--color-violet);
    top: -80px;
    left: 10%;
    opacity: 0.22;
}
.bg-glow-coral {
    width: 400px;
    height: 400px;
    background-color: var(--color-coral);
    bottom: -100px;
    right: 15%;
    opacity: 0.18;
}
.bg-glow-lime {
    width: 400px;
    height: 400px;
    background-color: var(--color-lime);
    bottom: -100px;
    left: 15%;
    opacity: 0.18;
}

/* 3. CLASES DE GRADIENTE Y TEXTO */
.text-gradient {
    background: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-lime) 50%, var(--color-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.text-lime {
    color: var(--color-lime);
    display: inline-block;
}

/* Contenedores */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    width: 100%;
}

.glass-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.005)),
                url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
    backdrop-filter: blur(25px) saturate(160%) brightness(1.1);
    -webkit-backdrop-filter: blur(25px) saturate(160%) brightness(1.1);
    border: var(--border-glass);
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.15), var(--shadow-glass);
    border-radius: 20px;
    transition: var(--transition-smooth);
}
.glass-panel:hover {
    border: var(--border-glass-hover);
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), var(--shadow-glass-hover);
    transform: translateY(-5px);
}

/* 5. HEADER / NAVEGACIÓN (CÁPSULAS FLOTANTES INDEPENDIENTES) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: var(--transition-smooth);
}
.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Cápsula del Logotipo */
.logo-capsule {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.005)),
                url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
    backdrop-filter: blur(25px) saturate(160%) brightness(1.1);
    -webkit-backdrop-filter: blur(25px) saturate(160%) brightness(1.1);
    border: var(--border-glass);
    border-radius: 100px;
    padding: 0.5rem 1.75rem;
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.15), 0 8px 32px 0 rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    z-index: 101;
}
.logo-capsule:hover {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 10px 35px rgba(0, 0, 0, 0.35);
}
.logo {
    font-family: 'Azonix', sans-serif;
    font-weight: normal;
    font-size: 1.25rem;
    color: var(--color-text-primary);
    text-decoration: none;
    letter-spacing: 0.1em;
}
.logo-accent {
    color: var(--color-lime);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Cápsula Flotante del Menú */
.nav-menu-capsule {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.005)),
                url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
    backdrop-filter: blur(25px) saturate(160%) brightness(1.1);
    -webkit-backdrop-filter: blur(25px) saturate(160%) brightness(1.1);
    border: var(--border-glass);
    border-radius: 100px;
    padding: 0.5rem 1.8rem;
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.15), 0 8px 32px 0 rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
}
.nav-menu-capsule:hover {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), 0 10px 35px rgba(0, 0, 0, 0.35);
}
.nav-menu-capsule ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.25rem;
}
.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-turquoise);
    transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
    color: var(--color-text-primary);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Botón Booking Separado */
.btn-booking-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.005)),
                url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
    backdrop-filter: blur(25px) saturate(160%) brightness(1.1);
    -webkit-backdrop-filter: blur(25px) saturate(160%) brightness(1.1);
    border: var(--border-glass);
    padding: 0.5rem 1.6rem; /* Alinear verticalmente con las cápsulas de navegación */
    border-radius: 100px;
    color: var(--color-turquoise);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    transition: var(--transition-smooth);
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.15), 0 8px 32px 0 rgba(0, 0, 0, 0.25);
}
.btn-booking-cta:hover {
    background: var(--color-turquoise);
    color: var(--color-bg-deep);
    box-shadow: 0 0 25px rgba(77, 235, 200, 0.5);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    border: var(--border-glass);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    cursor: pointer;
    z-index: 101;
}

/* 6. HERO SECTION (FULL-BLEED BACKGROUND VISUAL & HEIGHT RESPONSIVE) */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 140px; /* Separación de seguridad definitiva para evitar solapamientos */
    padding-bottom: 2.5rem; /* Margen para albergar el desplazamiento de las tarjetas inferiores */
    overflow: visible; 
}

/* Contenedor de Imagen de Fondo Pantalla Completa */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-bg-img,
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.01);
}
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: none;
}

.hero-container {
    z-index: 4;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.hero-content {
    max-width: 800px;
    text-align: left;
}
.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: var(--color-turquoise);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 1.5rem;
}
.hero-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-turquoise);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-turquoise);
}
.hero-title {
    font-family: 'Azonix', sans-serif;
    font-weight: normal;
    font-size: 5.2rem;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
.hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 3.5rem;
    max-width: 530px;
    line-height: 1.7;
}

.hero-bottom-row {
    display: flex;
    align-items: center;
    gap: 4.5rem;
    flex-wrap: wrap;
}

/* CTA Minimalista */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: var(--transition-smooth);
}
.cta-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.02);
}
.cta-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--color-text-primary);
    transition: var(--transition-fast);
}
.hero-cta:hover .cta-circle {
    border-color: var(--color-turquoise);
    background: rgba(77, 235, 200, 0.05);
    box-shadow: 0 0 20px rgba(77, 235, 200, 0.35);
    color: var(--color-turquoise);
}
.hero-cta:hover .cta-circle svg {
    transform: translateX(4px);
}
.hero-cta:hover .cta-text {
    color: var(--color-turquoise);
}

/* Indicador de Desplazamiento Lineal */
.hero-slider-indicator {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}
.slider-line {
    width: 90px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    border-radius: 2px;
}
.slider-line-active {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: var(--color-turquoise);
    box-shadow: 0 0 8px var(--color-turquoise);
    border-radius: 2px;
}

/* 7. TARJETAS DEL HERO SUPERPUESTAS AL FONDO (ESTILO ATOMIC) */
.hero-bottom-cards-container {
    z-index: 10;
    transform: translateY(2.5rem); /* Desplazamiento fluido para superposición sin romper el flujo vertical */
}
.hero-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.bottom-card {
    padding: 1.6rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.card-icon-wrapper.turquoise { background: rgba(77, 235, 200, 0.1); color: var(--color-turquoise); border: 1px solid rgba(77, 235, 200, 0.15); }
.card-icon-wrapper.lime { background: rgba(204, 255, 0, 0.1); color: var(--color-lime); border: 1px solid rgba(204, 255, 0, 0.15); }
.card-icon-wrapper.coral { background: rgba(255, 107, 53, 0.1); color: var(--color-coral); border: 1px solid rgba(255, 107, 53, 0.15); }

.bottom-card:hover .card-icon-wrapper.turquoise { background: var(--color-turquoise); color: var(--color-bg-deep); box-shadow: 0 0 15px var(--color-turquoise); }
.bottom-card:hover .card-icon-wrapper.lime { background: var(--color-lime); color: var(--color-bg-deep); box-shadow: 0 0 15px var(--color-lime); }
.bottom-card:hover .card-icon-wrapper.coral { background: var(--color-coral); color: var(--color-text-primary); box-shadow: 0 0 15px var(--color-coral); }

.card-body h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}
.card-body p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}
.card-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-fast);
}
.bottom-card:hover .card-arrow {
    color: var(--color-text-primary);
    transform: translateX(5px);
}

/* 7. ABOUT SECTION (ESTILO ATOMIC ASIMÉTRICO & CRISTALES) */
.about-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px; /* Compensa el header fijo para que el texto no quede tapado */
    background-color: #060913;
    background-image: url('assets/extendida2.png');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

/* Orbes de luz de fondo para About (atenuados para no competir con el spotlight de la imagen) */
.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 3;
    pointer-events: none;
}
.bg-glow-violet-about {
    width: 600px;
    height: 600px;
    background-color: #1b3050;
    top: 20%;
    left: -150px;
    opacity: 0.15;
}

.about-container {
    z-index: 5;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 5rem;
    align-items: center;
}

/* Contenido de Texto del About - Alineado a la derecha en escritorio */
.about-content {
    grid-column: 7 / 13;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-family: 'Azonix', sans-serif;
    font-weight: normal;
    font-size: 2.8rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.about-title .text-lime {
    color: var(--color-lime);
}

.about-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    max-width: 600px;
}

/* Rejilla de Pilares (Micro-Tarjetas) */
.about-pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
    max-width: 600px;
}

.pillar-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: var(--shadow-glass);
}

.pillar-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pillar-icon.turquoise { background: rgba(77, 235, 200, 0.1); color: var(--color-turquoise); border-color: rgba(77, 235, 200, 0.15); }
.pillar-icon.lime { background: rgba(204, 255, 0, 0.1); color: var(--color-lime); border-color: rgba(204, 255, 0, 0.15); }
.pillar-icon.coral { background: rgba(255, 107, 53, 0.1); color: var(--color-coral); border-color: rgba(255, 107, 53, 0.15); }

.pillar-body h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--color-text-primary);
    margin-bottom: 0.15rem;
}

.pillar-body p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Estilo Mínimo */
.main-footer {
    border-top: var(--border-glass);
    background: var(--color-bg-deep);
    padding: 3rem 0;
    color: var(--color-text-muted);
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.footer-socials {
    display: flex;
    gap: 1.5rem;
}
.footer-socials a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-fast);
}
.footer-socials a:hover {
    color: var(--color-turquoise);
}

/* 8. RESPONSIVIDAD ANTE CAMBIOS DE ALTO Y ANCHO (GRID Y MEDIDAS HEIGHT) */

/* Responsividad para pantallas cortas en altura */
@media (max-height: 850px) {
    .hero-section {
        padding-top: 110px;
    }
    .hero-title {
        font-size: 4.2rem;
        margin-bottom: 1rem;
    }
    .hero-lead {
        margin-bottom: 2rem;
        font-size: 1.05rem;
    }
    .hero-bottom-row {
        gap: 3rem;
    }
    .hero-bottom-cards-container {
        transform: translateY(1.5rem);
    }
}

@media (max-height: 720px) {
    .hero-section {
        padding-top: 100px;
    }
    .hero-title {
        font-size: 3.2rem;
        margin-bottom: 0.8rem;
    }
    .hero-lead {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }
    .hero-bottom-row {
        gap: 2rem;
    }
    .hero-bottom-cards-container {
        transform: none; /* Flujo normal */
        margin-top: 2rem;
    }
}

/* Responsividad para anchos de pantalla */
@media (max-width: 1024px) {
    .hero-bottom-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .hero-bottom-cards-container {
        position: relative;
        transform: none;
        margin-top: 3rem;
        padding-bottom: 2rem;
    }
    .hero-section {
        height: auto;
        min-height: auto;
        padding-top: 8rem;
        display: block;
    }
    
    /* Responsividad de About en Tablet */
    .about-section {
        padding: 6rem 0;
        /* degradado vertical para oscurecer la foto de fondo en tablets */
        background-image: 
            linear-gradient(to bottom, rgba(6, 9, 19, 0.65) 0%, #060913 85%), 
            url('assets/extendida2.png');
        background-position: left center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about-content {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    /* Ocultar glows en móvil para evitar el baño violeta/turquesa */
    .ambient-glow {
        display: none !important;
    }
    .about-glow {
        display: none !important;
    }
    
    /* Ocultar cápsulas en móvil y mostrar toggler */
    .nav-menu-capsule {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(19, 21, 32, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-radius: 0;
        border: none;
        border-left: var(--border-glass);
        z-index: 200;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 6rem 3rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    .nav-menu-capsule.open {
        right: 0;
    }
    .nav-menu-capsule ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    .nav-link {
        font-size: 1.2rem;
    }
    
    .logo-capsule {
        padding: 0.5rem 1.25rem;
    }
    .btn-booking-cta {
        display: none; 
    }
    .nav-toggle {
        display: flex;
    }
    
    /* Hero: video más a la izquierda en móvil (el sujeto está en el lado derecho del frame) */
    .hero-bg-img,
    .hero-bg-video {
        object-position: 72% 30%;
    }

    /* Hero móvil: resetear el display:block del breakpoint 1024px */
    /* y empujar el texto al fondo para que no tape la cara */
    .hero-section {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 100svh;
        height: auto;
        padding-top: 72px;
        padding-bottom: 1rem;
    }
    /* Overlay: cara visible arriba, texto legible en el tercio inferior */
    .hero-bg-overlay {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 50%,
            rgba(13, 15, 25, 0.75) 68%,
            rgba(13, 15, 25, 0.96) 85%,
            #0d0f19 100%
        );
    }
    .hero-container {
        flex: 0 0 auto;
        padding-bottom: 0.5rem;
    }
    /* Ocultar la descripción en móvil para dejar espacio a la cara */
    .hero-lead {
        display: none;
    }

    /* Hero: título compacto */
    .hero-title {
        font-size: 2.6rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    .hero-bottom-row {
        gap: 1.5rem;
    }

    /* Tarjetas inferiores: más compactas en móvil */
    .hero-bottom-cards-container {
        transform: none;
        margin-top: 1rem;
        padding-bottom: 0.5rem;
    }
    .hero-bottom-grid {
        gap: 0.6rem;
    }
    .bottom-card {
        padding: 0.85rem 1rem;
        gap: 0.85rem;
    }
    .card-icon-wrapper {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
    }
    .card-icon-wrapper svg {
        width: 14px;
        height: 14px;
    }
    .card-body h4 {
        font-size: 0.75rem;
        margin-bottom: 0.1rem;
    }
    .card-body p {
        font-size: 0.65rem;
    }
    .card-arrow {
        font-size: 1rem;
    }
    
    /* About en móvil: cara arriba, texto abajo */
    /* About en móvil: imagen vertical de fondo, texto superpuesto abajo */
    .about-section {
        height: 100svh;
        min-height: 620px;
        padding-top: 72px; /* Deja espacio al header fijo */
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        background-image: 
            linear-gradient(to bottom, 
                rgba(6, 9, 19, 0.05) 0%, 
                rgba(6, 9, 19, 0.3) 35%, 
                rgba(6, 9, 19, 0.85) 60%, 
                rgba(6, 9, 19, 0.98) 80%, 
                #060913 100%
            ), 
            url('assets/luis_tacho_portrait.png');
        background-size: cover;
        background-position: center 10%;
        background-repeat: no-repeat;
        position: relative;
    }
    /* Eliminar el bloque de imagen superior anterior */
    .about-section::before {
        display: none;
    }
    /* Contenedor del texto: superpuesto sobre la imagen en la parte inferior */
    .about-container {
        padding: 0 1.5rem 3.5rem;
        background-color: transparent;
        flex: none;
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
    }
    .about-grid {
        display: block;
    }
    .about-content {
        grid-column: span 12;
    }
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.15;
    }
    .about-text {
        font-size: 0.95rem;
        overflow: visible;
        white-space: normal;
        word-break: normal;
    }
    .pillar-card {
        padding: 1rem 1.25rem;
        gap: 1.25rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

