/* INTRO ========================================================= */
#intro {
    padding: var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#intro .box {
    border-radius: var(--radiusV);
    padding: 80px 60px;
    padding: var(--innerPadding);
    position: relative;
    margin-top: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #fff;
    min-height: 520px;
}

#intro h1 {
    font-weight: 800;
    font-size: clamp(1.7rem, 7vw, 4.1rem);
    text-transform: uppercase;
    line-height: 1.1em;
    margin-bottom: 0.5em;
    max-width: 60%;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    color: var(--azul-2);
}

#intro p {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 1.2rem);
    line-height: 1.3em;
    /* margin-bottom: 2em; */
    max-width: 300px;
    position: relative;
    z-index: 10;
    /* text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
}

#intro p span {
    white-space: nowrap;
}

#intro picture {
    position: absolute;
    right: -45px;
    left: auto;
    height: 113%;
    bottom: 0;
    overflow: hidden;
    display: flex;
}

#intro picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 100% 100%;
}

@media screen and (max-width: 950px) {
    #intro .box {
        min-height: auto;
        padding-bottom: 0;
    }

    #intro h1 {
        max-width: 100%;
    }

    #intro p {
        max-width: 100%;
        margin-bottom: 2em;
    }

    #intro picture {
        position: relative;
        max-width: 400px;
        margin: 0 auto;
        right: 0;
    }

    #intro picture img {
        object-fit: contain;
    }
}

/* DISPOSITIVOS ========================================================= */
#devices {
    padding: 0 0 var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#devices .box {
    border-radius: var(--radiusV);
    padding: var(--innerPadding);
    padding-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #FFF;
    /* box-shadow: 0 0 12px rgba(0, 0, 0, 0.2); */
    min-height: 520px;
    margin-bottom: 100px;
}

#devices h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 7vw, 4.1rem);
    line-height: 1.1em;
    margin-bottom: 0.5em;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#devices p {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 1.3rem);
    line-height: 1.3em;
    max-width: 800px;
    position: relative;
    z-index: 10;
    margin-bottom: 3em;
}

#devices p span {
    white-space: nowrap;
}

#devices picture {
    overflow: hidden;
    display: flex;
    margin: 0 -100px -100px -100px;
}

#devices picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 100% 100%;
}

@media screen and (max-width: 1200px) {
    #devices picture {
        overflow: hidden;
        display: flex;
        margin: 0 -50px -110px -50px;
    }
}

@media screen and (max-width: 950px) {
    #devices .box {
        min-height: auto;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    #devices h1 {
        max-width: 100%;
    }

    #devices p {
        max-width: 100%;
        margin-bottom: 2em;
    }

    #devices picture {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
    }

    #devices picture img {
        object-fit: contain;
    }
}

/* PRE-CONFIGURADO ========================================================= */
#preconfigured {
    padding: 0 0 var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#preconfigured .box {
    border-radius: var(--radiusV);
    padding: var(--innerPadding);
    padding-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: var(--dorado-2);
    min-height: 690px;
    /* margin-bottom: 100px; */
}

#preconfigured h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 7vw, 4.1rem);
    line-height: 1.1em;
    margin-bottom: 0.5em;
    margin-top: 1em;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    max-width: 500px;
}

#preconfigured h2 span {
    background-color: var(--dorado-4);
    white-space: nowrap;
    padding: 0 0.4em;
    margin-left: -0.4em;
    border-radius: 0.5em;
}

#preconfigured p {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 1.3rem);
    line-height: 1.3em;
    max-width: 320px;
    position: relative;
    z-index: 10;
    margin-bottom: 3em;
}

#preconfigured p span {
    white-space: nowrap;
}

#preconfigured picture {
    position: absolute;
    right: 65px;
    left: auto;
    /* height: 112%; */
    bottom: 0;
    /* border-bottom-right-radius: 56px; */
    overflow: hidden;
    display: flex;
}

#preconfigured picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 100% 100%;
}

