/* ===== NOSOTROS TRULEX ===== */

.nosotros-trulex {
    background: #ffffff;
    min-height: 100vh; /* ocupa toda la pantalla */
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: #0f172a;
}

.nosotros-trulex .container {
    max-width: 1300px;
}

/* BADGE */
.nosotros-badge {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b7280;
    display: block;
    margin-bottom: 10px;
}

/* TITULO */
.nosotros-trulex h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4vw, 3.5rem);
    margin-bottom: 20px;
}

.nosotros-trulex h1 span {
    color: #d4af37;
}

/* TEXTO */
.nosotros-text {
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.6;
}

.nosotros-trulex h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.nosotros-trulex h1 span {
    color: #d4af37;
}

/* IMAGEN WRAPPER */
.nosotros-img-wrapper {
    position: relative;
    display: inline-block;
}

/* CUADRO DETRÁS (clave 🔥) */
.nosotros-img-wrapper::before {
    content: "";
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background: #d4af37;
    z-index: 0;
}

/* IMAGEN */
.nosotros-img {
    width: 100%;
    max-width: 520px; /* antes 450px */
    position: relative;
    z-index: 1;
    display: block;
}

@media (max-width: 992px) {

    .nosotros-trulex {
        text-align: center;
        padding: 70px 0;
    }

    .nosotros-trulex h1 {
        font-size: 2.2rem;
    }

    .nosotros-img-wrapper::before {
        display: none; /* evita desmadre en móvil */
    }

}