/* ==========================================================================
   Base & Reset
   ========================================================================== */
:root {
    --color-purple: #69299B;
    --color-dark-blue: #292F99;
    --color-light-blue: #61A7D2;
    --color-text: #102065;
    --font-heading: "Konkhmer Sleokchher";
    --font-body: "Gothic A1";
    --border-radius-large: 54px;
    --border-radius-medium: 36px;
    --border-radius-small: 30px;
    --spacing-standard: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    text-align: center;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    font-size: 36px;
    color: var(--color-dark-blue);
}

.h1--hero {
    margin-bottom: 18px;
    max-width: 390px;
}

.h1--about {
    font-size: 32px;
    text-transform: uppercase;
}

.h1--join {
    margin-bottom: 50px;
}

h2 {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 24px;
    color: var(--color-dark-blue);
    margin-bottom: 35px;
    margin-top: 25px;
    line-height: 30px;
}


/* ==========================================================================
   Layout & Background
   ========================================================================== */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    z-index: -1;
}

/* SVG background element */
.background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1860px;
    height: 1838px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1860 1838'%3E%3Cpath d='M733 1854C1246.62 1854 1663 1442.55 1663 935C1663 427.45 1246.62 16 733 16C219.375 16 -197 427.45 -197 935C-197 1442.55 219.375 1854 733 1854Z' fill='url(%23paint0_radial_11_91)'/%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_11_91' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(732.921 935.033) rotate(23.2517) scale(928.26 920.723)'%3E%3Cstop offset='0.25' stop-color='%2369299B'/%3E%3Cstop offset='0.4' stop-color='%23432C99'/%3E%3Cstop offset='0.5' stop-color='%23292F99'/%3E%3Cstop offset='0.54' stop-color='%232A389D'/%3E%3Cstop offset='0.6' stop-color='%232D50A8'/%3E%3Cstop offset='0.68' stop-color='%233278BB'/%3E%3Cstop offset='0.72' stop-color='%23368FC6'/%3E%3Cstop offset='0.76' stop-color='%2361A7D2'/%3E%3Cstop offset='0.8' stop-color='%2390C1DF'/%3E%3Cstop offset='0.84' stop-color='%23B8D7EA'/%3E%3Cstop offset='0.88' stop-color='%23D7E8F3'/%3E%3Cstop offset='0.93' stop-color='%23EDF5F9'/%3E%3Cstop offset='0.96' stop-color='%23FAFCFD'/%3E%3Cstop offset='1' stop-color='white'/%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    opacity: 0.43;
}

.background .left-arrow {
    position: absolute;
    left: -376px;
    top: 628px;
}

.background .right-arrow {
    position: absolute;
    left: 151px;
    top: 1899px;
}

.background__ellipse {
    display: none;
}


/* ==========================================================================
   Navigation
   ========================================================================== */
nav {
    width: 100%;
    padding-top: 53px;
    position: relative;
    text-align: left;
}

.logo-container {
    margin-left: 34px;
}

.logo-container img {
    height: 58px;
}

.mobile-menu-button {
    position: absolute;
    top: 52px;
    right: 36px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.menu-icon,
.menu-icon--close {
    display: block;
}

.hidden {
    display: none;
}

.nav-menu {
    z-index: 2;
    position: absolute;
    top: 112px;
    width: 85%;
    right: 36px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    border-radius: 8px 0px 8px 8px;
    background: #FFF;
    box-shadow: 0px 70px 100px 0px rgba(0, 0, 0, 0.13);
}

.nav-menu.open {
    max-height: 250px;
}

.nav-menu__list {
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
}

.nav-menu__list div {
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
}

.nav-menu__list a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 10.7px;
}

main {
    position: relative;
}

.hero {
    padding: 0 34px;
    margin-top: 66px;
    text-align: left;
}

.purple {
    color: var(--color-purple);
}

.blue {
    color: var(--color-dark-blue);
}

.light-blue {
    color: var(--color-light-blue);
}

.hero p {
    line-height: 1.4;
}

.info-box {
    padding: 40px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.info-box__facts {
    width: 331.56px;
    min-width: 331.56px;
    height: 388px;
    border-radius: var(--border-radius-large);
    transform: rotate(2.05deg);
    margin: 40px auto 0;
    /* Centers the container horizontally */
    background: #FFFFFF;
    box-shadow: -25px 20px 0px rgba(255, 255, 255, 0.3);

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 20px;
}

.info-box__info-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-box__number {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-dark-blue);
}