@media screen and (max-width: 1200px) {
    #preconfigured picture {
        overflow: hidden;
        display: flex;
        margin: 0 50px 0 -50px;
    }
}

@media screen and (max-width: 950px) {
    #preconfigured .box {
        min-height: auto;
        padding-bottom: 0;
    }

    #preconfigured h1 {
        max-width: 100%;
    }

    #preconfigured p {
        max-width: 100%;
        margin-bottom: 2em;
    }

    #preconfigured picture {
        position: relative;
        max-width: 250px;
        margin: 0 auto;
        right: 0;
    }

    #preconfigured picture img {
        object-fit: contain;
    }
}

/* ESCALABLE ========================================================= */
#scalable {
    padding: 0 0 var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#scalable .box {
    border-radius: var(--radiusV);
    padding: var(--innerPadding);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    min-height: 520px;
}

#scalable h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 7vw, 4.1rem);
    line-height: 1.1em;
    margin-bottom: 0.3em;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#scalable p {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 1.3rem);
    line-height: 1.3em;
    max-width: 800px;
    position: relative;
    z-index: 10;
    margin-bottom: 3em;
}

#scalable ul li {
    font-size: clamp(0.7rem, 3.6vw, 1.2rem);
    padding: 1.2em 1.6em;
    border-radius: var(--radiusV);
    font-weight: 600;
}

#scalable ul li:nth-child(1) {
    background-color: var(--verde-2);
}

#scalable ul li:nth-child(2) {
    background-color: var(--purpura-3);
}

#scalable ul li:nth-child(3) {
    background-color: var(--coral-2);
}

#scalable ul li:not(:last-child) {
    margin-bottom: 0.8em;
}

#scalable ul li:last-child {
    margin-bottom: 3em;
}

#scalable a {
    font-size: clamp(0.7rem, 3.6vw, 1.2rem);
    font-weight: 700;
    background-color: var(--dorado-2);
    color: var(--marino);
    padding: 0.3em 0.8em;
    border-radius: 10px;
    transition: all 0.2s;
}

#scalable a:hover {
    background-color: var(--dorado-4);
}

@media screen and (max-width: 950px) {
    #scalable .box {
        min-height: auto;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    #scalable h1 {
        max-width: 100%;
    }

    #scalable p {
        max-width: 100%;
        margin-bottom: 2em;
    }
}

/* IMPLEMENTACIÓN ========================================================= */
#implementation {
    padding: 0 0 var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#implementation .box {
    border-radius: var(--radiusV);
    padding: var(--innerPadding);
    padding-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #fff;
    overflow: hidden;
}

#implementation h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 7vw, 4.1rem);
    line-height: 1.1em;
    margin-bottom: 0.5em;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#implementation p {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 1.3rem);
    line-height: 1.3em;
    max-width: 800px;
    position: relative;
    z-index: 10;
    margin-bottom: 3em;
}

#implementation p span {
    white-space: nowrap;
}

#implementation picture {
    overflow: hidden;
    display: flex;
    margin: 0 auto;
}

#implementation picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 100% 100%;
}

@media screen and (max-width: 950px) {
    #implementation .box {
        min-height: auto;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    #implementation h1 {
        max-width: 100%;
    }

    #implementation p {
        max-width: 100%;
        margin-bottom: 2em;
    }

    #implementation picture {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
    }

    #implementation picture img {
        object-fit: contain;
    }
}

/* APRENDÉ ========================================================= */
#learn {
    padding: 0 0 var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#learn .box {
    border-radius: var(--radiusV);
    padding: var(--innerPadding);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: var(--azul-4);
    min-height: 690px;
}

#learn h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 7vw, 3.9rem);
    line-height: 1.1em;
    margin-bottom: 0.5em;
    /* margin-top: 1em; */
    position: relative;
    z-index: 10;
    /* max-width: 500px; */
    color: #fff;
}

#learn h2 span {
    background-color: var(--dorado-4);
    white-space: nowrap;
    padding: 0 0.4em;
    margin-left: -0.4em;
    border-radius: 0.5em;
}

