/* CONTENEDOR AISLADO (equivalente al body original) */
.trauma-mask-wrapper {
    position: fixed;
    inset: 0;

    /* ← atajo para top:0; right:0; bottom:0; left:0; */
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -9999;

    /* muy atrás */
    pointer-events: none;
}

/* TEXTO */
.trauma-mask-wrapper p {
    font-family: "Poppins", sans-serif;
    font-size: 7px;
    line-height: 1.5;
    margin: 0;
    padding: 0px;
    color: rgba(0, 0, 0, 0.14);
    background-image: url("../img/backs/lorem-back-contact.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: cover;
    background-position: center center;
}

/* IMÁGENES SOLO DENTRO */
.trauma-mask-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

/* MOBILE */
@media only screen and (max-width: 600px) {
    .trauma-mask-wrapper p {
        font-size: 8px;
        background-position: center top;
        filter: grayscale(100%);
        background-image: url("../img/backs/lorem-back-contact.jpg");
    }
}

/* MOBILE PEQUEÑO */
@media only screen and (max-width: 400px) {
    .trauma-mask-wrapper p {
        font-size: 5px;
        background-position: center top;
        filter: grayscale(100%);
        background-image: url("../img/backs/lorem-back-contact.jpg");
    }
}