.info-box__text {
    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--color-text);
}


.about--mobile {
    text-align: center;
    margin-top: 18px;
    margin-left: 32px;
    margin-right: 32px;
    display: block;
}

.about--mobile img {
    border-radius: var(--border-radius-medium);
    border: 3px solid #263167;
    transform: rotate(-7.65deg);
    width: 289px;
}

.about--mobile .about__text-content {
    text-align: right;
}

.about--mobile .about__heading {
    margin-top: 71px;
    margin-bottom: 55px;
}

.about--mobile .about__text-content p {
    margin-bottom: 18px;
}

/* Desktop version - hidden by default */
.about--desktop {
    display: none;
    position: relative;
    margin-top: 18px;
    overflow: hidden;
}


.join-us {
    font-weight: 500;
    line-height: 24.84px;
    margin: 135px 25px 100px 25px;
}

.job-block {
    border-radius: var(--border-radius-small);
    background: linear-gradient(94deg, var(--color-text) 10.32%, var(--color-purple) 103.68%);
    text-align: left;
    padding: 22px 29px;
    color: #FFF;
    font-size: 15px;
    font-weight: 300;
    line-height: normal;
    margin-top: 107px
}

.job-block__title {
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 900;
}

.job-block__stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 46px;
}

.job-block__stat {
    font-size: 16px;
    font-weight: 900;
}

.job-block__stat img {
    margin-right: 14px;
    transform: translateY(6px);
}

.job-block button {
    margin-top: 10px;
}

.job-block .more {
    margin-top: 80px;
    display: flex;
    justify-content: flex-end;
}

.job-block .more button {
    background: transparent;
    color: white;
    border-radius: 12px;
    border: 2px solid white;
    padding: 10px 12px;
    cursor: pointer;
}

.job-post {
    font-size: 15px;
    line-height: 1.5;
}

footer {
    font-size: 11px;
    margin: 15px 0 15px 20px;
    text-align: left;
}

/* Responsive breakpoints */
@media screen and (min-width: 769px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 64px;
    }

    .h1--hero {
        margin-bottom: 18px;
        max-width: 600px;
    }

    .h1--join {
        margin-bottom: 50px;
        font-size: 48px;
    }

    h2 {
        font-size: 30px;
        line-height: normal;
    }

    .background .left-arrow {
        left: -282px;
    }

    .background .right-arrow {
        left: 375px;
        top: 1761px;
        width: 671px;
    }

    .mobile-menu-button {
        display: none;
    }

    .nav-menu {
        position: static;
        max-height: none;
        width: auto;
        box-shadow: none;
        background: none;
        overflow: visible;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 53px 34px 0;
    }

    .logo-container {
        margin-left: 0;
    }

    .nav-menu__list {
        flex-direction: row;
        padding: 0;
        gap: 32px;
    }

    .nav-menu__list div {
        padding: 0;
        white-space: nowrap;
    }

    .nav-menu__list a {
        line-height: normal;
        font-size: 16px;
        font-weight: 500;
    }

    .nav-menu__list div.nav-menu__unete a {
        border-radius: 12px;
        border: 2px solid #102065;
        padding: 12px 38px;
    }

    .hero {
        padding: 0 45px;
    }

    .hero p {
        width: 403px;
    }

    .info-box {
        padding: 0;
    }

    .info-box__facts {
        width: 536px;
        min-width: 536px;
        height: 626px;
        transform: rotate(6.47deg);
        box-shadow: -46px 35px 0px rgba(255, 255, 255, 0.3);
        padding: 37px;
        margin-right: 82px;
    }

    .info-box__info-row {
        gap: 34px;
    }

    .info-box__number {
        font-size: 36px;
    }

    .info-box__text {
        font-size: 15px;
    }

    .about--mobile {
        display: none;
    }

    .about--desktop {
        display: block;
        position: relative;
        padding-right: 32px;
        margin-top: 47px;
        overflow: visible;
    }

    .about--desktop .about__container {
        position: relative;
        margin-left: calc(-1 * (500px + 125px - (100vw - 36vw - 32px)));
        display: flow-root;
    }

    .about__wrapper {
        width: 700px;
        height: 736px;
        float: left;
        shape-outside: polygon(0 0, 84% 0, 96% 94%, 0 100%);
    }

    .about--desktop img {
        width: 500px;
        margin-right: 50px;
        margin-bottom: 25px;
        border-radius: var(--border-radius-medium);
	border: 4px solid #263167;
        transform: rotate(-7.65deg);
    }

    .about--desktop .about__text-content {
        text-align: right;
    }

    .about--desktop .about__heading {
        margin-bottom: 55px;
        margin-top: 50px;
    }

    .about--desktop .about__text-content p {
        margin-bottom: 18px;
    }

    /* Clear the floats after the container */
    .about--desktop .about__container::after {
        content: '';
        display: table;
        clear: both;
    }

    .join-us {
        margin: 157px 48px 100px 48px;
    }

    .job-block {
        margin-top: 63px;
        font-size: 16px;
        margin-bottom: 95px;
    }

    .job-block__stats {
        flex-direction: row;
        gap: 50px;
    }

    .job-block .more button {
        padding: 10px 43px;
    }

    .job-post {
        font-size: 16px;
    }
}

