/* =========================================
   ZENIQ CREATIVE LAB | style.css v3.0 (Solid Brutalist Edition)
   ========================================= */

/* =========================================
   ZENIQ CREATIVE LAB | style.css v4.0 (Brutalist Typography)
========================================= */

:root {
    --bg:    #030303;
    --text:  #f2f2f2;
    --accent: #d35400;
    
    /* AQUÍ OCURRE LA MAGIA GLOBAL */
    --serif: 'Anton', sans-serif;    /* Ahora todos los títulos usarán Anton */
    --sans:  'Poppins', sans-serif;  /* Ahora todos los textos usarán Poppins */
    
    --cubic: cubic-bezier(0.77, 0, 0.175, 1);
}

/* REGLA DE ORO DE DISEÑO: 
   Anton es una fuente pesada, no se lleva bien con las cursivas (italic). 
   Esto fuerza a que todos los títulos de la web sean sólidos, rectos y en mayúsculas. 
*/
h1, h2, h3, h4, h5, h6, .menu-links-2026 a, .contact-title, .panel-content h3 {
    font-style: normal !important;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Forzar Poppins regular en párrafos y solo usar negrita (600) donde se necesite */
p, span, a, label, input, button {
    font-weight: 400;
}
strong, b {
    font-weight: 600;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
/* ... (aquí continúa el resto de tu CSS normal) ... */
html { scroll-behavior: auto; }
body {
    background-color: var(--bg); color: var(--text); font-family: var(--sans);
    overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a, button { text-decoration: none; color: inherit; background: none; border: none; font-family: inherit; }
section { padding: 150px 6vw; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.section-label { color: var(--accent); letter-spacing: 4px; font-size: 0.8rem; margin-bottom: 50px; display: block; text-transform: uppercase; }

/* PRELOADER */
.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--accent); z-index: 9999999; display: flex; justify-content: center; align-items: center; visibility: visible; transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s 0.8s; }
body.loaded .preloader { transform: translateY(-100%); visibility: hidden; }
.preloader-logo { width: 80px; filter: brightness(0) invert(1); animation: pulseLogo 1s infinite alternate ease-in-out; }
@keyframes pulseLogo { 0% { transform: scale(0.9); opacity: 0.8; } 100% { transform: scale(1.1); opacity: 1; } }

/* CURSOR */
#cursor { position: fixed; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 9999999; mix-blend-mode: difference; transform: translate3d(-50%, -50%, 0); transition: width 0.3s, height 0.3s, background 0.1s, border-radius 0.3s; display: flex; justify-content: center; align-items: center; font-size: 0.5rem; font-weight: bold; color: black; }
#cursor.hovered { width: 70px; height: 70px; background: white; }
#cursor.play-mode { width: 100px; height: 100px; background: white; }
#cursor.play-mode::after { content: 'PLAY'; font-family: var(--sans); letter-spacing: 2px; }
#cursor.pause-mode { width: 100px; height: 100px; background: white; }
#cursor.pause-mode::after { content: 'MUTE'; font-family: var(--sans); letter-spacing: 2px; }

/* NAV */
.glass-nav { position: fixed; top: 40px; left: 50%; transform: translate(-50%, -80px); opacity: 0; pointer-events: none; display: flex; align-items: center; gap: 30px; background: rgba(20, 20, 20, 0.4); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 15px 40px; border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.05); z-index: 10000; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8); transition: 0.3s; }
body.loaded .glass-nav { pointer-events: all; animation: navDrop 2s cubic-bezier(0.25, 1, 0.5, 1) 0.8s both; }
@keyframes navDrop { 0% { opacity: 0; transform: translate(-50%, -80px); } 100% { opacity: 1; transform: translate(-50%, 0); } }
.nav-logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 40px; border-right: 1px solid rgba(255, 255, 255, 0.15); padding-right: 30px; z-index: 10001; transition: opacity 0.3s ease, transform 0.3s ease; }
.nav-logo-link:hover .nav-logo-img { opacity: 0.75; transform: scale(1.06); }
.nav-trigger { position: relative; width: 30px; height: 15px; display: flex; align-items: center; justify-content: center; z-index: 10001; }
.nav-trigger span { position: absolute; width: 6px; height: 6px; background: white; border-radius: 50%; transition: all 0.0s var(--cubic); }
.nav-trigger span:nth-child(1) { left: 0; } .nav-trigger span:nth-child(2) { left: 12px; } .nav-trigger span:nth-child(3) { right: 0; }
.nav-trigger.active span { width: 26px; height: 2px; border-radius: 0; left: 2px; background: white; }
.nav-trigger.active span:nth-child(1) { transform: rotate(45deg); } .nav-trigger.active span:nth-child(2) { opacity: 0; } .nav-trigger.active span:nth-child(3) { transform: rotate(-45deg); }