#learn p {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 1.3rem);
    line-height: 1.3em;
    max-width: 420px;
    position: relative;
    z-index: 10;
    margin-bottom: 1em;
}

#learn p span {
    white-space: nowrap;
}

#learn picture {
    position: absolute;
    right: 0;
    left: auto;
    height: 72%;
    bottom: 0;
    /* border-bottom-right-radius: 56px; */
    overflow: hidden;
    display: flex;
}

#learn picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 100% 100%;
}

@media screen and (max-width: 1200px) {
    #learn picture {
        overflow: hidden;
        display: flex;
        margin: 0 50px 0 -50px;
    }
}

@media screen and (max-width: 950px) {
    #learn .box {
        min-height: auto;
        padding-bottom: 0;
    }

    #learn h1 {
        max-width: 100%;
    }

    #learn p {
        max-width: 100%;
        margin-bottom: 2em;
    }

    #learn picture {
        position: relative;
        max-width: 500px;
        margin: 0 auto;
        right: 0;
    }

    #learn picture img {
        object-fit: contain;
    }
}

/* COLABORATIVE ========================================================= */
#colaborative {
    padding: var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#colaborative .title {
    display: flex;
    align-items: flex-end;
}

#colaborative .title > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    height: 100%;
    width: 50%;
}

#colaborative .title h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 6vw, 3.9rem);
    line-height: 1.1em;
    z-index: 10;
    max-width: 460px;
    margin: 0 auto 0.2em auto;
    flex: 1;
}

#colaborative .title picture {
    display: flex;
    margin: 0 auto;
}

#colaborative .title picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 100% 100%;
}

#colaborative .box {
    display: flex;
    align-items: center;
    border-radius: var(--radiusV);
    padding: var(--innerPadding) 0;
    justify-content: center;
    background-color: var(--dorado-2);
    /* min-height: 690px; */
    /* margin-bottom: 100px; */
}

#colaborative .box > div {
    display: flex;
    flex-direction: column;
    /* align-items: flex-end; */
    height: 100%;
    width: 50%;
}

#colaborative .box > div:nth-child(2) {
    padding-right: var(--innerPadding);
}

#colaborative .box > div:nth-child(1) {
    align-items: center;
}

#colaborative .box > div i {
    color: var(--gris-2);
    font-size: clamp(1.7rem, 70vw, 20rem);
    line-height: 0.6em;
}

#colaborative .box > div p {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 1.2rem);
    line-height: 1.3em;
    max-width: 420px;
    position: relative;
    z-index: 10;
}

#colaborative .box > div p:not(:last-child) {
    margin-bottom: 1em;
}

@media screen and (max-width: 980px) {
    #colaborative .title {
        max-width: calc(100% - 80px);
        margin: 0 auto;
    }
}

@media screen and (max-width: 850px) {
    #colaborative .title {
        flex-direction: column;
        max-width: 100%;
    }

    #colaborative .title > div {
        height: auto;
        width: 100%;
    }

    #colaborative .title h2 {
        text-align: center;
        max-width: 100%;
    }

    #colaborative .box {
        flex-direction: column;
    }

    #colaborative .box > div i {
        margin-bottom: 0.1em;
    }

    #colaborative .box > div {
        width: 100%;
    }

    #colaborative .box > div:nth-child(2) {
        padding-left: var(--innerPadding);
    }

    #colaborative .box > div p {
        max-width: 100%;
    }
}

@media screen and (max-width: 620px) {
    #colaborative .title picture {
        max-width: calc(100% - 50px);
    }
}

/* ACOMPAÑAMIENTO ========================================================= */
#accompaniment {
    padding: 0 0 var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#accompaniment .title {
    margin: 0 auto;
    padding-left: var(--innerPadding);
}

#accompaniment h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 5vw, 4rem);
    line-height: 1.1em;
    margin-bottom: 0.5em;
    max-width: 60%;
    position: relative;
    z-index: 10;
}

