section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 10px 0;
}
section .body_section {
    padding: 30px;
    max-width: 1330px;
    margin: 0 auto;
}
section .body_section.cards {
    padding: 0 30px;
}
section .figure {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
section .figure img {
    width: 75%;
}
section .text_section {
    text-align: justify;
    color: var(--ap-strong-blue-variation);
}
section .text_section.bg_text {
    position: relative;
    background-image: url('../img/head_bg.png');
    background-position: top center;
    background-size: cover;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    border-radius: 24px;
}
section .text_section .text_head {
    text-align: center;
    margin: 12px 0 30px 0;
}
section .text_section .text_head.h2 {
    max-width: 400px;
}
section .text_section .text_body {
    font-size: 13px;
}
section .text_section .text_body p {
    margin-bottom: 15px;
}
section .body_section .info_card {
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
    margin-bottom: 22px;
}
section .body_section.cards .info_card {
    background-color: var(--ap-base-white);
}
section .body_section.one_col_between {
    justify-content: center;
    max-width: 650px;
}
section .body_section.one_col_between.no_pad_bottom {
    padding: 0 30px;
}
section .info_card .figure {
    padding: 0;
    width: 100%;
}
section .info_card .figure img {
    width: 100%;
}
section .info_card .text_section {
    padding: 0 40px;
}
section .info_card.numeric .figure {
    justify-content: flex-start;
    align-items: flex-end;
    height: auto;
}
section .info_card.numeric .figure img {
    width: 30%;
    margin-left: 32px;
    margin-bottom: 12px;
}
section .info_card.numeric .text_body {
    font-size: 16px;
}
.center_margins {
    margin-left: auto !important;
    margin-right: auto !important;
}
section .figure.bordered img {
    border-radius: 24px;
}
section .text_section.bg_text .figure {
    padding: 0 0 30px 0;
}
section .text_section.bg_text .text_head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section .text_section.bg_text .text_body {
    width: 100%;
    max-width: 200px;
    text-align: center;
}
section .text_section.bg_text .text_body button {
    margin-top: 20px;
}
section .text_section.bg_text .figure {
    width: 100%;
    max-width: 110px;
}

button.white_button {
    font-size: 15px;
    font-weight: 600;
    color: var(--ap-medium-blue-variation);
    background-color: var(--ap-base-white);
    border: 1px solid var(--ap-base-medium-gray);
    border-radius: 38px;
    padding: 12px 32px;
    cursor: pointer;
}
section .figure.actualpacs_shadow img {
    background-color: var(--ap-base-blue-transparency);
    box-shadow: 0 0 9px 0 var(--ap-base-blue-transparency);
    border-radius: 22px;
}
section .body_section .text_section.flex_center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/** Media query para únicamente móvil */
@media only screen and (max-width: 767px) {
    section .figure.bordered {
        padding: 0 0 20px 0;
    }
    section .figure.bordered img {
        width: 98%;
    }
    section .text_section .left_align + .text_body {
        text-align: center;
    }
}

/* Media query para tablets */
@media only screen and (min-width: 768px) {
    /* Estilos específicos para tablets */
}

/* Media query para desktops pequeños */
@media only screen and (min-width: 992px) {
    /* Estilos específicos para desktops pequeños */
    .left_align {
        text-align: left !important;
    }
    .right_align {
        text-align: right !important;
    }
    section .body_section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    section .body_section.two_columns > div {
        width: 50%;
    }
    section .figure.start_justify {
        justify-content: flex-start;
    }
    section .figure.end_justify {
        justify-content: flex-end;
    }
    section .figure img {
        width: 90%;
    }
    section .body_section .info_card {
        margin: 0 10px 22px 10px;
        width: 400px;
    }
    section .body_section.one_col_between.no_pad_bottom {
        padding: 30px 30px 0 30px;
    }
    section .body_section.one_col_between .text_body {
        text-align: center;
    }
    section .info_card.numeric .figure img {
        width: 20%;
        margin-left: 36px;
    }
    section .info_card .figure {
        height: 192px;
    }
}

/* Media query para desktops grandes */
@media only screen and (min-width: 1200px) {
    /* Estilos específicos para desktops grandes */

}