.home .main-home {
    background: var(--color-white);
    margin: 0;
}

.home .sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.1s ease-in-out;
    -webkit-transition: top 0.1s ease-in-out;
    -moz-transition: top 0.1s ease-in-out;
    -ms-transition: top 0.1s ease-in-out;
    -o-transition: top 0.1s ease-in-out;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.1s ease-in-out;
    -webkit-transition: top 0.1s ease-in-out;
    -moz-transition: top 0.1s ease-in-out;
    -ms-transition: top 0.1s ease-in-out;
    -o-transition: top 0.1s ease-in-out;
}

.home__header-section {
    display: flex;
    width: 100%;
    height: 40px;
    padding: 8px 112px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--color-black);
    position: sticky;
    top: 0;
    z-index: 201;
    display: none;

    & .home__header-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;

        & .text {

            /* Tag - Small */
            font-family: var(--font-family-primary);
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 110%;
            /* 15.4px */
            letter-spacing: 0.56px;
            text-transform: uppercase;
            background: var(--gradient-yellow-color);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        & .link {
            color: var(--color-white);
            /*Tag-Small*/
            font-family: var(--font-family-primary);
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 110%;
            /*15.4px*/
            letter-spacing: 0.56px;
            text-transform: uppercase;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease, transform 0.2s ease;

            -webkit-transition: all 0.3s ease, transform 0.2s ease;
            -moz-transition: all 0.3s ease, transform 0.2s ease;
            -ms-transition: all 0.3s ease, transform 0.2s ease;
            -o-transition: all 0.3s ease, transform 0.2s ease;

            & span {
                height: 15px;
                width: 15px;
                display: flex;
                justify-content: center;
                align-items: center;
                margin-left: 5px;
                transition: all 0.3s ease, transform 0.2s ease;

                & svg {
                    height: 15px;
                    width: 15px;
                }
            }

            &:hover {
                & span {
                    margin-left: 8px;
                }
            }
        }
    }
}

