/* ============================== */
/* 🎨 ESTILOS GENERALES           */
/* ============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

/* ============================== */
/* 📌 HERO VIDEO (PORTADA)        */
/* ============================== */
.nosotros-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.nosotros-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nosotros-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nosotros-overlay h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
}

/* ============================== */
/* 📌 SECCIÓN SOBRE NOSOTROS      */
/* ============================== */
.nosotros-contenido {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.nosotros-container {
    max-width: 800px;
    margin: 0 auto;
}

.nosotros-contenido h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0071e3;
    margin-bottom: 10px;
}

.nosotros-contenido p {
    font-size: 1.2rem;
    color: #555;
}

/* ============================== */
/* 📌 SECCIÓN EQUIPO (MIEMBROS)   */
/* ============================== */
.nosotros-equipo {
    background: #f5f5f5;
    padding: 60px 20px;
}

.nosotros-equipo h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0071e3;
    margin-bottom: 30px;
    text-align: center;
}

.nosotros-equipo-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

/* ✅ Estilos de cada miembro */
.nosotros-miembro {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 280px;
    flex: 1;
    max-width: 300px;
}

.nosotros-miembro img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0071e3;
}

.nosotros-miembro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 10px;
    color: #333;
}

.nosotros-miembro p {
    font-size: 1.1rem;
    color: #666;
    margin: 5px 0;
}

.nosotros-social-links {
    margin-top: 10px;
}

.nosotros-social-links a {
    color: #0071e3;
    font-size: 1.5rem;
    margin: 0 5px;
    transition: color 0.3s;
}

.nosotros-social-links a:hover {
    color: #005bb5;
}

/* ============================== */
/* 📱 RESPONSIVE                  */
/* ============================== */
@media (max-width: 768px) {
    .nosotros-equipo-list {
        justify-content: center;
    }

    .nosotros-miembro {
        width: 90%;
    }
}