/* MENU */
.menu-shockwave { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--accent); z-index: 9400; pointer-events: none; clip-path: circle(0% at 50% 60px); transition: clip-path 1s 0.3s var(--cubic); }
.menu-shockwave.active { clip-path: circle(150% at 50% 60px); }
#menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #020202; z-index: 9500; display: flex; align-items: flex-start; justify-content: center; overflow-y: auto; clip-path: circle(0% at 50% 5%); pointer-events: none; transition: clip-path 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
#menu-overlay.active { pointer-events: all; clip-path: circle(150% at 50% 5%); }
.menu-video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.menu-video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(2, 2, 2, 0.85); z-index: 2; }
.menu-container { width: 100%; max-width: 1600px; padding: 160px 6vw 60px; display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: start; position: relative; z-index: 3; }
.menu-info { opacity: 0; transform: translateY(20px); transition: 0.5s; align-self: center; }
#menu-overlay.active .menu-info { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.menu-label { color: var(--accent); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 15px; }
.menu-info a { color: rgba(255, 255, 255, 0.5); font-size: 1.5rem; font-weight: 300; display: block; margin-bottom: 8px; transition: 0.3s; }
.menu-info a:hover { color: rgb(218, 109, 8); transform: translateX(10px); }
.menu-socials { display: flex; gap: 30px; }
.menu-links-2026 { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.menu-item { overflow: hidden; display: flex; align-items: flex-start; }
.menu-num { font-size: 1rem; color: var(--accent); margin-right: 30px; margin-top: 20px; font-weight: 300; }
.menu-links-2026 a { font-size: clamp(1.2rem, min(5vw, 6.5vh), 5rem); font-family: var(--serif); text-transform: uppercase; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2); transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); display: inline-block; transform: translateY(120%); }
.menu-links-2026 a:hover { color: #d35400; -webkit-text-stroke: 1px #d35400; transform: translateX(30px) skewX(-8deg); font-style: italic; }
#menu-overlay.active .menu-links-2026 a { transform: translateY(0); transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) calc(0.1s * var(--i) + 0.3s), color 0.4s, -webkit-text-stroke 0.4s; }

/* HERO */
.hero { position: relative; overflow: hidden; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; perspective: 1000px; }
.hero-bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transform: scale(1.1); transition: transform 1.5s ease-out; }
body.loaded .hero-bg-video { transform: scale(1); }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(3,3,3,0.1) 0%, rgba(3,3,3,0.6) 100%); z-index: 1; }
.hero-center-stack { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; margin-top: -5vh; }
.hero-logo-wrapper { margin-bottom: 30px; transform-style: preserve-3d; }
.hero-logo { width: 100%; max-width: 450px; filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4)); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.hero-logo-wrapper:hover .hero-logo { transform: scale(1.1); }
.hero-subtitle { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 8px; color: rgba(255, 255, 255, 0.6); margin: 15px 0 30px 0; font-weight: 400; }
.hero-bottom-minimal { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255, 255, 255, 0.35); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 4px; }

/* ENTRANCE ANIMATIONS */
.entrance-scale { opacity: 0; transform: scale(1.5); transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
body.loaded .entrance-scale { opacity: 1; transform: scale(1); }
.text-mask-container { overflow: hidden; display: inline-block; }
.entrance-slide { display: inline-block; transform: translateY(120%) skewY(5deg); opacity: 0; transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); }
body.loaded .entrance-slide { transform: translateY(0) skewY(0); opacity: 1; }
.entrance-fade { opacity: 0; transition: opacity 1s ease; }
body.loaded .entrance-fade { opacity: 1; }
.delay-1 { transition-delay: 0.8s !important; } .delay-2 { transition-delay: 1.1s !important; } .delay-3 { transition-delay: 1.4s !important; } .delay-4 { transition-delay: 1.8s !important; }