#accompaniment i {
    color: var(--verde-2);
    font-size: clamp(2.7rem, 7vw, 7.1rem);
}

#accompaniment .box {
    border-radius: var(--radiusV);
    padding: 80px 60px;
    padding: var(--innerPadding);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: var(--verde-2);
}

#accompaniment p {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 1.2rem);
    line-height: 1.3em;
    max-width: calc(50% - 40px);
    position: relative;
    z-index: 10;
}

#accompaniment p:not(:last-child) {
    margin-bottom: 1em;
}

#accompaniment picture {
    position: absolute;
    right: -3%;
    left: auto;
    height: 136%;
    bottom: 0;
    overflow: hidden;
    display: flex;
}

#accompaniment picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 100% 100%;
}

@media screen and (max-width: 1200px) {
    #accompaniment picture {
        position: absolute;
        right: 0;
        left: auto;
        height: 126%;
        bottom: 0;
        overflow: hidden;
        display: flex;
    }
}

@media screen and (max-width: 950px) {
    #accompaniment .box {
        min-height: auto;
        padding-bottom: 0;
    }

    #accompaniment h1 {
        max-width: 100%;
    }

    #accompaniment p {
        max-width: 100%;
        margin-bottom: 2em;
    }

    #accompaniment picture {
        position: relative;
        max-width: 350px;
        margin: 0 auto;
    }

    #accompaniment picture img {
        object-fit: contain;
    }
}

/* APRENDÉ ========================================================= */
#learn {
    padding: 0 0 var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#learn .box {
    border-radius: var(--radiusV);
    padding: var(--innerPadding);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: var(--azul-4);
    min-height: 690px;
    /* margin-bottom: 100px; */
}

#learn h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 7vw, 3.9rem);
    line-height: 1.1em;
    margin-bottom: 0.5em;
    /* margin-top: 1em; */
    position: relative;
    z-index: 10;
    /* max-width: 500px; */
    color: #fff;
}

#learn h2 span {
    background-color: var(--dorado-4);
    white-space: nowrap;
    padding: 0 0.4em;
    margin-left: -0.4em;
    border-radius: 0.5em;
}

#learn p {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 1.3rem);
    line-height: 1.3em;
    max-width: 420px;
    position: relative;
    z-index: 10;
    margin-bottom: 1em;
}

#learn p span {
    white-space: nowrap;
}

#learn picture {
    position: absolute;
    right: 0;
    left: auto;
    height: 72%;
    bottom: 0;
    /* border-bottom-right-radius: 56px; */
    overflow: hidden;
    display: flex;
}

#learn picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 100% 100%;
}

@media screen and (max-width: 1200px) {
    #learn picture {
        overflow: hidden;
        display: flex;
        margin: 0 50px 0 -50px;
    }
}

@media screen and (max-width: 950px) {
    #learn .box {
        min-height: auto;
        padding-bottom: 0;
    }

    #learn h1 {
        max-width: 100%;
    }

    #learn p {
        max-width: 100%;
        margin-bottom: 2em;
    }

    #learn picture {
        position: relative;
        max-width: 500px;
        margin: 0 auto;
        right: 0;
    }

    #learn picture img {
        object-fit: contain;
    }
}

/* METHODOLOGY ========================================================= */
#methodology {
    padding: 0 0 var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#methodology .box {
    border-radius: var(--radiusV);
    padding: var(--innerPadding);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: var(--azul-4);
    min-height: 630px;
    overflow: hidden;
}

#methodology h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 7vw, 2.8rem);
    line-height: 1.1em;
    margin-bottom: 0.5em;
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 500px;
}

#methodology p {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 1.3rem);
    line-height: 1.3em;
    max-width: 380px;
    position: relative;
    z-index: 10;
    margin-bottom: 1em;
    color: #fff;
}

#methodology .videoWrapper {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
}

#methodology .videoWrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

