/* =========================================================
   EL ASOMBRADOR
   ========================================================= */

:root {
    --black: #050505;
    --black-soft: #0b0b0b;
    --white: #f5f5f2;
    --gray: #949494;
    --accent: #d4af37;
    --container: 1280px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

    body.menu-open {
        overflow: hidden;
    }


a {
    color: inherit;
    text-decoration: none;
}


.container {
    width: min( calc(100% - 48px), var(--container) );
    margin: auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 110px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9000;
    transition: background .4s ease, height .4s ease, backdrop-filter .4s ease;
}


    .main-header.scrolled {
        height: 80px;
        background: rgba(5, 5, 5, .72);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255,255,255,.06);
    }



/* LOGO */

.brand {
    position: relative;
    display: flex;
    flex-direction: column;
    line-height: 1;
    z-index: 2;
}


.brand-small {
    margin-left: 3px;
    margin-bottom: 5px;
    color: var(--accent);
    font-size: .55rem;
    letter-spacing: .55em;
}


.brand-name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: .25em;
}



/* DERECHA */

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}


.header-contact {
    position: relative;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .22em;
}


    .header-contact::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 100%;
        height: 1px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .35s ease;
    }


    .header-contact:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }



/* BOTÓN MENU */

.menu-button {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
    position: relative;
    z-index: 9100;
}


    .menu-button:hover {
        border-color: var(--accent);
        background: rgba(212,175,55,.08);
        transform: scale(1.06);
    }


    .menu-button span {
        display: block;
        width: 20px;
        height: 1px;
        background: white;
        transition: transform .4s ease;
    }



/* BOTÓN CUANDO MENU ESTÁ ABIERTO */

body.menu-open
.menu-button span:first-child {
    transform: translateY(4px) rotate(45deg);
}


body.menu-open
.menu-button span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* =========================================================
   FULLSCREEN MENU
   ========================================================= */

.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 8000;
    background: rgba(4,4,4,.97);
    backdrop-filter: blur(25px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity .5s ease, visibility .5s ease, transform .7s cubic-bezier(.2,.8,.2,1);
    overflow: hidden;
}


body.menu-open
.fullscreen-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}



/* TEXTO GIGANTE DE FONDO */

.menu-background-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: clamp(7rem, 18vw, 20rem);
    font-weight: 900;
    letter-spacing: -.08em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.035);
    white-space: nowrap;
    pointer-events: none;
}



/* NAVEGACIÓN */

.fullscreen-nav {
    position: relative;
    z-index: 2;
    width: min(900px, 80vw);
    display: flex;
    flex-direction: column;
}


.menu-link {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 12px 0;
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.04em;
    transition: color .3s ease, transform .4s ease;
}


    .menu-link span {
        width: 30px;
        color: var(--accent);
        font-size: .6rem;
        letter-spacing: .15em;
    }


    .menu-link:hover {
        color: var(--accent);
        transform: translateX(20px);
    }



/* PIE MENU */

.menu-footer {
    position: absolute;
    left: 5vw;
    right: 5vw;
    bottom: 40px;
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: .6rem;
    letter-spacing: .2em;
}


    .menu-footer a {
        color: #aaa;
        transition: color .3s ease;
    }


        .menu-footer a:hover {
            color: var(--accent);
        }


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero/hero-principal.png');
    background-size: cover;
    background-position: center 32%;
    background-repeat: no-repeat;
    transform: scale(1.03);
    filter: contrast(1.06) saturate(.95) brightness(.90);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at 70% 45%, rgba(212,175,55,.10), transparent 42% ), linear-gradient( 90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.30) 45%, rgba(0,0,0,.48) 100% ), linear-gradient( 0deg, rgba(0,0,0,.35), transparent 50% );
}


.hero-grain {
    position: absolute;
    inset: 0;
    opacity: .12;
    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 2;
    width: min(900px, 82%);
    margin-left: 18%;
    text-align: center;
    transform: translateY(20px);
}

.hero-eyebrow {
    letter-spacing: .42em;
    font-size: .65rem;
    margin-bottom: 24px;
    color: var(--accent);
}


.hero-title {
    font-size: clamp( 3.2rem, 7.2vw, 7rem );
    line-height: .88;
    font-weight: 900;
    letter-spacing: -.06em;
}


.hero-title-line {
    display: block;
}


.hero-title-highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
}


.hero-description {
    max-width: 560px;
    margin: 30px auto 0;
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.7;
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    justify-content: center;
}