@media screen and (min-width: 1025px) {
    :root {
        --main-max-width: 1634;
        --breakpoint-start: 1025;
        --position-at-breakpoint: -1306;
        --position-at-main-max: -234;

        --total-position-change: calc(var(--position-at-main-max) - var(--position-at-breakpoint));
        --width-range: calc(var(--main-max-width) - var(--breakpoint-start));

        --first-phase: calc(var(--position-at-breakpoint) * 1px + (100vw - var(--breakpoint-start) * 1px) * var(--total-position-change) / var(--width-range));
        --first-phase-clamped: clamp(var(--position-at-breakpoint) * 1px,
                var(--first-phase),
                var(--position-at-main-max) * 1px);

        --second-phase: clamp(0px,
                calc(0.5 * (100vw - var(--main-max-width) * 1px)),
                99999px);

        --bg-position-left: calc(var(--first-phase-clamped) + var(--second-phase));
    }

    body {
        font-size: 20px;
    }

    .background::before {
        content: '';
        position: absolute;
        left: var(--bg-position-left);
        top: -22px;
        width: 3127px;
        height: 2885px;
        background-image: url("data:image/svg+xml,%3Csvg%20width%3D%223129%22%20height%3D%222887%22%20viewBox%3D%220%200%203129%202887%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1564.17%202886.1C2427.91%202886.1%203128.1%202240.17%203128.1%201443.37C3128.1%20646.575%202427.91%200.643799%201564.17%200.643799C700.428%200.643799%200.229492%20646.575%200.229492%201443.37C0.229492%202240.17%20700.428%202886.1%201564.17%202886.1Z%22%20fill%3D%22url(%23paint0_radial_81_328)%22%2F%3E%3Cdefs%3E%3CradialGradient%20id%3D%22paint0_radial_81_328%22%20cx%3D%220%22%20cy%3D%220%22%20r%3D%221%22%20gradientUnits%3D%22userSpaceOnUse%22%20gradientTransform%3D%22translate(1564.03%201443.42)%20rotate(21.8564)%20scale(1545.3%201460.13)%22%3E%3Cstop%20offset%3D%220.25%22%20stop-color%3D%22%2369299B%22%2F%3E%3Cstop%20offset%3D%220.4%22%20stop-color%3D%22%23432C99%22%2F%3E%3Cstop%20offset%3D%220.5%22%20stop-color%3D%22%23292F99%22%2F%3E%3Cstop%20offset%3D%220.54%22%20stop-color%3D%22%232A389D%22%2F%3E%3Cstop%20offset%3D%220.6%22%20stop-color%3D%22%232D50A8%22%2F%3E%3Cstop%20offset%3D%220.68%22%20stop-color%3D%22%233278BB%22%2F%3E%3Cstop%20offset%3D%220.72%22%20stop-color%3D%22%23368FC6%22%2F%3E%3Cstop%20offset%3D%220.76%22%20stop-color%3D%22%2361A7D2%22%2F%3E%3Cstop%20offset%3D%220.8%22%20stop-color%3D%22%2390C1DF%22%2F%3E%3Cstop%20offset%3D%220.84%22%20stop-color%3D%22%23B8D7EA%22%2F%3E%3Cstop%20offset%3D%220.88%22%20stop-color%3D%22%23D7E8F3%22%2F%3E%3Cstop%20offset%3D%220.93%22%20stop-color%3D%22%23EDF5F9%22%2F%3E%3Cstop%20offset%3D%220.96%22%20stop-color%3D%22%23FAFCFD%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22white%22%2F%3E%3C%2FradialGradient%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-position: center;
        pointer-events: none;
        opacity: 0.43;
    }

    .background .left-arrow {
        left: calc(50vw - 1201px);
        top: 495px;
        width: 999px;
    }

    .background .right-arrow {
        left: calc(50vw + 476px);
        top: 1804px;
        width: 939px;
    }

    .background__ellipse {
        position: absolute;
        left: calc(50vw - 2409px);
        top: 1899px;
        display: block;
    }

    nav {
        padding: clamp(40px, calc((100vw - 1025px) * (61 - 40) / (1634 - 1025)) + 40px, 61px) calc((100vw - 1024px)*(313 - 40) /(2560 - 1024) + 40px);
    }

    .nav-menu__list {
        gap: 46px;
    }

    .nav-menu__list a {
        font-size: 20px;
    }

    .nav-menu__list div.nav-menu__unete a {
        padding: 17px 50px;
    }

    .logo-container img {
        height: 72px;
    }

    main {
        position: relative;
        max-width: calc(var(--main-max-width) * 1px);
        margin-left: auto;
        margin-right: auto;
    }

    .hero {
        padding: 0 70px;
        margin-top: clamp(-17px, calc((100vw - 1025px) * (42 - -17) / (1634 - 1025) + -17px), 42px);
    }

    .h1--hero {
        margin-bottom: clamp(15px, calc((100vw - 1025px) * (33 - 15) / (1634 - 1025) + 15px), 33px);
        line-height: 1.25;
    }

    .hero p {
        width: 503px;
    }

    .info-box {
        margin-top: clamp(-380px, calc((100vw - 1300px)*(-380 - 36) /(1634 - 1300) + 36px), 36px);
    }

    .info-box__facts {
        --info-width: clamp(636px, calc((100vw - 1300px)*(760 - 636) /(1634 - 1300) + 636px), 760px);
        width: var(--info-width);
        min-width: var(--info-width);
        height: clamp(720px, calc((100vw - 1300px)*(860 - 720) /(1634 - 1300) + 720px), 860px);
        margin-right: 119px;
        padding: 45px;
    }

    .info-box__number {
        font-size: 48px;
    }

    .info-box__text {
        font-size: 20px;
    }

    .about--desktop {
        padding-right: 70px;
    }

    .about--desktop .about__container {
        margin-left: clamp(-163px, calc(-1 * (540px + 209px - (100vw - 36vw - 70px))), 55px);
    }

    .about__wrapper {
        width: clamp(700px, calc((100vw - 1300px)*(900 - 700) /(1634 - 1300) + 700px), 900px);
        height: clamp(800px, calc((100vw - 1300px)*(1000 - 800) /(1634 - 1300) + 800px), 1000px);
        shape-outside: polygon(0 0, 86% 0, 96% 93%, 0 100%);
        margin-top: clamp(-139px, calc((100vw - 1432px)*(-139 - 17) /(1634 - 1432) + 17px), 17px);
    }

    .about--desktop img {
        width: clamp(540px, calc((100vw - 1300px)*(690 - 540) /(1634 - 1300) + 540px), 690px);
        margin-right: clamp(50px, calc((100vw - 1300px)*(200 - 50) /(1634 - 1300) + 50px), 200px);
    }

    .h1--about {
        font-size: 40px;
    }

    .join-us {
        margin: clamp(8px, calc((100vw - 1432px)*(188 - 8) /(1634 - 1432) + 8px), 118px) auto 100px auto;
        line-height: 1.6;
        max-width: 1400px;
    }

    .join-us__inner {
        margin-left: 40px;
        margin-right: 40px;
    }

    .h1--join {
        margin-bottom: 29px;
        font-size: 40px;
    }

    .job-block {
        margin-top: 75px;
        font-size: 20px;
        margin-bottom: 66px;
    }

    .job-block .more {
        margin-top: 51px;
    }

    .job-block .more button {
        padding: 8px 53px;
        font-size: 20px;
        font-family: 'Gothic A1';
        font-weight: 300;
    }

    h2 {
        font-size: 40px;
        line-height: 1.8;
        font-weight: 400;
        font-family: var(--font-heading);
        margin-bottom: 8px;
    }

    .job-post {
        font-size: 20px;
        font-weight: 400;
    }
}



.background-p2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 16px);
    min-height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.background-p2::before {
    content: '';
    position: absolute;
    --fondo-size: calc((100vw - 0px)* 1913 / 1025);
    top: calc(1146px - var(--fondo-size) / 2);
    left: calc(50vw + 218px - var(--fondo-size) / 2);
    width: 10913px;
    height: 10913px;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%221913%22%20height%3D%221919%22%20viewBox%3D%220%200%201913%201919%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M956.5%201919C1484.76%201919%201913%201489.42%201913%20959.5C1913%20429.583%201484.76%200%20956.5%200C428.24%200%200%20429.583%200%20959.5C0%201489.42%20428.24%201919%20956.5%201919Z%22%20fill%3D%22url(%23paint0_radial_125_818)%22%20fill-opacity%3D%220.93%22%2F%3E%3Cdefs%3E%3CradialGradient%20id%3D%22paint0_radial_125_818%22%20cx%3D%220%22%20cy%3D%220%22%20r%3D%221%22%20gradientUnits%3D%22userSpaceOnUse%22%20gradientTransform%3D%22translate(956.419%20959.534)%20rotate(23.5657)%20scale(956.978%20959.021)%22%3E%3Cstop%20offset%3D%220.25%22%20stop-color%3D%22%2369299B%22%2F%3E%3Cstop%20offset%3D%220.4%22%20stop-color%3D%22%23432C99%22%2F%3E%3Cstop%20offset%3D%220.5%22%20stop-color%3D%22%23292F99%22%2F%3E%3Cstop%20offset%3D%220.54%22%20stop-color%3D%22%232A389D%22%2F%3E%3Cstop%20offset%3D%220.6%22%20stop-color%3D%22%232D50A8%22%2F%3E%3Cstop%20offset%3D%220.68%22%20stop-color%3D%22%233278BB%22%2F%3E%3Cstop%20offset%3D%220.72%22%20stop-color%3D%22%23368FC6%22%2F%3E%3Cstop%20offset%3D%220.76%22%20stop-color%3D%22%2361A7D2%22%2F%3E%3Cstop%20offset%3D%220.8%22%20stop-color%3D%22%2390C1DF%22%2F%3E%3Cstop%20offset%3D%220.84%22%20stop-color%3D%22%23B8D7EA%22%2F%3E%3Cstop%20offset%3D%220.88%22%20stop-color%3D%22%23D7E8F3%22%2F%3E%3Cstop%20offset%3D%220.93%22%20stop-color%3D%22%23EDF5F9%22%2F%3E%3Cstop%20offset%3D%220.96%22%20stop-color%3D%22%23FAFCFD%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22white%22%2F%3E%3C%2FradialGradient%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: var(--fondo-size);
    pointer-events: none;
    opacity: 0.43;
}