@media screen and (max-width: 1200px) {
    #methodology picture {
        overflow: hidden;
        display: flex;
        margin: 0 50px 0 -50px;
    }
}

@media screen and (max-width: 800px) {
    #methodology .box {
        min-height: clamp(400px, 80vw, 630px);
    }
}

/* CRECIMIENTO ========================================================= */
#grow {
    padding: 0 0 0 0;
    background-color: var(--gris-2);
}

#grow .pageWidth {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#grow .box {
    border-radius: var(--radiusV);
    padding: var(--innerPaddingSmall);
    position: relative;
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    /* min-height: 520px; */
    height: 100%;
}

#grow .box > div {
    display: flex;
    flex-direction: column;
}

#grow .box i {
    font-size: clamp(2.7rem, 7vw, 7.1rem);
    margin-right: 0.21em;
    text-align: center;
    /* line-height: .6em; */
}

#grow .box:nth-child(1) i {
    color: var(--verde-2);
}

#grow .box:nth-child(2) i {
    color: var(--azul-2);
}

#grow .box:nth-child(3) i {
    color: var(--coral-2);
}

#grow .box:nth-child(4) i {
    color: var(--dorado-2);
}

#grow h2 {
    font-weight: 600;
    font-size: clamp(0.7rem, 6vw, 1.5rem);
    line-height: 1.1em;
    margin: 0 auto 1.8em auto;
    position: relative;
    text-align: center;
    max-width: 800px;
}

#grow h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: clamp(0.7rem, 3.6vw, 1rem);
    line-height: 1.3em;
    position: relative;
    z-index: 10;
    margin-bottom: 0.3em;
}

#grow h3 span {
    text-transform: none;
}

#grow p {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 0.8rem);
    line-height: 1.3em;
    max-width: 800px;
    position: relative;
    z-index: 10;
}

#grow p:not(:last-child) {
    margin-bottom: 1em;
}

#grow ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

#grow ul li {
    font-size: clamp(0.7rem, 3.6vw, 1.2rem);
    padding: 1.2em 1.6em;
    border-radius: var(--radiusV);
    font-weight: 600;
}

#grow a {
    font-size: clamp(0.7rem, 3.6vw, 1.2rem);
    font-weight: 700;
    background-color: var(--dorado-2);
    color: var(--marino);
    padding: 0.3em 0.8em;
    border-radius: 10px;
    transition: all 0.2s;
    margin: 0 auto;
    display: inline-block;
}

#grow a:hover {
    background-color: var(--dorado-4);
}

@media screen and (max-width: 850px) {
    #grow ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 850px) {
    #grow .box {
        flex-direction: column;
    }

    #grow .box i {
        margin-bottom: 0.21em;
    }
}

/* COMPARACIÓN ========================================================= */
#comparison {
    padding: var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#comparison .pageWidth {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#comparison h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 5vw, 4rem);
    text-align: center;
    margin: 0 auto 1em auto;
    max-width: 931px;
}

#comparison .flexible {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 1.2rem);
    line-height: 1.3em;
    max-width: 800px;
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 4em;
}

#comparison .box {
    border-radius: var(--radiusV);
    padding: var(--innerPaddingSmall);
    position: relative;
    background-color: #fff;
    height: 100%;
}

#comparison .box .header, #comparison .box .row:not(.type) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

#comparison .box .row:not(.type) .cell {
    background-color: var(--gris-2);
    padding: 1em 4em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#comparison .box .row:not(.type) .cell:not(:first-child) {
    border-left: 1px solid var(--gris-5);
}

#comparison .box .row:not(.type) .cell p {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 0.8rem);
}

#comparison .box .row:not(.type) .cell h3 {
    display: none;
}

#comparison .box .header .cell {
    display: flex;
    justify-content: center;
}

#comparison .box .header .cell h3 {
    border-radius: 1em;
    text-align: center;
    padding: 0.1em 1em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: clamp(0.7rem, 6vw, 1.5rem);
    margin-bottom: 0.5em;
}

