/*	# SECTION OBJETIVOS
===================================*/
.section-objetivos {
    margin-bottom: 6.25rem;
}

.section-objetivos__numbers {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
    padding: 2rem;
    position: relative;
}

.section-objetivos__numbers::after {
    background: var(--mwm--color--yellow);
    border-radius: 206px;
    box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.05);
    content: "";
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 100px;
    z-index: -1;
}

.section-objetivos .section-header__title {
    margin-bottom: 1rem;
}

.section-objetivos .section-header {
    margin-bottom: 3.75rem;
}

.section-objetivos .objetivo-number {
    max-width: 23.75rem;
    text-align: center;
}

.section-objetivos .objetivo-number__number {
    font-family: var(--mwm--font-family-alt);
    font-size: 5rem;
    font-weight: var(--mwm--font-weight--semi-bold);
    line-height: 0.8;
}

.section-objetivos .objetivo-number__title {
    font-size: 1.125rem;
    font-weight: var(--mwm--font-weight--semi-bold);
    margin: 0;
}

.section-objetivos .objetivo-number__desc {
    margin-bottom: 0;
}

.section-objetivos__boxes {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

.section-objetivos .objetivo-box {
    border-radius: 1.5625rem;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.section-objetivos .objetivo-box__media {
    align-items: center;
    display: flex;
    height: 8.5rem;
    justify-content: center;
    padding: 1.25rem;
}

.section-objetivos .objetivo-box__text {
    padding: 1.5rem 1rem 1rem;
}

.section-objetivos .objetivo-box__desc>*:last-child {
    margin: 0;
}

.section-objetivos .objetivo-box__title {
    font-size: 1.25rem;
    font-weight: var(--mwm--font-weight--semi-bold);
    margin-bottom: 0.25rem;
}

.section-objetivos .objetivo-box.box-1 {
    background-color: rgb(207, 219, 230);
}

.section-objetivos .objetivo-box.box-1 .objetivo-box__media {
    background-color: rgb(54, 106, 152);
}

.section-objetivos .objetivo-box.box-2 {
    background-color: rgb(244, 248, 246);
}

.section-objetivos .objetivo-box.box-2 .objetivo-box__media {
    background-color: rgb(140, 188, 169);
}

.section-objetivos .objetivo-box.box-3 {
    background-color: rgb(248, 235, 212);
}

.section-objetivos .objetivo-box.box-3 .objetivo-box__media {
    background-color: rgb(231, 187, 109);
}

.section-objetivos .objetivo-box.box-4 {
    background-color: rgb(247, 247, 247);
}

.section-objetivos .objetivo-box.box-4 .objetivo-box__media {
    background-color: rgb(174, 173, 179);
}

@media (min-width: 568px) {
    .section-objetivos__boxes {
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    }
}

@media (min-width: 768px) {
    .section-objetivos__numbers {
        align-items: start;
        flex-direction: row;
    }

    .section-objetivos__numbers::after {
        height: 70px;
        left: 0;
        top: 60px;
        transform: unset;
        width: 100%;
    }

    .section-objetivos .objetivo-box__title {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .section-objetivos .objetivo-number {
        display: flex;
        gap: 1rem;
    }

    .section-objetivos .objetivo-number__number {
        font-size: 6.25rem;
    }

    .section-objetivos .objetivo-number__text {
        text-align: start;
    }

    .section-objetivos .objetivo-number__title {
        font-size: 1.25rem;
        font-weight: var(--mwm--font-weight--semi-bold);
        margin: 0;
    }

    .section-objetivos__boxes {
        gap: 4rem;
    }

    .section-objetivos .objetivo-box {
        display: flex;
    }

    .section-objetivos .objetivo-box__media {
        height: 100%;
        width: 30%;
    }

    .section-objetivos .objetivo-box__text {
        padding: 2.5rem;
        width: 70%;
    }
}