.btn {
    min-width: 190px;
    padding: 18px 28px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    transition: .35s ease;
}


.btn-primary {
    background: var(--white);
    color: #000;
}


    .btn-primary:hover {
        background: var(--accent);
    }


.btn-outline {
    border: 1px solid rgba(255,255,255,.4);
}


    .btn-outline:hover {
        border-color: white;
        background: rgba(255,255,255,.08);
    }


.btn-play {
    margin-right: 10px;
}



/* =========================================================
   SCROLL
   ========================================================= */

.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-size: .6rem;
    letter-spacing: .35em;
    color: #888;
}


.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient( white, transparent );
}



/* =========================================================
   GENERAL SECTION
   ========================================================= */

.section {
    padding: 150px 0;
}


.section-label {
    color: var(--accent);
    letter-spacing: .45em;
    font-size: .7rem;
    margin-bottom: 28px;
}

/* =========================================================
   EXPERIENCE
   ========================================================= */

.experience {
    position: relative;
    min-height: 100vh;
    background: var(--black);
    overflow: hidden;
}


/* PALABRA GIGANTE DE FONDO */

.experience-word {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(7rem, 18vw, 20rem);
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: .8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.035);
    white-space: nowrap;
    pointer-events: none;
}


/* GRID */

.experience-grid {
    position: relative;
    z-index: 2;
    width: min(1380px, calc(100% - 80px));
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(60px, 8vw, 150px);
    align-items: center;
}



/* =========================================================
   IMAGEN EXPERIENCE
   ========================================================= */

.experience-visual {
    position: relative;
}


.experience-image-wrapper {
    position: relative;
    height: min(72vh, 760px);
    overflow: hidden;
}


.experience-image {
    position: absolute;
    width: 110%;
    height: 115%;
    left: -5%;
    top: -7%;
    object-fit: cover;
    filter: grayscale(35%) contrast(1.12) brightness(.72) saturate(.8);
    transform: scale(1.04);
    transition: filter .8s ease;
}


.experience-image-wrapper:hover
.experience-image {
    filter: grayscale(0%) contrast(1.08) brightness(.82) saturate(.95);
}



/* OVERLAY */

.experience-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.72), transparent 55% ), linear-gradient( to right, rgba(0,0,0,.30), transparent 50% );
    pointer-events: none;
}



/* ESQUINA */

.experience-corner {
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .58rem;
    letter-spacing: .30em;
    color: rgba(255,255,255,.7);
}


    .experience-corner span {
        width: 30px;
        height: 1px;
        background: var(--accent);
    }



/* NÚMERO GRANDE */

.experience-number {
    position: absolute;
    right: -42px;
    bottom: -55px;
    font-size: clamp(7rem, 12vw, 13rem);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,175,55,.18);
    pointer-events: none;
}



/* =========================================================
   CONTENIDO EXPERIENCE
   ========================================================= */

.experience-content {
    position: relative;
    padding-right: 30px;
}


.experience-title {
    font-size: clamp(3.3rem, 6.3vw, 7rem);
    line-height: .86;
    letter-spacing: -.065em;
    font-weight: 900;
}


    .experience-title span {
        display: block;
    }


.experience-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.65);
}



/* DESCRIPCIÓN */

.experience-description {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    max-width: 530px;
    margin-top: 50px;
}


.experience-line {
    width: 55px;
    height: 1px;
    margin-top: 12px;
    flex-shrink: 0;
    background: var(--accent);
}


.experience-description p {
    color: #999;
    font-size: 1rem;
    line-height: 1.8;
}



/* LINK */

.experience-link {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    margin-top: 45px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.20);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .20em;
    transition: border-color .3s ease, color .3s ease;
}


    .experience-link strong {
        color: var(--accent);
        font-size: 1.2rem;
        transition: transform .3s ease;
    }


    .experience-link:hover {
        color: var(--accent);
        border-color: var(--accent);
    }


        .experience-link:hover strong {
            transform: translateX(8px);
        }

/* =========================================================
   SHOWS
   ========================================================= */

.shows {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.show-card {
    height: 750px;
    position: relative;
    background: #111;
    overflow: hidden;
}

.show-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.15) brightness(.68) saturate(.8);
    transform: scale(1.03);
    transition: transform 1.2s ease, filter .8s ease;
}


.show-card:hover .show-image {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1.17) brightness(.82) saturate(1);
}

