/* ==========================================
   DISEÑO DE LA PÁGINA QUIÉNES SOMOS
   ========================================== */

.contenedor-nosotros {
    max-width: 850px;
    margin: 40px auto;
    padding: 0 20px;
    color: #2c3e50; /* Tu color oscuro corporativo */
}

/* Títulos y líneas decorativas */
.contenedor-nosotros h1, 
.contenedor-nosotros h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.linea-decorativa {
    width: 80px;
    height: 4px;
    background-color: #3498db; /* Tu azul característico */
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

/* --- HISTORIA --- */
.seccion-historia {
    background: rgba(96, 82, 134, 0.1);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.seccion-historia p {
    font-size: 1.1rem !important;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px !important;
    text-align: justify;
}

.texto-destacado {
    font-size: 1.2rem !important;
    color: #2c3e50;
   /* border-left: 4px solid #3498db;*/
    padding-left: 15px;
}

/* --- MISIÓN Y VISIÓN (En paralelo) --- */
.bloques-mision-vision {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.bloque-mv {
    flex: 1;
    background-color: rgba(96, 82, 134, 0.1);;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 5px solid #3498db; /* Línea de color arriba */
}

.bloque-mv h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.bloque-mv p {
    font-size: 1rem !important;
    line-height: 1.6;
    color: #555555;
    margin: 0 !important;
}

/* --- VALORES (Tarjetas completas) --- */
.seccion-valores {
    margin-top: 5px;
}

.tarjeta-valor {
    background-color: rgba(96, 82, 134, 0.1);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border-left: 5px solid #2c3e50; /* Detalle oscuro a la izquierda */
}

.tarjeta-valor h4 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 10px;
}

.tarjeta-valor p {
    font-size: 0.95rem !important;
    line-height: 1.6;
    color: #555555;
    margin: 0 !important;
}

/* ==========================================
   📱 ADAPTACIÓN RESPONSIVA (CELULARES)
   ========================================== */
@media (max-width: 768px) {
    .bloques-mision-vision {
        flex-direction: column; /* En celulares, Misión va arriba y Visión abajo */
    }
    
    .contenedor-nosotros h1 {
        font-size: 1.8rem;
    }
    
    .seccion-historia {
        padding: 20px;
    }
}