/* Estilos para Quiénes Somos */

.contacto-hero {
    background-color: #FAFAFA;  
    color: #1C1C1C;
    padding: 90px 0;
    text-align: center;
    margin-bottom: 0;
}
.contacto-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.main-flex {
    display: flex;
    gap: 50px; /* Espacio entre columnas */
    padding: 50px 0;
}

/* Columna Izquierda */
.nosotros-container {
    background: #FAFAFA;
}
.equipo-section {
    flex: 1; /* Ocupa menos espacio */
    text-align: center;
}

.fundadora-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.img-circular {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #e67e22; /* Color naranja de tu tema */
    margin-bottom: 15px;
}

.role {
    color: #e67e22;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.profesores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.profe-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 5px;
}

.profe-item p {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Columna Derecha */
.info-academia {
    flex: 1.5; /* Ocupa más espacio */
}

.info-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.info-block p {
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.mision-vision {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.mision-vision .item {
    background: #fdfdfd;
    padding: 20px;
    border-left: 4px solid #e67e22;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.02);
}

.item h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.item h3 i {
    color: #e67e22;
    margin-right: 8px;
}

.valores ul {
    list-style: none;
    padding: 0;
}

.valores li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.valores li i {
    color: #27ae60;
    margin-right: 10px;
}

/* Responsivo para celulares */
@media (max-width: 768px) {
    .main-flex {
        flex-direction: column;
    }
    
    .mision-vision {
        flex-direction: column;
    }
}