.show-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( to top, rgba(0,0,0,.97) 0%, rgba(0,0,0,.60) 40%, rgba(0,0,0,.08) 75% );
}


.show-content {
    position: absolute;
    z-index: 2;
    left: 60px;
    right: 60px;
    bottom: 60px;
}


.show-number {
    color: var(--accent);
    font-size: .7rem;
}


.show-content h3 {
    font-size: clamp( 2.5rem, 4vw, 5rem );
    margin: 15px 0;
    letter-spacing: -.04em;
}


.show-content p {
    color: #aaa;
    max-width: 430px;
    line-height: 1.7;
}


.show-content a {
    display: inline-block;
    margin-top: 30px;
    font-size: .7rem;
    letter-spacing: .25em;
}



/* =========================================================
   REEL
   ========================================================= */

.reel {
    background: #080808;
}


.reel-wrapper {
    position: relative;
}


.reel-background {
    height: min( 70vh, 720px );
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient( circle, #252525, #050505 );
}


.reel-play {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.5);
    background: rgba(0,0,0,.25);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    transition: .4s;
}


    .reel-play:hover {
        transform: scale(1.15);
        background: white;
        color: black;
    }


.reel-text {
    position: absolute;
    bottom: -45px;
    left: 40px;
    font-size: clamp( 3rem, 8vw, 8rem );
    font-weight: 900;
    line-height: .8;
}


    .reel-text span,
    .reel-text strong {
        display: block;
    }


    .reel-text span {
        color: transparent;
        -webkit-text-stroke: 1px #777;
    }



/* =========================================================
   ESTADISTICAS
   ========================================================= */

.stats {
    min-height: 450px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: center;
    border-top: 1px solid #181818;
    border-bottom: 1px solid #181818;
}


.stat {
    text-align: center;
    border-right: 1px solid #181818;
}


    .stat:last-child {
        border: 0;
    }


    .stat strong {
        display: block;
        font-size: clamp( 3rem, 6vw, 6rem );
        letter-spacing: -.07em;
    }


    .stat span {
        color: #666;
        font-size: .65rem;
        letter-spacing: .35em;
    }



/* =========================================================
   CONTACTO
   ========================================================= */

.contact {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}


.contact-light {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(212,175,55,.12);
    filter: blur(140px);
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}


.contact .container {
    position: relative;
    z-index: 1;
}


.contact-title {
    font-size: clamp( 3.5rem, 8vw, 8rem );
    line-height: .85;
    letter-spacing: -.065em;
}


    .contact-title span {
        display: block;
        color: transparent;
        -webkit-text-stroke: 1px #555;
    }


.contact-text {
    margin: 40px 0;
    color: #888;
}


.contact-email {
    font-size: clamp( 1.3rem, 3vw, 2.6rem );
    border-bottom: 1px solid #555;
    padding-bottom: 8px;
}



/* =========================================================
   ANIMACIONES
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}


    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reel-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:900px) {

    .shows {
        grid-template-columns: 1fr;
    }


    .show-card {
        height: 600px;
    }


    .stats {
        grid-template-columns: repeat(2,1fr);
    }


    .stat {
        padding: 70px 20px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        width: min( calc(100% - 40px), 720px );
        gap: 80px;
    }


    .experience-image-wrapper {
        height: 65vh;
        min-height: 520px;
    }


    .experience-content {
        padding-right: 0;
    }


    .experience-number {
        right: 0;
    }

}

/*Mouse*/

.cursor-dot,
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.cursor-glow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(3px);
    transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
}

body.cursor-hover .cursor-glow {
    width: 40px;
    height: 40px;
    border-color: rgba(212, 175, 55, .65);
    background: rgba(212, 175, 55, .06);
}



@media(max-width:600px) {

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }


    .hero-eyebrow {
        letter-spacing: .25em;
    }


    .section {
        padding: 100px 0;
    }


    .show-content {
        left: 30px;
        right: 30px;
        bottom: 40px;
    }


    .stats {
        grid-template-columns: 1fr;
    }


    .stat {
        border-right: 0;
        border-bottom: 1px solid #181818;
    }

    .experience-grid {
        width: calc(100% - 30px);
        gap: 60px;
    }


    .experience-image-wrapper {
        height: 70vh;
        min-height: 500px;
    }


    .experience-title {
        font-size: clamp( 3rem, 14vw, 5rem );
    }


    .experience-description {
        margin-top: 35px;
    }


    .experience-word {
        top: 40px;
    }
}
