﻿
/* Quiénes Somos Section */
.quienes-somos {
    display: flex;
    justify-content:space-around;
    text-align:center;
    padding: 20px 80px;
}

    .quienes-somos .container {
        flex: 1;
        text-align: left;
        padding: 20px 60px;
        max-width: 800px;
        margin: auto;
    }

    .quienes-somos .image {
        flex: 1;
        width: 500px;
        height: auto;
    }

    .quienes-somos ul {
        margin: 1rem 0;
        text-align: left;
    }

    .quienes-somos li {
        margin: 0.5rem 0;
        color: #ff5722;
    }

/* Historia Section */
.historia {
    background-color: #f9f9f9;
    text-align: center;
}

.historia .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.historia .text {
    flex: 1;
    max-width: 50%;
    padding: 1rem;
}

.historia .image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

/* Filosofía Section */
.filosofia {
    text-align: center;
    margin: 20px;
}

    .filosofia .values {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .filosofia .value {
        flex: 1;
        max-width: 45%;
        padding: 1rem;
        background-color: #f4f4f4;
        margin: 1rem;
        border-radius: 8px;
    }

        .filosofia .value h3 {
            margin-bottom: 1rem;
            color: #256a21;
        }
