    .main-title {
        text-align: center;
        margin-bottom: 3rem;
        animation: fadeIn 1s ease-out;
    }

    .main-title h1 {
        font-size: 2.8rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

    .main-title h1::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, #3498db, #2c3e50);
        border-radius: 2px;
    }

    .main-title p {
        font-size: 1.2rem;
        color: #7f8c8d;
        max-width: 800px;
        margin: 0 auto;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .value-card {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, #3498db, #2c3e50);
    }

    .value-icon {
        width: 70px;
        height: 70px;
        background: #eaf2f8;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 1.8rem;
        color: #3498db;
        transition: transform 0.3s ease;
    }

    .value-card:hover .value-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .value-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .value-card p {
        color: #555;
        line-height: 1.6;
    }

/* =========================
   Estilo Secciones Historia y Manifiesto
========================= */

.history-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 3rem auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1100px;
}

.history-section:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.history-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.history-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2c3e50);
    border-radius: 2px;
}

/* Contenido flexible */
.history-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

/* Texto */
.history-text, .history-text-two {
    flex: 1;
    min-width: 320px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.history-text-two {
    font-style: italic;
    color: #555;
}

/* Imagen */
.history-image {
    flex: 1;
    min-width: 320px;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    padding: 1rem;
    text-align: center;
    transition: transform 0.4s ease;
}

.history-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.history-section:hover .history-image {
    transform: scale(1.05);
}

/* Texto dentro de la imagen */
.history-image span {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* Animaciones */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.history-section {
    animation: fadeInUp 0.8s ease-out;
}


    /* Responsive */
    @media (max-width: 768px) {
        .main-title h1 {
            font-size: 2.2rem;
        }
        
        .main-title p {
            font-size: 1rem;
        }
        
 .history-section {
        padding: 1.5rem;
    }
    .history-content {
        flex-direction: column;
    }
    .history-image {
        width: 100%;
        height: 250px;
    }
    .history-text, .history-text-two {
        text-align: justify;
        font-size: 0.95rem;
    }
    .history-section h2 {
        font-size: 1.6rem;
    }
    
            .history-section {
        padding: 0.5rem;
    }
        
        .history-image {
            width: 100%;
        }
        
        .value-card, .team-member {
            margin-bottom: 1.5rem;
        }
    }