/* CTA BUTTON */
.hero-cta { position: relative; display: inline-flex; align-items: center; gap: 15px; padding: 18px 45px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50px; backdrop-filter: blur(10px); color: #ffffff; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; overflow: hidden; transition: all 0.0s cubic-bezier(0.25, 1, 0.5, 1); z-index: 10; }
.hero-cta::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #e65c00; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); z-index: -1; border-radius: 50px; }
.hero-cta:hover { border-color: transparent; transform: translateY(-5px); box-shadow: 0 15px 30px rgba(230, 92, 0, 0.3); }
.hero-cta:hover::before { transform: translateY(0); }
.cta-icon { font-size: 1.1rem; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.hero-cta:hover .cta-icon { transform: rotate(90deg); }

/* SHOWREEL */
.showreel-section { padding: 100px 0; min-height: auto; }
.video-wrapper { width: 100%; height: 90vh; overflow: hidden; position: relative; clip-path: inset(30% 0 30% 0); transform: scale(0.95); border-radius: 40px; transition: clip-path 1.5s var(--cubic), transform 1.5s var(--cubic), border-radius 1.5s var(--cubic); }
.video-wrapper.cinematic-active { clip-path: inset(0 0 0 0); transform: scale(1); border-radius: 0; }
.video-wrapper video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); transform: scale(1.2); transition: transform 2s var(--cubic), filter 0.8s; }
.video-wrapper.cinematic-active video { transform: scale(1); }
.video-wrapper:hover video { filter: brightness(1); }
.video-wrapper.is-playing video { filter: brightness(1) !important; }
.yt-player-wrapper { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: 177.78vh; height: 56.25vw; transform: translate(-50%, -50%) scale(1.2); pointer-events: none; filter: brightness(0.6); transition: transform 2s var(--cubic), filter 0.8s; }
.yt-player-wrapper iframe { width: 100% !important; height: 100% !important; }
.video-wrapper.cinematic-active .yt-player-wrapper { transform: translate(-50%, -50%) scale(1); }
.video-wrapper:hover .yt-player-wrapper { filter: brightness(1); }
.video-wrapper.is-playing .yt-player-wrapper { filter: brightness(1) !important; }
.reel-text-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--serif); font-size: clamp(4rem, 15vw, 12rem); font-style: italic; color: white; opacity: 0.5; pointer-events: none; mix-blend-mode: overlay; transition: all 0.6s var(--cubic); }
.video-wrapper.is-playing .reel-text-overlay { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }

/* ABOUT */
.about-premium { background-color: #e65c00; color: #000000; padding: 15vw 5vw; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; overflow: hidden; min-height: auto; }
.about-premium-container { max-width: 1400px; width: 100%; }
/* Titular colosal */
.about-headline { margin-bottom: 10vw; }
.about-headline h2 {
    font-family: var(--serif); /* Ahora usa Anton */
    font-size: clamp(3.5rem, 8vw, 8rem);
    line-height: 0.95;
    letter-spacing: 2px;
    color: #000000;
    text-transform: uppercase;
}
.white-italic {
    font-family: var(--serif);
    color: #ffffff;
    /* Quitamos el italic porque Anton se deforma con las cursivas */
}

/* Grid editorial asimétrico */
.about-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center;
}
.about-visual {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}
.editorial-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.about-visual:hover .editorial-img { transform: scale(1); }

