/* ========================================
   PRODUCCIÓN ESCÉNICA
======================================== */
/* ========================================
   HEADER
======================================== */

.site-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.main-nav a{
    white-space:nowrap;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
}


/* HERO */

.produccion-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 20px 100px;
    background:
        radial-gradient(
            circle at center,
            rgba(210, 178, 102, 0.11),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #050505 0%,
            #090909 100%
        );
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.produccion-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -100px;
    width: 360px;
    height: 1px;
    background: rgba(214, 181, 109, 0.35);
    transform: rotate(-12deg);
}

.produccion-hero::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: 15%;
    width: 400px;
    height: 1px;
    background: rgba(214, 181, 109, 0.25);
    transform: rotate(12deg);
}

.produccion-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.produccion-eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    color: #d6b56d;
    font-family: "Special Elite", monospace;
    font-size: 0.82rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.produccion-hero h1 {
    margin: 0;
    color: #ffffff;
    font-family: "Special Elite", monospace;
    font-size: clamp(3rem, 8vw, 6.8rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.produccion-hero p {
    max-width: 690px;
    margin: 30px auto 0;
    color: #d1d1d1;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    line-height: 1.7;
}

.produccion-hero-link {
    display: inline-block;
    margin-top: 38px;
    padding: 14px 24px;
    color: #ffffff;
    border: 1px solid rgba(214, 181, 109, 0.65);
    font-family: "Special Elite", monospace;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.produccion-hero-link:hover {
    color: #050505;
    background: #d6b56d;
    transform: translateY(-3px);
}


/* PRESENTACIÓN */

.produccion-presentacion {
    padding: 110px 20px;
    background: #080808;
}

.produccion-presentacion-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: start;
    max-width: 1120px;
}

.produccion-presentacion-titulo span {
    display: inline-block;
    margin-bottom: 18px;
    color: #d6b56d;
    font-family: "Special Elite", monospace;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.produccion-presentacion-titulo h2 {
    position: relative;
    margin: 0;
    padding-bottom: 25px;
    color: #ffffff;
    font-family: "Special Elite", monospace;
    font-size: clamp(2.2rem, 5vw, 4.1rem);
    font-weight: 400;
    line-height: 1.15;
}

.produccion-presentacion-titulo h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: #d6b56d;
}

.produccion-presentacion-texto {
    padding-left: 35px;
    border-left: 1px solid rgba(214, 181, 109, 0.35);
}

.produccion-presentacion-texto p {
    margin: 0 0 25px;
    color: #d0d0d0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    line-height: 1.85;
}

.produccion-presentacion-texto p:last-child {
    margin-bottom: 0;
}


/* PRODUCCIONES */

.producciones-section {
    padding: 110px 20px;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(214, 181, 109, 0.06),
            transparent 35%
        ),
        #050505;
}

.producciones-encabezado {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.producciones-encabezado span {
    display: inline-block;
    margin-bottom: 16px;
    color: #d6b56d;
    font-family: "Special Elite", monospace;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.producciones-encabezado h2 {
    position: relative;
    margin: 0 0 30px;
    padding-bottom: 20px;
    color: #ffffff;
    font-family: "Special Elite", monospace;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 400;
}

.producciones-encabezado h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 75px;
    height: 2px;
    background: #d6b56d;
    transform: translateX(-50%);
}

.producciones-encabezado p {
    margin: 0;
    color: #cfcfcf;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    line-height: 1.7;
}

.producciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.produccion-card {
    position: relative;
    min-height: 145px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 30px 26px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.produccion-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #d6b56d;
    transition: width 0.35s ease;
}

.produccion-card > span {
    position: absolute;
    top: 14px;
    right: 18px;
    color: rgba(255, 255, 255, 0.055);
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.produccion-card h3 {
    position: relative;
    z-index: 2;
    max-width: 88%;
    margin: 0;
    color: #f5f5f5;
    font-family: "Special Elite", monospace;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
}

.produccion-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 181, 109, 0.5);
    background: rgba(214, 181, 109, 0.055);
}

.produccion-card:hover::before {
    width: 100%;
}


/* VOLVER */

.volver-section {
    padding: 20px 20px 90px;
    background: #050505;
}

.volver-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #d6b56d;
    font-family: "Special Elite", monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.volver-link:hover {
    gap: 18px;
    color: #ffffff;
}


/* TABLET */

@media (max-width: 950px) {

    .produccion-presentacion-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .produccion-presentacion-texto {
        padding-left: 0;
        padding-top: 30px;
        border-left: 0;
        border-top: 1px solid rgba(214, 181, 109, 0.35);
    }

    .producciones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* CELULAR */

@media (max-width: 650px) {

    .produccion-hero {
        min-height: 68vh;
        padding: 130px 20px 80px;
    }

    .produccion-hero h1 {
        font-size: clamp(2.5rem, 14vw, 4rem);
    }

    .produccion-hero p {
        font-size: 1.1rem;
    }

    .produccion-presentacion {
        padding: 80px 20px;
    }

    .produccion-presentacion-texto p {
        font-size: 1.1rem;
    }

    .producciones-section {
        padding: 80px 20px;
    }

    .producciones-grid {
        grid-template-columns: 1fr;
    }

    .produccion-card {
        min-height: 120px;
        padding: 26px 22px;
    }

    .produccion-card h3 {
        font-size: 0.95rem;
    }

    .volver-section {
        padding-bottom: 65px;
    }

}