/* Kid Music - Producciones */

.producciones-hero {
    position: relative;
    min-height: clamp(620px, 48vw, 820px);
    overflow: hidden;
    color: var(--global-white);
    background-color: var(--global-black);
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .58) 46%, rgba(0, 0, 0, .18) 100%),
        var(--producciones-hero-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.producciones-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .5) 100%);
    pointer-events: none;
}

.producciones-hero-row {
    position: relative;
    z-index: 1;
    min-height: clamp(620px, 48vw, 820px);
}

.producciones-hero-copy {
    max-width: 900px;
    padding: clamp(8rem, 14vw, 14rem) 0 clamp(4rem, 7vw, 7rem);
}

.producciones-hero h1 {
    margin: .8rem 0 1.4rem;
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: .88;
    letter-spacing: -.07em;
}

.producciones-hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.65;
}

.producciones-grid {
    padding-top: 100px;
    background: var(--global-white);
}

.produccion-card a {
    display: block;
    color: var(--global-black);
}

.produccion-card figure {
    aspect-ratio: 1 / 1;
    margin: 0;
    overflow: hidden;
    background: var(--global-gray-100);
}

.produccion-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 500ms ease, transform 700ms ease;
}

.produccion-card a:hover img,
.produccion-card a:focus-visible img {
    filter: grayscale(0);
    transform: scale(1.04);
}

.produccion-card-contenido {
    position: relative;
    padding: 1.25rem 3rem 1.5rem 0;
    border-bottom: 1px solid var(--global-gray-200);
}

.produccion-card-contenido span {
    display: block;
    margin-bottom: .45rem;
    color: var(--global-gray-600);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.produccion-card-contenido h3 {
    margin-bottom: .25rem;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.produccion-card-contenido p {
    margin-bottom: 0;
    color: var(--global-gray-600);
}

.produccion-card-contenido i {
    position: absolute;
    top: 1.35rem;
    right: 0;
    font-size: 1.25rem;
    transition: transform var(--global-transition);
}

.produccion-card a:hover .produccion-card-contenido i,
.produccion-card a:focus-visible .produccion-card-contenido i {
    transform: translate(3px, -3px);
}

.producciones-contacto-logo {
    width: min(100%, 240px);
    height: auto;
    display: inline-block;
    filter: grayscale(1);
}

.producciones-contacto h2 {
    max-width: 820px;
    margin: 1rem 0 1.25rem;
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.producciones-contacto p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .68);
    line-height: 1.75;
}

@media (max-width: 991.98px) {

    .producciones-contacto-logo {
        width: 190px;
        margin-bottom: 1rem;
    }

}

@media (max-width: 767.98px) {

    .producciones-hero {
        background-image:
            linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .9) 100%),
            var(--producciones-hero-image);
    }

}

/* ==========================================================
   COLORES DE ENCABEZADOS SEGÚN CONTRASTE
========================================================== */

.producciones-hero h1,
.producciones-hero h2,
.producciones-hero h3,
.producciones-hero h4,
.producciones-hero h5,
.producciones-hero h6,
.producciones-contacto h1,
.producciones-contacto h2,
.producciones-contacto h3,
.producciones-contacto h4,
.producciones-contacto h5,
.producciones-contacto h6{
    color:var(--global-heading-dark-bg);
}
