/* ========== NOSOTRAS ========== */
#nosotras {
    padding: 50px 7vw;
    background-color: #f4f4f4;
    position: relative;
    z-index: 1;
}

#nosotras h2 {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}

/* Decorativos siempre al fondo */
.decoracion {
    position: absolute;
    width: clamp(64px, 6vw, 100px);
    opacity: .7;
    pointer-events: none;
    z-index: 0;
}

.decoracion-izquierda {
    top: 50px;
    left: 5%;
}

.decoracion-derecha {
    bottom: 20px;
    right: 5%;
}

.equipo-contenedor {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.miembro-equipo {
    background-color: #10E4E3;
    width: clamp(260px, 28vw, 320px);
    min-height: 400px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    text-align: center;
    transition: transform .3s ease;
}

.miembro-equipo:hover {
    transform: translateY(-5px);
}

.miembro-equipo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    margin-bottom: 15px;
}

.miembro-equipo h2,
.miembro-equipo h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #e53e3e;
    margin-bottom: 5px;
}

.miembro-equipo .rol {
    font-size: 1rem;
    color: #444;
    margin-bottom: 5px;
}

.miembro-equipo .email {
    font-size: .9rem;
    color: #555;
    margin-bottom: 10px;
}

.miembro-equipo .descripcion {
    font-size: .9rem;
    line-height: 1.4;
    color: #333;
}

/* Mobile */
@media (max-width:768px) {
    #nosotras {
        padding: 36px 16px;
    }

    .equipo-contenedor {
        gap: 20px;
    }
}