.about-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 5vw;
}
.about-badge {
    font-family: var(--sans); /* Ahora usa Poppins */
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 40px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 15px;
    width: fit-content;
}
.about-copy h3 {
    font-family: var(--serif); /* Anton para el subtítulo */
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.about-copy p {
    font-family: var(--sans); /* Poppins para lectura limpia */
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 25px;
}
/* FOCUS PULL */
.cinematic-focus-container { position: relative; overflow: hidden; border-radius: 4px; }
#scroll-focus-img { width: 100%; height: 100%; object-fit: cover; --blur-val: 10px; --bw-val: 100%; filter: grayscale(var(--bw-val)) blur(var(--blur-val)); transition: filter 0.1s ease-out, transform 0.8s ease-out; transform: scale(1.05); }
#scroll-focus-img.is-focused { transform: scale(1); }

/* MARQUEE */
.about-brands { margin-top: 180px; padding-bottom: 80px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.brands-title { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 4px; color: rgba(255, 255, 255, 0.4); margin-bottom: 80px; text-align: center; }
.brands-marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.brands-track { display: flex; width: max-content; animation: scrollBrands 20s linear infinite; }
.brands-marquee:hover .brands-track { animation-play-state: paused; }
.brands-set { display: flex; align-items: center; gap: 80px; padding-right: 80px; }
.brand-logo { height: 45px; width: auto; object-fit: contain; max-width: 300px; filter: grayscale(100%) opacity(0.5); transition: filter 0.4s ease, transform 0.4s ease; margin: 0 40px; }
.brand-logo:hover { filter: grayscale(0%) opacity(1); transform: scale(1.05); }
@keyframes scrollBrands { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SERVICIOS */
.services-header { padding: 0 var(--gap); margin-bottom: 10px; }
.services-main-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4.5rem, 10vw, 11rem);
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--text);
    letter-spacing: -2px;
    margin: 10px 0 0 0;
}
.services-gallery { display: flex; height: 75vh; width: 100%; gap: 3px; margin-top: 40px; }
.service-panel { flex: 1; position: relative; overflow: hidden; background: #111; transition: flex 0.8s var(--cubic); border-right: 1px solid rgba(255, 255, 255, 0.05); touch-action: manipulation; }
.service-panel:hover { flex: 3.5; }
.panel-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.2; filter: grayscale(100%); transition: all 0.8s var(--cubic); }
.service-panel:hover .panel-img { opacity: 0.7; filter: grayscale(0%); transform: scale(1.05); }
.panel-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 70%); z-index: 2; }
.panel-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; z-index: 3; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.panel-num { font-size: 0.8rem; color: var(--accent); margin-bottom: 20px; display: block; }
.panel-content h3 { font-family: var(--serif); font-size: clamp(1.5rem, 4vw, 3rem); font-weight: 400; font-style: italic; margin-bottom: 0; white-space: nowrap; transition: 0.5s; }
.panel-content p { font-size: 1rem; opacity: 0; max-height: 0; overflow: hidden; transition: all 0.8s var(--cubic); max-width: 500px; line-height: 1.6; }
.service-panel:hover h3 { margin-bottom: 20px; color: var(--accent); }
.service-panel:hover p { opacity: 0.8; max-height: 200px; }
.service-badge { background: var(--accent); color: white; padding: 4px 10px; border-radius: 20px; font-size: 0.6rem; vertical-align: middle; margin-left: 10px; font-style: normal; }

/* =========================================
   PROYECTOS — MONOLITH ACCORDION BRUTALISTA
   ========================================= */

#proyectos {
    padding: 0 0 120px;
    min-height: 100vh;
    display: block;
    background: #030303;
    border-top: 1px solid rgba(211, 84, 0, 0.2);
}

.monolith-section { padding: 0; min-height: 100vh; }

