.nosotros-hero {
    height: 40vh;
    background: url("../Imagenes/faciales.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    font-weight: bold;
}

.nosotros-hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(197,122,168,0.5);
}

.nosotros-hero h1 {
    position: relative;
    color: white;
    z-index: 2;
    font-size: 2rem;
    top: 30px;
}

.nosotros-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 30px 20px;
}

/* IMAGEN */
.nosotros-img img {
    width: 100%;
    border-radius: 15px;
}

/* TEXTO */
.nosotros-texto h2 {
    margin-bottom: 15px;
}

.nosotros-texto p {
    font-size: clamp(1.05rem, 1.2vw, 1.5rem);
    line-height: 1.9;
    margin-bottom: 15px;
    color: #555;
}

.frase {
    background: rgba(197,122,168,0.1);
    padding: 60px 20px;
    text-align: center;
}

.frase p {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: 'Playfair Display', serif;
    color: #C57AA8;
    font-style: italic;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}


/* DESKTOP */
@media(min-width: 768px){
    .nosotros-container {
        flex-direction: row;
        align-items: center;
        justify-content: center; /* 👈 centra todo */
        gap: 60px; /* espacio entre columnas */
        max-width: 1100px;
        margin: 0 auto; /* 👈 centra el bloque completo */
    }

    .nosotros-img {
        width: 50%;
    }

    .nosotros-texto {
        width: 50%;
    }

    .nosotros-texto h2 {
    font-size: 1.5rem;
    
    }

    .nosotros-texto p {
    font-size: 1.35rem;
    
    }

    .nosotros-hero {
    height: 60vh;
    
    }

    .frase {
    padding: 60px 50px;
    
    }
}

/* GALERIA */
.galeria {
    padding: 80px 20px;
    text-align: center;
}

.galeria h2 {
    margin-bottom: 30px;
}

/* GRID */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ITEMS */
.galeria-item,
.video-item {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

/* IMÁGENES */
.galeria-item {
    object-fit: cover;
}

/* VIDEO */
.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HOVER */
.galeria-item:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
}

/* DESKTOP */
@media(min-width: 768px){
    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nosotros-hero h1 {
    font-size: 2.8rem;
    }
}