span.q {
    font-family: var(--font-body);
    font-weight: 900;
}

.p2-layout {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    line-height: 1.77;
}

nav.p2 {
    padding: 0;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

nav.p2 .logo-container {
    margin-left: 0;
}

nav.p2 .logo-container img {
    height: 53px;
}

nav.p2 .mobile-menu-button {
    top: 0;
    right: 0;
}

nav.p2 .nav-menu {
    top: 60px;
    right: 0;
}

nav.p2 .nav-menu.open {
    max-height: 250px;;
}

nav.p2 .nav-menu__list a {
    font-size: 14px;
}

nav.p2 .nav-menu__list div.nav-menu__unete a {
    padding: 11px 40px;
}

.p2-layout {
    font-size: 14px;
}

.p2-layout h1 {
    font-size: 32px;
    padding: 12px 0;
}

.p2-layout h1.rol {
    color: var(--color-text);
}

.p2-layout .h1--hero {
    margin-bottom: 0;
    max-width: unset;
    margin-top: 0;
    padding: 20px 18px;
    text-align: center;
    line-height: 1.26;
    color: var(--color-text);
}

.p2-layout .inner {
    padding: 16px;
    text-align: left;
    line-height: 1.42;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.p2-layout .inner.center {
    text-align: center;
    line-height: 1.77;
}

.caja {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 26px 35px;
    text-align: center;
    line-height: 1.77;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.caja--group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.caja--list {
    text-align: left;;
}

.caja.ofrecemos {
    color: white;
    background: linear-gradient(94deg, var(--color-text) 10.32%, var(--color-purple) 103.68%);
}

.caja.ofrecemos h1 {
    color: white;
    padding: 0;
}

ul {
    padding-left: 1.5em;
    line-height: 1.73;
    text-align: left;
  }
      
  ::marker {
    font-size: 90%;
  }

h3 {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    margin-bottom: -4px;
    margin-top: -2px;
}