#comparison .box .header .cell:nth-child(1) h3 {
    background-color: var(--verde-2);
}

#comparison .box .header .cell:nth-child(0) h3 {
    background-color: var(--purpura-3);
}

#comparison .box .header .cell:nth-child(2) h3 {
    background-color: var(--coral-2);
}

#comparison .box .row:not(.type) .cell:first-child {
    border-top-left-radius: 1em;
    border-bottom-left-radius: 1em;
}

#comparison .box .row:not(.type) .cell:last-child {
    border-top-right-radius: 1em;
    border-bottom-right-radius: 1em;
}

#comparison .box .row.type p {
    text-align: center;
    font-weight: 700;
    font-size: clamp(0.9rem, 3.6vw, 1rem);
    margin: 1em 0 0.4em 0;
}

@media screen and (max-width: 850px) {
    #comparison .box .row:not(.type) .cell {
        padding: 1em 2em;
    }
}

@media screen and (max-width: 680px) {
    #comparison .box .header {
        display: none !important;
    }

    #comparison .box .row.type p {
        margin-left: auto;
        margin-right: auto;
    }

    #comparison .box .header, #comparison .box .row:not(.type) {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    #comparison .box .row.type:nth-child(1) p {
        margin-top: 0;
    }

    #comparison .box .row:not(.type) .cell {
        border-left: none;
        display: block;
    }

    #comparison .box .row:not(.type) .cell:nth-child(2) {
        padding: 0 0 1em;
    }

    #comparison .box .row:not(.type) .cell:first-child {
        border-top-left-radius: 1em;
        border-bottom-left-radius: 0;
        border-top-right-radius: 1em;
    }

    #comparison .box .row:not(.type) .cell:last-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 1em;
        border-bottom-left-radius: 1em;
    }

    #comparison .box .row:not(.type) .cell p {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Titulos mobile */
    #comparison .box .row:not(.type) .cell h3 {
        display: inline-block;
        font-size: clamp(0.7rem, 3.6vw, 0.7rem);
        border-radius: 1em;
        padding: 0.1em 1em;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 0.5em;
    }

    #comparison .box .row:not(.type) .cell:nth-child(1) h3 {
        background-color: var(--verde-2);
    }

    #comparison .box .row:not(.type) .cell:nth-child(0) h3 {
        background-color: var(--purpura-3);
    }

    #comparison .box .row:not(.type) .cell:nth-child(2) h3 {
        background-color: var(--coral-2);
    }
}

@media screen and (max-width: 450px) {
    #comparison {
        padding: var(--paddingMedium) 0;
    }
}

/* PLANS ========================================================= */
#plans {
    padding: 0 0 var(--paddingMedium) 0;
    background-color: var(--gris-2);
    overflow: hidden;
}

#plans .box {
    border-radius: var(--radiusV);
    padding: var(--innerPadding);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #fff;
    overflow: hidden;
    width: 100%;
    /* min-height: 500px; */
}

#plans .pageWidth {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#plans .innerBox {
    z-index: 10;
    position: relative;
    background-color: rgba(255, 255, 255, 0.85);
    max-width: 450px;
    border-radius: var(--radiusV);
    padding: var(--innerPadding);
}

#plans h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 5vw, 4rem);
    /* text-align: center; */
    margin: 0 auto .4em auto;
    max-width: 931px;
}

#plans p {
    font-weight: 600;
    font-size: clamp(0.7rem, 3.6vw, 1.2rem);
    line-height: 1.3em;
    position: relative;
    z-index: 10;
}

#plans picture {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    z-index: 0;
}

#plans picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 75%;
}

@media screen and (max-width: 850px) {
    #plans .innerBox {
        max-width: 100%;
        margin-bottom: 25em;
    }
}

@media screen and (max-width: 550px) {
    #plans .innerBox {
        margin-bottom: 20em;
    }
}

@media screen and (max-width: 400px) {
    #plans .innerBox {
        margin-bottom: 17em;
    }
}
