/* NESAGAVIRIA - Seccion general */
/* ================= SECCIÓN GENERAL ================= */
.general {
    display: flex;
    width: 100%;
    min-height: 500px;
}

.general-1 {
    width: 50%;
    padding: 100px 80px;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, #f0f9f6 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.general-1 h2 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 700;
}

.general-1 p {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 35px;
    text-align: justify;
    line-height: 1.8;
}

.general-1 .btn {
    align-self: flex-start;
}

.general-2,
.general-3 {
    width: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.general-2 {
    background-image: url(../../images/experiencia.jpeg);
}

.general-3 {
    background-image: url('../../images/parque_memorial/Parque_memorial2.JPG');
    background-size: cover;
    background-position: center center;
}