/* Header NUESTROS PROYECTOS */
.monolith-header {
    padding: 120px 6vw 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.monolith-main-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4.5rem, 10vw, 11rem);
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--text);
    letter-spacing: -2px;
    margin: 10px 0 0 0;
    overflow: hidden;
}
.monolith-main-title em {
    font-style: normal;
    color: var(--accent);
    display: block;
}
.monolith-title-line {
    display: block;
    opacity: 0;
    transform: translateY(80px) skewY(4deg);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.monolith-header.active .monolith-title-line { opacity: 1; transform: translateY(0) skewY(0deg); }
.monolith-header.active .mtl-delay { transition-delay: 0.18s; }

.monolith-accordion {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* --- PANEL BASE (CERRADO) --- */
.monolith-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    border-right: 1px solid #222;
    display: flex;
    align-items: stretch;
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.monolith-panel:last-child { border-right: none; }

/* Video de fondo */
.monolith-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* Imagen de portada (visible en estado cerrado, se oculta al hover) */
.monolith-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: opacity 0.8s ease;
    z-index: 0;
}
@media (hover: hover) {
    .monolith-panel:hover .monolith-cover { opacity: 0; }
}

/* Overlay oscuro */
.monolith-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* Inner layout */
.monolith-panel-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    gap: 20px;
    transition: padding 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Número gigante */
.monolith-num {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4rem, 6vw, 7rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
    line-height: 1;
    flex-shrink: 0;
    transition: -webkit-text-stroke-color 0.5s ease, font-size 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Título rotado (vertical en closed) */
.monolith-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.monolith-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.4rem, 2vw, 2.2rem);
    text-transform: uppercase;
    color: #f2f2f2;
    letter-spacing: 4px;
    white-space: nowrap;
    display: block;
    transform: rotate(-90deg);
    transform-origin: center center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                font-size 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                letter-spacing 0.5s ease;
}

/* Descripción + botón (ocultos en cerrado) */
.monolith-content {
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    width: 100%;
    max-width: 480px;
    flex-shrink: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.monolith-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: rgba(242, 242, 242, 0.65);
    line-height: 1.7;
    margin-bottom: 28px;
}
.monolith-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f2f2f2;
    background: transparent;
    border: 1px solid rgba(211, 84, 0, 0.6);
    padding: 13px 28px;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.monolith-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* --- CTA "El archivo completo" --- */
.monolith-cta-btn.monolith-cta-mobile { display: none; }
.monolith-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 48px;
    border: 1px solid rgba(242,242,242,0.25);
    color: var(--text);
    text-decoration: none;
    font-family: var(--sans);
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: border-color 0.3s, color 0.3s, gap 0.3s;
}
.monolith-cta-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    gap: 28px;
}
.monolith-cta-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s;
}
.monolith-cta-btn:hover .monolith-cta-arrow {
    transform: translateX(6px);
}

/* --- ESTADO HOVER / ABIERTO (Desktop) --- */
@media (hover: hover) {
    .monolith-panel:hover { flex: 3; }
    .monolith-panel:hover .monolith-video-bg { opacity: 1; }
    .monolith-panel:hover .monolith-overlay { opacity: 1; }
    .monolith-panel:hover .monolith-title {
        transform: rotate(0deg);
        font-size: clamp(2.5rem, 3.5vw, 4rem);
        letter-spacing: 2px;
    }
    .monolith-panel:hover .monolith-content {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
        transition-delay: 0.35s;
    }
    .monolith-panel:hover .monolith-num {
        -webkit-text-stroke-color: rgba(211, 84, 0, 0.35);
        font-size: clamp(3rem, 4vw, 5rem);
    }
    .monolith-panel:hover .monolith-panel-inner {
        align-items: flex-start;
        padding: 60px 50px;
    }
}

