﻿/* Contenedor general para centrar todo el contenido */
.section-container {
    max-width: 900px;
    margin: 0 auto; /* Centra horizontalmente */
    padding: 20px 10px;
}

/* Cada bloque (Nosotros, Misión, Visión) */
.section-block {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Títulos elegantes */
.section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #F28705;
    margin-bottom: 15px;
    font-family: "Segoe UI", sans-serif;
}

/* Texto interno */
.section-text {
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: justify; /* Si quieres centrado. Si prefieres justificado → justify */
    color: #333333;
    font-family: "Segoe UI", sans-serif;
    margin: 0 auto;
    max-width: 90%;
}

/*Logo*/
.logo {
    height: 150px;
    width: 180px;
    text-align: center;
}

/* Mejora en pantallas pequeñas */
@media (max-width: 600px) {
    .section-block {
        padding: 18px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-text {
        font-size: 1rem;
    }
}
