:root {
    --fuenteHeading: "Playfair Display", serif;
    --fuenteParrafos: "Nunito", serif;

    --doradoBrillante: #FFD700;
    --negroProfundo: #000000;
    --blancoPuro: #FFFFFF;
    --azulMarino: #0A2540;
    --verdeEsmeralda: #50C878;
    --grisAcero: #4B4B4B;
    --rojoCarmesi: #E63946;
    --amarilloMostaza: #FFC107;
}

/* HEADER exclusivo de la sección PYMES */
.header__pymes {
    position: relative;
    height: 140rem;
    overflow: hidden;
}

@media (min-width:768px) {
    .header__pymes {
        height: 80rem;
    }
}

/* Video de fondo para PYMES */
.video__pymes-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Overlay oscuro sobre el video */
.video__pymes-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0 */
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video__pymes {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.header__pymes-texto {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
    position: static;
    transform: none;
    font-size: 1.4rem;
    text-align: center;
    color: var(--blancoPuro);
}

.header__pymes-texto img {
    width: 18rem;
    margin-top: 0;
}

@media (min-width: 768px) {
    .header__pymes-texto {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        width: 100%;
        font-size: 1.5rem;
        line-height: 1;
        max-width: 150rem;
        padding: 0 2rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .header__pymes-texto img {
        width: 25rem;
        margin-top: 2rem;
    }
}

@media (min-width: 1200px) {
    .header__pymes-texto {
        font-size: 2rem;
        gap: 5rem;
    }

    .header__pymes-texto img {
        width: 35rem;
    }
}