/* --- MÓVIL --- */
@media (max-width: 768px) {
    .services-main-title { font-size: clamp(3.5rem, 14vw, 6rem); }
    #proyectos, .monolith-section { min-height: auto; padding-bottom: 60px; }
    .monolith-header { padding: 80px 6vw 40px; }
    .monolith-main-title { font-size: clamp(3.5rem, 14vw, 6rem); letter-spacing: -1px; }
    .monolith-accordion { flex-direction: column; height: auto; }
    .monolith-panel {
        flex: none;
        height: 72px;
        border-right: none;
        border-bottom: 1px solid #1e1e1e;
        overflow: hidden;
        transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .monolith-panel:last-child { border-bottom: none; }
    .monolith-panel-inner {
        position: relative;
        inset: auto;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 0 24px;
        gap: 18px;
        min-height: 72px;
        flex-wrap: wrap;
        width: 100%;
    }
    .monolith-num { font-size: 2rem; }
    .monolith-title { transform: rotate(0deg) !important; font-size: 1.2rem; letter-spacing: 2px; }
    .monolith-content {
        width: 100%;
        padding: 0 0 28px;
        opacity: 0;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: opacity 0.4s ease, max-height 0.5s ease;
    }
    .monolith-panel.is-open { height: auto; }
    .monolith-panel.is-open .monolith-content { opacity: 1; max-height: 320px; pointer-events: all; }
    .monolith-panel.is-open .monolith-video-bg { opacity: 0.25; }
    .monolith-panel.is-open .monolith-overlay { opacity: 1; }
    .monolith-header { flex-direction: column; align-items: flex-start; }
    .monolith-header .monolith-cta-btn { display: none; }
    .monolith-cta-btn.monolith-cta-mobile { display: block; margin: 32px auto 0; width: fit-content; padding: 14px 32px; border-radius: 50px; }
    #proyectos, .monolith-section { padding-bottom: 60px; }
}

/* =========================================
   CONTACTO
========================================= */
.contact-section { background: #050505; }
.contact-title { text-align: center; font-family: var(--serif); font-size: clamp(3rem, 8vw, 6rem); font-style: italic; margin-bottom: 60px; }
.premium-form { max-width: 900px; margin: 0 auto; width: 100%; margin-top: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.form-row.full { grid-template-columns: 1fr; }
.input-group { position: relative; width: 100%; padding-top: 22px; }
.input-group input, .input-group select { width: 100%; padding: 12px 0; background: transparent; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.2); color: white; font-family: var(--sans); font-size: 1.1rem; outline: none; transition: 0.3s; appearance: none; }
.input-group label { position: absolute; top: 34px; left: 0; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: rgba(255, 255, 255, 0.4); pointer-events: none; transition: 0.3s var(--cubic); }
.input-group input:focus ~ label, .input-group input.has-value ~ label, .input-group select:focus ~ label, .input-group select.has-value ~ label { top: 4px; font-size: 0.7rem; font-family: var(--sans); font-style: normal; letter-spacing: 2px; color: var(--accent); }
.input-group .line { position: absolute; bottom: 0; left: 0; width: 0%; height: 2px; background: var(--accent); transition: 0.4s var(--cubic); }
.input-group input:focus ~ .line, .input-group select:focus ~ .line { width: 100%; }
.input-group select { color: transparent; }
.input-group select:focus, .input-group select:valid { color: white; }
.input-group select option { background: #111; color: white; }
.form-footer { margin-top: 50px; display: flex; justify-content: center; width: 100%; }
.liquid-btn { position: relative; overflow: hidden; background: transparent; color: white; border: 1px solid rgba(255, 255, 255, 0.3); padding: 25px 60px; font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase; border-radius: 50px; transition: color 0.6s ease, border-color 0.6s ease; display: inline-block; z-index: 1; }
.liquid-btn::before { content: ''; position: absolute; bottom: 0; left: 50%; width: 150%; height: 150%; background: var(--accent); border-radius: 50%; z-index: -1; transform: translateX(-50%) translateY(120%) scale(0.5); transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.liquid-btn:hover::before { transform: translateX(-50%) translateY(-10%) scale(1); }
.liquid-btn:hover { border-color: var(--accent); color: white; }

/* =========================================
   FOOTER
========================================= */
main { position: relative; z-index: 50; background-color: var(--bg) !important; margin-bottom: 50vh; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9); }
.main-footer { position: fixed; bottom: 0; left: 0; width: 100%; height: 50vh; z-index: 1; padding: 0 6vw; background: #020202; border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.footer-logo { width: 120px; margin-bottom: 40px; opacity: 0.5; transition: 0.3s; }
.footer-logo:hover { opacity: 1; }
.footer-content { width: 100%; display: flex; justify-content: space-between; align-items: flex-end; font-size: 0.75rem; letter-spacing: 1px; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; }
.f-left p { margin-bottom: 5px; }
.f-right { display: flex; gap: 30px; }
.f-right a { color: white; transition: 0.3s; }
.f-right a:hover { color: var(--accent); }

/* =========================================
   MODAL DE VIDEO
========================================= */
.premium-video-modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(20px); z-index: 999999; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; }
.premium-video-modal.is-active { opacity: 1; visibility: visible; }
.modal-close-btn { position: absolute; top: 30px; right: 5vw; color: #fff; font-family: var(--sans); font-size: 0.85rem; letter-spacing: 4px; cursor: pointer; transition: color 0.3s ease; z-index: 10; }
.modal-close-btn:hover { color: var(--accent); }
.modal-video-container { width: 90%; height: 85%; max-width: 1400px; transform: scale(0.95); transition: transform 0.4s ease; }
.premium-video-modal.is-active .modal-video-container { transform: scale(1); }
#showcasePlayer { width: 100%; height: 100%; border-radius: 12px; background-color: #000; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8); object-fit: contain; display: block; cursor: none; }

/* =========================================
   ANIMACIONES GENERALES
========================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-block { opacity: 0; transform: translateY(50px); transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal-block.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================
   RESPONSIVE MÓVIL (max 768px)
========================================= */
@media (max-width: 768px) {
    * { cursor: auto; }
    #cursor { display: none !important; }
    .glass-nav { top: 20px; padding: 12px 28px; gap: 20px; }
    .nav-logo-img { height: 28px; padding-right: 18px; }
    .hero-logo { max-width: 200px; }
    .hero-subtitle { font-size: 0.7rem; letter-spacing: 5px; }
    .hero-cta { padding: 15px 35px; font-size: 0.75rem; }
    .about-premium { padding: 150px 5vw; }
    .about-editorial-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-copy { padding-right: 0; order: -1; }
    .about-headline h2 { font-size: clamp(3rem, 12vw, 4rem); letter-spacing: -1px; }
    .about-brands { margin-top: 15vw; }
    .brands-track { animation-duration: 20s; }
    .brands-set { gap: 12vw; padding-right: 12vw; }
    .brand-logo { height: 25px; }
    .services-gallery { flex-direction: column; height: auto; gap: 10px; }
    .service-panel { height: 70px; flex: auto; overflow: hidden; transition: height 0.5s var(--cubic); }
    .service-panel:hover { height: 70px; }
    .service-panel.is-mobile-open { height: auto; }
    .service-panel.is-mobile-open .panel-img { opacity: 0.5; filter: grayscale(30%); transform: scale(1.05); }
    .service-panel.is-mobile-open .panel-content h3 { margin-bottom: 15px; color: var(--accent); }
    .service-panel.is-mobile-open .panel-content p { opacity: 0.9 !important; max-height: none !important; }
    .panel-content { position: relative; height: auto; padding: 20px 25px 30px; display: flex; flex-direction: column; justify-content: flex-start; }
    .panel-content h3 { font-size: 1.1rem; white-space: normal; }
    .panel-content p { font-size: 0.9rem; opacity: 0; max-height: 0; overflow: hidden; transition: opacity 0.3s ease 0.25s, max-height 0.3s ease 0.25s; }
    .panel-num { margin-bottom: 6px; }
    .video-wrapper { height: 50vh; border-radius: 20px; }
    
    /* Proyectos Móvil — reglas heredadas por .monolith-* en bloque anterior */
    
    .form-row { grid-template-columns: 1fr; gap: 10px; margin-bottom: 15px; }
    .input-group input, .input-group select { font-size: 16px; }
    html { scroll-padding-bottom: 350px; }
    main { margin-bottom: 60vh; }
    .main-footer { height: 60vh; }
    .footer-content { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
    .menu-container { grid-template-columns: 1fr; padding: 100px 6vw 60px; gap: 30px; }
    .menu-links-2026 { gap: 4px; }
    .menu-num { margin-right: 12px; margin-top: 6px; font-size: 0.8rem; }
    .menu-links-2026 a { font-size: clamp(1.8rem, 9vw, 2.6rem); -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4); }
    .menu-info { display: block; order: 2; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
    .menu-info > a { font-size: 0.9rem; }
    .menu-info .menu-label { font-size: 0.65rem; margin-bottom: 10px; }
    .menu-info .menu-label[style*="margin-top"] { margin-top: 1.5rem !important; }
    .menu-socials { flex-direction: row; gap: 20px; flex-wrap: wrap; }
}


@media (hover: none) and (pointer: coarse) {
    .brand-logo { filter: grayscale(0%) opacity(1) !important; transform: none !important; }
    #scroll-focus-img { filter: none !important; transform: none !important; }
}