.home__hero-header {
    display: flex;
    width: 100%;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 73px;
    background: var(--GC-MainGradient, linear-gradient(42deg, #25C3C1 4.8%, #377EF7 98.12%));
    position: sticky;
    top: 0;
    z-index: -10;
    height: calc(100vh - 120px);

    & .home__hero-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 90px;
        background-image: url(../img/background-10.png);
        background-repeat: no-repeat;
        height: 100%;
        width: 100%;
        background-size: contain;
        background-position: top center;

        & .home__hero-titles {
            display: flex;
            width: 1140px;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;

            & .logo-img {
                width: 300px;
                height: auto;
                margin-bottom: 24px;
            }

            & h1.h1-title {
                color: var(--color-white);
                text-align: left;
                max-width: 776px;
                width: 100%;
            }

            p.txt-subtitle {
                color: var(--color-white-gc);
                max-width: 624px;
                width: 100%;

                & strong {
                    font-family: var(--font-family-primary);
                    font-size: 22px;
                    font-style: italic;
                    font-weight: 700;
                    line-height: 130%;
                    /* 28.6px */
                    letter-spacing: 0.22px;
                }
            }

        }

        & .btn-container {
            margin-top: 0;
            display: flex;
            width: 1140px;
            flex-direction: column;
            align-items: flex-start;


        }
    }

    & canvas {
        position: absolute;
        z-index: -100;
    }
}

@media (max-width: 1280px) {
    .home__hero-header {
        & .home__hero-container {
            & .home__hero-titles {
                display: flex;
                width: 992px;
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            & .btn-container {
                width: 992px;
            }
        }
    }
}


@media (max-width: 1024px) {
    .home .sticky {
        top: 0;
    }

    .home__header-section {
        padding: 8px 40px;
        /* Reduce el padding en tablets */
    }

    .home__hero-header {
        padding: 0px;
        /* Reduce el espacio vertical */
        gap: 50px;

        & .home__hero-container {
            gap: 40px;
            /* Reduce el espacio entre elementos */

            & .home__hero-titles {
                width: 100%;
                max-width: 760px;
                /* Reduce el ancho en pantallas medianas */

                & h1.h1-title {
                    max-width: 660px;
                }
            }

            & .btn-container {
                width: 100%;
                max-width: 760px;
            }

        }
    }
}


@media (max-width: 768px) {

    .home__header-section {
        height: auto;
        flex-direction: column;
        padding: 8px 20px;
        /* Reduce aún más el padding */
        text-align: center;

        & .home__header-container {
            flex-direction: column;
            gap: 5px;

            & .hero-content-left {
                align-items: center;

                & p.hero-version {
                    text-align: center;
                }

                & h1.h1-title {
                    text-align: center;
                }
            }


        }
    }

    .home__hero-header {
        padding: 0px;
        /* Reduce más el padding */
        gap: 45px;
        top: 0;
        height: calc(100vh - 220px);
        max-height: 522px;

        & .home__hero-container {
            background-image: url(../img/background-10-mobile.png);
            background-position: top right;

            & .home__hero-titles {
                max-width: 80%;

                & h2.h2-title {
                    max-width: 440px;
                }

                p.txt-subtitle {
                    color: var(--color-white);

                    & strong {
                        font-size: 14px;
                    }
                }
            }

            & .btn-container {
                max-width: 80%;

            }
        }
    }
}

@media (max-width: 480px) {
    .home__header-section {
        padding: 5px 15px;
        /* Ajuste extra para móviles */
    }

    .home__hero-header {
        padding: 0px;
        /* Reduce más el padding */
        gap: 30px;

        & .home__hero-container {
            & .home__hero-titles {

                & .logo-img {
                    width: auto;
                    height: 32px;
                    margin: 0;
                }

                & h1.h1-title {
                    width: 267px;
                    margin: 0;
                }

                & p.txt-subtitle {
                    width: 267px;
                    margin: 0;
                    /* Párrafo más pequeño */
                }
            }

            & .btn-container {
                width: 100%;
            }
        }
    }
}

.carousel__section {
    & .carousel__container {
        padding: 128px 0 56px 0;

        & .carousel__title {
            & h3.tag-small {
                color: var(--color-gray);
                text-align: center;
                text-transform: uppercase;

            }
        }
    }

    .carousel__logos {
        width: auto;
        margin: 24px 50px 50px;
    }

    .slick-slide {
        background: none;
        color: var(--color-white);
        padding: 40px 0;
        font-size: 30px;
        font-family: "Arial", "Helvetica";
        text-align: center;

        & .section__content-image {
            max-height: 70px;
            display: flex;
            justify-content: center;
            align-items: center;

            & img {
                max-height: 120px;
            }
        }
    }

    .slick-prev:before,
    .slick-next:before {
        color: none;
        display: none;
    }

    .slick-dots {
        bottom: -30px;
    }

    .slick-slide:nth-child(odd) {
        background: none;
    }

}

@media (max-width: 1024px) {
    .carousel__container {
        margin-bottom: 100px;
        /* Reduce el margen inferior */

        & .carousel__title {
            width: 100%;
            max-width: calc(100% - 2rem);
            display: flex;
            justify-content: center;
            margin: 0 auto;

            & h3.tag-small {
                /* Reduce el tamaño del título */
                max-width: 500px;
            }
        }

        & .carousel__logos {
            margin: 50px 30px 40px;
            /* Reduce los márgenes laterales */
        }
    }





    .slick-slide {
        padding: 30px 0;
        /* Reduce el padding del slide */
        font-size: 26px;
        /* Reduce el tamaño del texto */
    }
}

@media (max-width: 768px) {

    .carousel__section {
        & .carousel__container {
            margin-bottom: 0;
            padding: 42px 0 0;

            & .carousel__container {
                display: flex;
                width: 100%;
                justify-content: center;
                max-width: calc(100% - 2rem);
                align-items: center;
                margin: 0 auto;

                & h3 {
                    max-width: 400px;
                }
            }

            & .carousel__logos {
                margin: 40px 20px 30px;
            }
        }
    }

    .carousel__section {
        & .carousel__container {
            & .carousel__title {
                width: 100%;
                max-width: calc(100% - 2rem);
                display: flex;
                justify-content: center;
            }
        }
    }

    .slick-slide {
        padding: 25px 0;
        font-size: 22px;
    }

    .slick-dots {
        bottom: -20px;
        /* Ajusta la posición de los dots */
    }
}

@media (max-width: 480px) {

    .carousel__section {
        margin-bottom: 0;

        & .carousel__container {

            & .carousel__title {
                & .carousel__title h3.tag-small {
                    /* Reduce más el título */
                    max-width: 90%;
                }
            }
        }

        & .carousel__logos-container {
            .carousel__logos {
                margin: 30px 10px 20px;
            }
        }
    }



    .carousel__logos {
        margin: 30px 10px 20px;
    }

    .slick-slide {
        padding: 20px 0;
        font-size: 18px;
        /* Texto más pequeño en móviles */
    }
}

/* Hero Section */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
    height: auto;
    gap: 64px;

    & .hero_container {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 50px 2rem;
        height: auto;
        width: 100%;
        max-width: 100%;
        flex-flow: row wrap;
        gap: 64px 56px;
        position: relative;

        &::after {
            content: " ";
            position: absolute;
            inset: 0;
            /*background-image: url("../img/background-decoration-left.svg");*/
            background-size: cover;
            opacity: 0.5;
            width: 200px;
            height: 837.052px;
            left: calc(0% - 24px);
            top: 70%;
        }

        &::before {
            content: " ";
            position: absolute;
            bottom: 150px;
            background-image: url(../img/background-decoration-right.png);
            background-position: right;
            background-size: contain;
            background-repeat: no-repeat;
            width: 300px;
            height: 587px;
            flex-shrink: 0;
            right: 0px;
        }

        & .hero-content-left {
            flex: 1 0 100%;
            max-width: 725px;
            width: calc(100% - 12px);
            display: flex;
            gap: 24px;
            flex-flow: column nowrap;

            & .hero-version {
                font-family: var(--font-family-primary);
                font-size: 10px;
                font-weight: 400;
                line-height: 12px;
                letter-spacing: 0.04em;
                text-align: center;
                text-underline-position: from-font;
                text-decoration-skip-ink: none;
                color: var(--text-secundary);
                width: fit-content;
                width: Hug (136px) px;
                padding: 10px 16px;
                opacity: 0px;
                text-transform: uppercase;
                border-radius: 16px;
                border: 1px solid var(--gc-grey-color);
                -webkit-border-radius: 16px;
                -moz-border-radius: 16px;
                -ms-border-radius: 16px;
                -o-border-radius: 16px;
                display: none;
            }

            & h2.h2-title {
                background: var(--GC-MainGradient, linear-gradient(42deg, #25C3C1 4.8%, #377EF7 98.12%));
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                height: auto;
            }

            & ul {
                display: none;
                flex-flow: column;
                gap: 8px;

                & li {
                    display: flex;
                    height: 16px;
                    align-items: center;

                    & p {
                        color: var(--GC-Branding-2025-GC-GreyGC, #97A3B7);

                        /* Tag - Small */
                        font-family: var(--font-family-primary);
                        font-size: 14px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 110%;
                        /* 15.4px */
                        letter-spacing: 0.56px;
                        text-transform: uppercase;

                    }
                }
            }
        }

        & .hero-content-right {
            flex: 0 0 auto;
            max-width: 359px;
            width: calc(100% - 12px);
            display: flex;
            flex-flow: column;
            gap: 40px;
            position: relative;
            height: 200px;
            align-items: flex-end;
            justify-content: flex-end;



            & p.txt-large {
                color: var(--color-dark-gray);
                margin-bottom: 30px;

                & span {
                    color: var(--color-dark-gray);
                    font-size: 18px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 130%;
                    letter-spacing: 0.18px;
                }
            }

            & .btn-container {
                align-self: flex-end;
                display: none;
            }
        }

        & .hero-content-cards {
            flex: 1 0 100%;
            max-width: 100%;
            width: 100%;
            display: flex;
            gap: 24px;
            flex-flow: row nowrap;
            position: relative;
            justify-content: center;

            &::before {
                content: " ";
                position: absolute;
                bottom: -50%;
                border-radius: 466px;
                opacity: 0.5;
                background: var(--color-green);
                filter: blur(150px);
                width: 466px;
                height: 443px;
                flex-shrink: 0;
                left: -20%;
            }



            & .card {
                max-width: 358.741px;
                width: 100%;
                height: auto !important;
                gap: 16px;
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
                border: none;
                border-radius: 20px;
                -webkit-border-radius: 20px;
                -moz-border-radius: 20px;
                -ms-border-radius: 20px;
                -o-border-radius: 20px;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                padding: 31px 0;
                z-index: 20;

                border-radius: 24px;
                padding: 24px;
                border-radius: 24px;
                background-color: var(--color-white-gc);
                background-position: center;
                background-size: cover;

                &::before {
                    content: "";
                    position: absolute;
                    width: 100%;
                    height: 372.028px;
                    z-index: -10;
                    border-radius: 24px;

                }

                &.biomed {
                    background-image: url(../img/card-img-biomed.png);
                }

                &.genomics {
                    background-image: url(../img/card-img-genomics.png);
                }

                &.portals {
                    background-image: url(../img/card-img-portals.png);
                }

                & .card-text {
                    display: flex;
                    padding: 24px;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 56px;
                    align-self: stretch;
                    border-radius: 24px;
                    background: var(--color-white);
                    justify-content: flex-start;

                    & p.txt-small {
                        color: var(--color-dark-gray);
                        position: relative;
                        line-height: 160%;

                        &::before {
                            content: " ";
                            width: 36px;
                            border-top: solid 2px var(--color-blue-dark);
                            position: absolute;
                            top: -16px;

                        }
                    }

                    & .modal__link-container {
                        display: flex;
                        flex-flow: column nowrap;
                        text-decoration: none;
                        margin-bottom: 0;
                        position: relative;
                        padding-left: 56px;

                        &::before {
                            content: " ";
                            background-image: url(../img/product-logo-icon.png);
                            height: 40px;
                            width: 40px;
                            display: flex;
                            position: absolute;
                            left: 0;
                            top: .30rem;
                            background-position: center;
                            background-repeat: no-repeat;
                            background-size: auto;
                            background-size: contain;
                        }

                        & .tag-title {
                            color: var(--color-black-gc);
                            text-transform: uppercase;
                            text-align: left;


                        }

                        & .txt-small {
                            color: var(--color-dark-gray);

                            &::before {
                                content: none;
                            }
                        }
                    }

                }

                & .btn-container {
                    display: flex;
                    height: 100%;
                    width: 100%;
                    justify-content: flex-end;
                    align-items: flex-end;
                }
            }
        }
    }
}

@media (max-width: 1024px) {
    .hero {
        & .hero_container {
            flex-direction: column;
            align-items: center;
            gap: 40px;
            padding: 40px 0;
            max-width: 100%;


            & .hero-content-left,
            .hero-content-right {
                flex: 1 0 100%;
                max-width: 100%;
                width: calc(100% - 42px);
            }

            & .hero-content-right {

                & .hero-title {
                    font-size: 46px;
                }

                & .btn-container {
                    align-self: center;
                }
            }

            & .hero-content-cards {
                flex-wrap: wrap;
                justify-content: center;
                gap: 16px;
                flex-flow: row nowrap;
                align-items: stretch;
                padding: 0 2rem;

                &::before {
                    content: " ";
                    position: absolute;
                    bottom: 0;
                    border-radius: 466px;
                    opacity: 0.5;
                    background: var(--color-green);
                    filter: blur(150px);
                    width: 250px;
                    height: 443px;
                    flex-shrink: 0;
                    left: -20%;
                }

                .card {
                    max-width: 320px;
                    height: auto !important;

                    & .card-text {
                        display: flex;
                        padding: 24px;
                        flex-direction: column;
                        align-items: flex-start;
                        gap: 56px;
                        align-self: stretch;
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .hero {
        gap: 30px;

        & .hero_container {
            padding: 20px 10px;
            width: 100%;
            max-width: 100%;

            & .hero-content-left {
                flex: 1 0 100%;
                max-width: 350px;
                justify-content: center;
                text-align: center;
                align-items: center;
                width: 100%;

                & h2.h2-title {
                    text-align: left;
                    height: auto;
                }

                & ul li p {
                    font-size: 11px;
                }

                & .hero-content-cards {
                    flex: 1 0 300px;
                    max-width: 300px;

                    &::before {
                        content: " ";
                        position: absolute;
                        bottom: -50%;
                        border-radius: 466px;
                        opacity: 0.5;
                        background: var(--color-green);
                        filter: blur(150px);
                        width: 250px;
                        height: 443px;
                        flex-shrink: 0;
                        left: -20px;
                    }

                    &.card {
                        width: 100%;
                        height: 250px;
                        background-position: center;
                        background-size: cover;
                    }
                }
            }

            & .hero-content-right {
                width: 100%;
                max-width: 350px;
            }

            & .hero-content-right p.txt-large,
            .hero-content-right p.txt-large span {
                font-size: 16px;
                line-height: 18px;
                text-align: left;
            }

            & .hero-content-cards {
                flex-flow: column;
                padding: 0;
                align-items: center;

                .card {
                    max-width: 340px;
                    min-width: 300px;
                    width: calc(100% - 2rem);
                    height: auto !important;
                    border-radius: 20px;
                }
            }
        }
    }
}

/* Section Carousel full width */

.section-carousel {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--color-white-gc);
    overflow: hidden;

    /* Estilo del slider */
    & .slick-slider {
        display: flex;
        /* Asegura que los clones se alineen correctamente */
        width: 100%;
        /* Ocupa el ancho completo */
    }

    & .slick-slider img {
        width: 100%;
        /* Imagen ocupa todo el ancho del slide */
        height: auto;
        /* Mantiene la proporción */
        display: block;
    }

    /* Ocultar flechas por defecto y personalizar */
    & .slick-prev,
    .slick-next {
        z-index: 10;
    }

    & .slick-prev:before,
    .slick-next:before {
        color: var(--color-black);
        /* Personaliza el color de las flechas */
    }

    /* Opcional: puntos de navegación */
    & .slick-dots {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    & .slick-dots li button:before {
        color: var(--color-dark-gray);
        font-size: 12px;
    }
}

/* Low cost section */

.section__low-cost {
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 72px 0 228px 0;
    flex-flow: column nowrap;

    & .h2-title {
        background: linear-gradient(41.85deg, #25c3c1 4.8%, #377ef7 98.12%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        width: 458px;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 16px;
    }

    & .txt-large {
        color: var(--color-dark-gray);
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        width: 610px;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Contenido */
    .section__content {
        padding: 72px 0;
        max-width: 1140px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 80px;
        margin: 0 auto;

        & .section__content-text {
            display: flex;
            align-items: flex-start;
            flex-flow: column nowrap;
            font-family: var(--font-family-primary);
            padding: 0;
            flex: 0 0 50%;
            width: 100%;
            max-width: calc(50% - 40px);

            & .txt-small {
                display: flex;
                padding: 6px 16px;
                align-items: flex-start;
                border-radius: 8px;
                border: 1px solid var(--color-medium-gray);
                color: var(--color-dark-gray);
                text-transform: uppercase;
                -webkit-border-radius: 8px;
                -moz-border-radius: 8px;
                -ms-border-radius: 8px;
                -o-border-radius: 8px;
                margin-bottom: 64px;

            }

            & .h3-title {
                letter-spacing: -0.72px;
                margin-bottom: 24px;
                text-align: left;
                max-width: 310px;
                color: var(--color-blue-dark);

            }

            & .txt-medium {
                text-align: left;
                text-underline-position: from-font;
                text-decoration-skip-ink: none;
                margin-bottom: 40px;
                color: var(--color-dark-gray);
                max-width: 333px;

                &.short {
                    max-width: 317px;
                }
            }
        }

        & .section__content-image {
            flex: 0 0 50%;
            width: 100%;
            max-width: calc(50% - 40px);

            & img {
                max-width: 100%;
                width: 100%;
                height: auto;

            }
        }
    }
}

@media screen and (max-width: 992px) {
    .section__low-cost {
        padding: 72px 0 170px 0;

        & .txt-large {
            width: 100%;
            max-width: 630px;
            margin-left: auto;
            margin-right: auto;
        }

        & .section__content {
            padding: 16px;
            padding-top: 42px;

            &.reverse {
                display: flex;
                flex-flow: column-reverse;
            }

            & .section__content-text {
                justify-content: center;
                align-items: center;
                flex: 0 0 100%;
                max-width: 100%;
                text-align: center;

                & h3.h3-title {
                    text-align: center;
                }

                & .txt-medium {
                    text-align: center;
                    text-underline-position: from-font;
                    text-decoration-skip-ink: none;
                    margin-bottom: 16px;
                    text-align: center;
                }
            }

            & .section__content-image {
                flex: 0 0 100%;
                max-width: 100%;

                & img {
                    max-width: 450px;
                    width: 100%;
                    height: auto;
                }
            }
        }

    }


}

@media screen and (max-width: 768px) {
    .section__low-cost {
        gap: 24px;

        & .text-center {
            display: flex;
            flex-flow: column;
            gap: 0;
            padding: 0;
            margin: 0;
            max-width: 350px;
            width: calc(100% - 2rem);
        }

        & .h2-title {
            width: 100%;
            max-width: 350px;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }

        & .txt-large {
            width: 100%;
            max-width: 350px;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
            padding-bottom: 32px;

        }

        & .section__content {
            gap: 24px;
            padding: 42px 0 0 0;

            &.reverse {
                display: flex;
                flex-flow: column-reverse;
            }

            & .section__content-text {
                justify-content: center;
                align-items: flex-start;

                & .txt-small {
                    display: flex;
                    margin-bottom: 16px;
                }

                & h3.h3-title {
                    text-align: left;
                    line-height: 24px;
                }

                & .txt-medium {
                    font-family: var(--font-family-primary);
                    text-align: left;
                    text-underline-position: from-font;
                    text-decoration-skip-ink: none;
                    margin-bottom: 16px;
                    text-align: left;
                }

            }

            & .section__content-image {
                & img {
                    max-width: 350px;
                    width: 100%;
                    height: auto;
                }
            }
        }
    }
}


.section__actionable {
    background-color: var(--txt-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 72px 0;
    flex-flow: column nowrap;
    padding-bottom: 0;

    & .h2-title {
        font-size: 57px;
        line-height: 57px;
        font-weight: 500;
        background: linear-gradient(41.85deg, #25c3c1 4.8%, #377ef7 98.12%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-family: var(--font-family-primary);
        width: 678px;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 16px;
    }

    & .text__subtitle {
        font-family: var(--font-family-primary);
        font-size: 21px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: -0.01em;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        width: 678px;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Contenido */
    .section__content {
        padding: 0 0 72px 0;

        & .section__content-text {
            display: flex;
            align-items: flex-start;
            flex-flow: column nowrap;
            padding: 0;

            & .h2-title {
                background-clip: text;
                color: var(--color-white-gc);
                font-family: var(--font-family-primary);
                margin-bottom: 32px;
                text-align: left;
                max-width: 463px;
                width: 100%;
            }

            & .txt-medium {
                text-align: left;
                text-underline-position: from-font;
                text-decoration-skip-ink: none;
                margin-bottom: 32px;
                color: var(--color-white-gc);
                display: none;
            }

            & .link-button {
                width: fit-content;
                padding: 12px 24px;
                border-radius: 66px;
                opacity: 0px;
                background-color: var(--color-green);
                color: var(--color-white);
                text-decoration: none;
                font-family: var(--font-family-primary);
                font-size: 16px;
                font-weight: 500;
                line-height: 23px;
                letter-spacing: 0.01em;
                text-align: center;
                text-underline-position: from-font;
                text-decoration-skip-ink: none;
            }
        }

        & .section__content-image {
            max-width: 100%;
            width: 537.74px;
            height: 493px;
            object-fit: cover;
        }
    }

    .cards__container {
        margin-bottom: 72px;

        & .section__content-title {
            padding: 40px 0;

            & img {
                width: 185px;
                height: auto;
                border-radius: 10px;
                margin-bottom: 8px;
            }

            & h3 {
                color: var(--color-white-gc);
                font-family: var(--font-family-primary);
                margin-bottom: 16px;
                text-align: center;
                font-size: 40px;
                font-style: normal;
                font-weight: 600;
                line-height: 100%;
                /* 40px */
            }

            & p {
                color: var(--color-white-gc);
                text-align: center;
                font-family: var(--font-family-primary);
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: 23px;
                letter-spacing: 0.16px;
                margin-bottom: 16px;
                max-width: 345px;
            }

            & a.btn-link {
                font-family: var(--font-family-primary);
                font-size: 16px;
                font-weight: 500;
                line-height: 23px;
                letter-spacing: 0.01em;
                text-align: center;
                text-underline-position: from-font;
                text-decoration-skip-ink: none;
                color: var(--color-white-gc);
                text-decoration: none;
                height: 28px;
                display: inline-flex;
                align-items: center;

                & svg {
                    padding-left: 8px;
                    height: 28px;
                    width: 28px;
                    color: var(--text-btn-link);
                    fill: var(--text-btn-link);
                }
            }
        }
    }
}