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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Inter", sans-serif;
    color: #1a1a2e;
    background-color: #f8f9fa;
    line-height: 1.6;
}

main {
    margin: 0;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

div[class^=cont-], div[class*=" cont-"] {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.cont-x100 {
    max-width: 100%;
}

.cont-1300 {
    max-width: 1300px;
}

.cont-1170 {
    max-width: 1170px;
}

.cont-990 {
    max-width: 990px;
}

.cont-975 {
    max-width: 975px;
}

.cont-900 {
    max-width: 900px;
}

.cont-840 {
    max-width: 840px;
}

.cont-768 {
    max-width: 768px;
}

.cont-710 {
    max-width: 710px;
}

.cont-680 {
    max-width: 680px;
}

.cont-550 {
    max-width: 550px;
}

.btn-primary {
    display: inline-block;
    max-width: 300px;
    width: 100%;
    padding: 0.8rem 2rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 90px;
    background-color: #996BFF;
    border: solid 1px #996BFF;
    transition: background-color 0.2s, transform 0.2s;
}

    .btn-primary:hover {
        background-color: #5303A0;
        transform: translateY(-2px);
    }

.btn-secondary {
    display: inline-block;
    max-width: 300px;
    width: 100%;
    padding: 0.8rem 2rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 90px;
    border: solid 1px #fff;
    background-color: #27272B;
    transition: background-color 0.2s, transform 0.2s;
}

    .btn-secondary:hover {
        background-color: #1D1D20;
        transform: translateY(-2px);
    }

main .more .cards .card, .site-header .cont-1300 .navMenu {
    transition: all 0.35s ease-in-out;
}

.hamburger,
.hamburger:focus {
    text-transform: none;
    width: 45px;
    height: 45px;
    margin: 0;
    border: 0;
    background-color: inherit;
    overflow: visible;
    cursor: pointer;
    outline: none;
    z-index: 999999;
    transition: all 250ms ease-in-out;
}

@media (min-width: 991px) {
    .hamburger,
    .hamburger:focus {
        display: none;
    }
}

.hamburger-box {
    display: inline-block;
    width: 25px;
    height: 21px;
    border-radius: 5px;
    position: relative;
    transition: all 0.55s ease-in-out;
}

    .hamburger-box:hover .hamburger-inner::before {
        top: -6px;
    }

    .hamburger-box:hover .hamburger-inner::after {
        bottom: -6px;
    }

.hamburger:hover .hamburger-box {
    background: none;
}

.hamburger-inner {
    display: block;
    margin-top: 1px;
    top: 50%;
    left: 0;
}

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 25px;
        height: 3px;
        border-radius: 0;
        background-color: #ffffff;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }

        .hamburger-inner::before,
        .hamburger-inner::after {
            content: "";
            display: block;
        }

        .hamburger-inner::before {
            top: -8px;
        }

        .hamburger-inner::after {
            bottom: -8px;
        }

.hamburger--efecto .hamburger-box {
    perspective: 80px;
}

.hamburger--efecto .hamburger-inner {
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

    .hamburger--efecto .hamburger-inner::after {
        transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    }

.hamburger--efecto.is-active .hamburger-inner {
    background-color: transparent;
    transform: rotateY(180deg);
}

    .hamburger--efecto.is-active .hamburger-inner::before {
        transform: translate3d(2px, 10px, 0) rotate(45deg);
        top: -10px;
    }

    .hamburger--efecto.is-active .hamburger-inner::after {
        transform: translate3d(2px, -10px, 0) rotate(-45deg);
        bottom: -10px;
    }

.site-header {
    position: fixed;
    top: 36px;
    width: 100%;
    z-index: 100;
}

    .site-header .cont-1300 .nav-container {
        position: relative;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
        border-radius: 16px;
        background-color: #2C2C30;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

        .site-header .cont-1300 .nav-container .navMenu li {
            position: relative;
        }

            .site-header .cont-1300 .nav-container .navMenu li.show > .submenu {
                display: block;
            }

            .site-header .cont-1300 .nav-container .navMenu li .submenu {
                position: absolute;
                top: calc(100% + 8px);
                left: 0;
                background: #0b0b0c;
                padding: 8px;
                border-radius: 8px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
                min-width: 200px;
                display: none;
                z-index: 1200;
            }

                .site-header .cont-1300 .nav-container .navMenu li .submenu li {
                    padding: 0;
                }

                    .site-header .cont-1300 .nav-container .navMenu li .submenu li a {
                        display: block;
                        padding: 8px 12px;
                        color: #e9eefb;
                        text-decoration: none;
                        white-space: nowrap;
                    }

                        .site-header .cont-1300 .nav-container .navMenu li .submenu li a:hover {
                            background: rgba(255, 255, 255, 0.03);
                        }

        .site-header .cont-1300 .nav-container .navMenu .submenu-toggle {
            cursor: pointer;
        }

/* Mismo breakpoint que el menú móvil (.navMenu overlay a 991px) para que el
   submenu se muestre en flujo dentro del overlay y no como dropdown absoluto */
@media (max-width: 991px) {
    .site-header .cont-1300 .nav-container .navMenu {
        flex-direction: column;
        align-items: flex-start;
    }

        .site-header .cont-1300 .nav-container .navMenu .submenu {
            position: static;
            top: auto;
            left: auto;
            box-shadow: none;
            width: 100%;
            display: none;
        }

        .site-header .cont-1300 .nav-container .navMenu li.show > .submenu {
            display: block;
        }
}

.site-header .cont-1300 .nav-container.containerActivo {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.site-header .cont-1300 .nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
}

.site-header .cont-1300 .navMenu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

    .site-header .cont-1300 .navMenu a {
        color: #F0F0F0;
        font-size: 0.95rem;
        transition: color 0.2s;
    }

        .site-header .cont-1300 .navMenu a:hover {
            color: #996BFF;
        }

    .site-header .cont-1300 .navMenu .btn-login {
        padding: 10px 24px;
        border-radius: 90px;
        border: solid 1px #F0F0F0;
    }

@media (max-width: 991px) {
    .site-header .cont-1300 .navMenu {
        position: absolute;
        top: -100vh;
        left: 0;
        width: 100%;
        flex-direction: column;
        border-bottom-right-radius: 16px;
        border-bottom-left-radius: 16px;
        background-color: #2C2C30;
    }

        .site-header .cont-1300 .navMenu.menuActivo {
            top: 64px;
            padding: 0 16px 64px;
        }

            .site-header .cont-1300 .navMenu.menuActivo .btn-login {
                text-align: center;
                display: block;
                width: 100%;
            }
}

main .hero {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../images/hero-top.gif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: #101010;
    position: relative;
}

@media (max-width: 1600px) {
    main .hero {
        padding: 180px 0 64px;
    }
}

main .hero .img-bg-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}

main .hero .cont-1300 {
    text-align: center;
    position: relative;
    z-index: 5;
}

    main .hero .cont-1300 .count-num {
        display: inline-block;
        transition: transform 180ms ease, opacity 180ms ease;
        will-change: transform, opacity;
    }

        main .hero .cont-1300 .count-num.num-change {
            transform: translateY(-6px) scale(1.04);
            opacity: 0.95;
        }

    main .hero .cont-1300 .contador {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 56px;
        gap: 12px;
        padding: 8px 16px;
        border-radius: 32px;
        border: solid 1px #00C853;
        background-color: rgba(12, 75, 45, 0.87);
    }

        main .hero .cont-1300 .contador span {
            color: #00C853;
            font-weight: 700;
            font-size: 24px;
        }

@media (max-width: 768px) {
    main .hero .cont-1300 .contador span {
        font-size: 20px;
    }
}

main .hero .cont-1300 .contador p {
    color: #00C853;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    main .hero .cont-1300 .contador p {
        font-size: 13px;
    }
}

main .hero .cont-1300 .contador i {
    color: #00C853;
}

main .hero .cont-1300 .hero-title {
    font-size: 72px;
    line-height: 84px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: "Sora", sans-serif;
}

@media (max-width: 768px) {
    main .hero .cont-1300 .hero-title {
        font-size: 32px;
        line-height: 38px;
    }
}

main .hero .cont-1300 .hero-title .accent {
    font-weight: 400;
    color: #996BFF;
}

main .hero .cont-1300 .hero-subtitle {
    max-width: 800px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: #999999;
    margin: 0 auto 2rem;
}

@media (max-width: 768px) {
    main .hero .cont-1300 .hero-subtitle {
        font-size: 16px;
    }
}

main .hero .cont-1300 .actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-top: 56px;
}

@media (max-width: 768px) {
    main .hero .cont-1300 .actions {
        flex-direction: column;
        gap: 16px;
    }
}

main .hero .cont-1300 .actions a .ri-whatsapp-line {
    color: #00C853;
}

main .features {
    background-color: #101010;
}

main .netnumbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

@media (max-width: 768px) {
    main .netnumbers {
        gap: 8px;
    }
}

main .netnumbers .box {
    width: 33%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 20px;
    border-radius: 16px;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    main .netnumbers .box {
        height: 110px;
        padding: 16px 10px;
    }
}

main .netnumbers .box p {
    color: #996BFF;
    font-weight: 800;
    font-size: 60px;
    line-height: 70px;
}

@media (max-width: 768px) {
    main .netnumbers .box p {
        font-size: 19px;
        line-height: 26px;
    }
}

main .netnumbers .box span {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

@media (max-width: 768px) {
    main .netnumbers .box span {
        font-size: 14px;
        line-height: 18px;
    }
}

main .mercado {
    margin-top: 120px;
    padding-bottom: 80px;
    text-align: center;
}

@media (max-width: 768px) {
    main .mercado {
        text-align: left;
    }
}

main .mercado p {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px;
    color: #996BFF;
    font-family: "Sora", sans-serif;
}

main .mercado h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 54px;
    color: #ffffff;
    font-family: "Sora", sans-serif;
}

@media (max-width: 768px) {
    main .mercado h2 {
        font-size: 32px;
        line-height: 38px;
    }
}

main .mercado .boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 991px) {
    main .mercado .boxes {
        flex-direction: column;
        gap: 16px;
    }
}

main .mercado .boxes .box {
    width: 590px;
    padding: 40px 56px;
    border-radius: 8px;
    text-align: left;
    background-color: #7F01FE;
}

@media (max-width: 768px) {
    main .mercado .boxes .box {
        width: 100%;
        padding: 32px;
    }
}

main .mercado .boxes .box p {
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #ffffff;
    font-family: "Sora", sans-serif;
}

@media (max-width: 768px) {
    main .mercado .boxes .box p {
        font-size: 20px;
        line-height: 28px;
    }
}

main .mercado .boxes .box span {
    color: #1D1D20;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}

@media (max-width: 768px) {
    main .mercado .boxes .box span {
        font-size: 16px;
        line-height: 24px;
    }
}

main .mercado .boxes ul {
    width: calc(100% - 590px);
    text-align: left;
}

@media (max-width: 991px) {
    main .mercado .boxes ul {
        width: 100%;
    }
}

main .mercado .boxes ul li {
    position: relative;
    color: #ffffff;
    padding: 16px 0 16px 28px;
}

@media (max-width: 768px) {
    main .mercado .boxes ul li {
        padding: 8px 0 8px 28px;
    }
}

main .mercado .boxes ul li i {
    position: absolute;
    left: 0;
    top: 16px;
    color: #ED0000;
}

@media (max-width: 768px) {
    main .mercado .boxes ul li i {
        top: 8px;
    }
}

main .eleginos {
    background-color: #141416;
}

    main .eleginos .cont-1300 {
        padding: 80px 15px;
    }

@media (max-width: 768px) {
    main .eleginos .cont-1300 {
        padding: 40px 15px;
    }
}

main .eleginos .cont-1300 .boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 768px) {
    main .eleginos .cont-1300 .boxes {
        flex-direction: column;
        gap: 16px;
    }
}

main .eleginos .cont-1300 .boxes .box {
    width: 630px;
}

@media (max-width: 768px) {
    main .eleginos .cont-1300 .boxes .box {
        width: 100%;
    }
}

main .eleginos .cont-1300 .boxes .box p {
    color: #996BFF;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
    font-family: "Sora", sans-serif;
}

main .eleginos .cont-1300 .boxes .box h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 12px;
    font-family: "Sora", sans-serif;
}

@media (max-width: 768px) {
    main .eleginos .cont-1300 .boxes .box h3 {
        font-size: 32px;
        line-height: 36px;
    }
}

main .eleginos .cont-1300 .boxes .box span {
    display: block;
    margin-bottom: 40px;
    color: #999999;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

main .eleginos .cont-1300 .boxes .box a {
    margin-top: 28px;
}

main .eleginos .cont-1300 .boxes .box ul li {
    position: relative;
    color: #ffffff;
    padding: 0 0 16px 28px;
}

    main .eleginos .cont-1300 .boxes .box ul li i {
        position: absolute;
        left: 0;
        top: 0;
        color: #00C853;
    }

main .eleginos .cont-1300 .boxes svg {
    max-width: 574px;
    width: 100%;
    height: 511px;
}

@media (max-width: 768px) {
    main .eleginos .cont-1300 .boxes svg {
        height: 440px;
    }
}

main .productos {
    padding: 96px 0 200px;
    background-color: #F0F0F0;
}

    main .productos .cont-1300 h3 {
        font-weight: 700;
        font-size: 36px;
        line-height: 44px;
        color: #101010;
        font-family: "Sora", sans-serif;
    }

        main .productos .cont-1300 h3 span {
            color: #996BFF;
        }

    main .productos .cont-1300 p {
        font-weight: 400;
        font-size: 20px;
        line-height: 28px;
        color: #2C2C30;
        margin-bottom: 56px;
    }

    main .productos .cont-1300 .boxes {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }

@media (max-width: 991px) {
    main .productos .cont-1300 .boxes {
        flex-direction: column;
        gap: 16px;
    }
}

main .productos .cont-1300 .boxes .box {
    width: calc(33.33% - 24px);
    height: 324px;
    padding: 40px 32px;
    border-radius: 16px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

    main .productos .cont-1300 .boxes .box:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

@media (max-width: 991px) {
    main .productos .cont-1300 .boxes .box {
        width: 100%;
    }
}

main .productos .cont-1300 .boxes .box .txt h4 {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 24px;
    font-family: "Sora", sans-serif;
}

@media (max-width: 720px) {
    main .productos .cont-1300 .boxes .box .txt h4 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 16px;
    }
}

main .productos .cont-1300 .boxes .box .txt p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2C2C30;
}

@media (max-width: 720px) {
    main .productos .cont-1300 .boxes .box .txt p {
        font-size: 15px;
    }
}

main .productos .cont-1300 .boxes .box span {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #222225;
}

main .productos .cont-1300 .boxes .box:first-child {
    border-bottom: solid 8px #996BFF;
}

    main .productos .cont-1300 .boxes .box:first-child .txt h4 {
        color: #996BFF;
    }

main .productos .cont-1300 .boxes .box:nth-child(2) {
    border-bottom: solid 8px #F7931A;
}

    main .productos .cont-1300 .boxes .box:nth-child(2) .txt h4 {
        color: #F7931A;
    }

main .productos .cont-1300 .boxes .box:last-child {
    border-bottom: solid 8px #00CFBA;
}

    main .productos .cont-1300 .boxes .box:last-child .txt h4 {
        color: #00CFBA;
    }

main .como-funciona {
    padding: 96px 0;
    background-image: url("../images/bg-fondo-destacado.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    main .como-funciona .cont-1300 {
        text-align: center;
    }

        main .como-funciona .cont-1300 p {
            font-weight: 400;
            font-size: 20px;
            line-height: 28px;
            color: #ffffff;
            margin-bottom: 8px;
            font-family: "Sora", sans-serif;
        }

        main .como-funciona .cont-1300 h3 {
            font-weight: 700;
            font-size: 36px;
            line-height: 44px;
            color: #ffffff;
            font-family: "Sora", sans-serif;
        }

@media (max-width: 991px) {
    main .como-funciona .cont-1300 h3 {
        font-size: 28px;
        line-height: 34px;
    }
}

main .como-funciona .cont-1300 .boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 42px;
}

@media (max-width: 991px) {
    main .como-funciona .cont-1300 .boxes {
        flex-direction: column;
        gap: 16px;
    }
}

main .como-funciona .cont-1300 .boxes .box {
    text-align: center;
    width: calc(33.33% - 24px);
}

@media (max-width: 991px) {
    main .como-funciona .cont-1300 .boxes .box {
        width: 100%;
        text-align: left;
        padding-bottom: 32px;
    }
}

main .como-funciona .cont-1300 .boxes .box .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background-color: rgba(26, 26, 26, 0.51);
}

    main .como-funciona .cont-1300 .boxes .box .icon i {
        color: #7F01FE;
        font-size: 34px;
    }

@media (max-width: 991px) {
    main .como-funciona .cont-1300 .boxes .box .icon {
        width: 50px;
        height: 50px;
    }

        main .como-funciona .cont-1300 .boxes .box .icon i {
            font-size: 28px;
        }
}

main .como-funciona .cont-1300 .boxes .box h4 {
    font-weight: 500;
    font-size: 24px;
    lhine-height: 32px;
    margin-top: 24px;
    color: #ffffff;
}

@media (max-width: 991px) {
    main .como-funciona .cont-1300 .boxes .box h4 {
        font-size: 22px;
        line-height: 24px;
    }
}

main .como-funciona .cont-1300 .boxes .box span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

@media (max-width: 991px) {
    main .como-funciona .cont-1300 .boxes .box span {
        font-size: 15px;
        line-height: 18px;
    }
}

main .como-funciona .cont-1300 .box-contacto {
    width: 100%;
    border-radius: 16px;
    padding: 56px 64px;
    margin-top: 46px;
    background-color: #7F01FE;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 991px) {
    main .como-funciona .cont-1300 .box-contacto {
        flex-direction: column;
        gap: 24px;
        padding: 32px;
    }
}

main .como-funciona .cont-1300 .box-contacto .txt {
    text-align: left;
}

    main .como-funciona .cont-1300 .box-contacto .txt p {
        font-weight: 700;
        font-size: 30px;
        line-height: 40px;
        color: #ffffff;
        font-family: "Sora", sans-serif;
    }

@media (max-width: 768px) {
    main .como-funciona .cont-1300 .box-contacto .txt p {
        font-size: 24px;
        line-height: 32px;
    }
}

main .como-funciona .cont-1300 .box-contacto .txt span {
    display: block;
    font-weight: 500;
    font-size: 21px;
    line-height: 28px;
    color: #ffffff;
}

@media (max-width: 768px) {
    main .como-funciona .cont-1300 .box-contacto .txt span {
        font-size: 16px;
        line-height: 20px;
    }
}

main .como-funciona .cont-1300 .box-contacto a {
    background-color: #ffffff;
    color: #7F01FE;
}

main .tus-fondos {
    padding: 164px 0 120px;
    background-color: #1D1D20;
}

    main .tus-fondos .cont-1300 .boxes {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
        padding: 110px 56px 80px;
        background-color: #101010;
        position: relative;
    }

@media (max-width: 768px) {
    main .tus-fondos .cont-1300 .boxes {
        flex-direction: column;
        gap: 16px;
        padding: 80px 21px 60px;
    }
}

main .tus-fondos .cont-1300 .boxes .icon {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background-color: #7F01FE;
    display: flex;
    align-items: center;
    justify-content: center;
}

    main .tus-fondos .cont-1300 .boxes .icon i {
        font-size: 52px;
        color: #ffffff;
    }

@media (max-width: 768px) {
    main .tus-fondos .cont-1300 .boxes .icon {
        width: 90px;
        height: 90px;
        top: -45px;
    }

        main .tus-fondos .cont-1300 .boxes .icon i {
            font-size: 32px;
        }
}

main .tus-fondos .cont-1300 .boxes .box h6 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #996BFF;
    margin-bottom: 16px;
    font-family: "Sora", sans-serif;
}

@media (max-width: 768px) {
    main .tus-fondos .cont-1300 .boxes .box h6 {
        font-size: 20px;
        line-height: 24px;
    }
}

main .tus-fondos .cont-1300 .boxes .box h5 {
    max-width: 500px;
    width: 100%;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: "Sora", sans-serif;
}

@media (max-width: 768px) {
    main .tus-fondos .cont-1300 .boxes .box h5 {
        font-size: 32px;
        line-height: 36px;
    }
}

main .tus-fondos .cont-1300 .boxes .box h5 span {
    color: #996BFF;
}

main .tus-fondos .cont-1300 .boxes ul {
    max-width: 400px;
}

    main .tus-fondos .cont-1300 .boxes ul li {
        position: relative;
        color: #ffffff;
        padding: 16px 0 16px 28px;
    }

@media (max-width: 768px) {
    main .tus-fondos .cont-1300 .boxes ul li {
        padding: 8px 0 8px 28px;
    }
}

main .tus-fondos .cont-1300 .boxes ul li i {
    position: absolute;
    left: 0;
    top: 16px;
    color: #00C853;
}

@media (max-width: 768px) {
    main .tus-fondos .cont-1300 .boxes ul li i {
        top: 8px;
    }
}

main .clientes {
    padding: 96px 0 120px;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    main .clientes {
        padding: 64px 0 80px;
    }
}

main .clientes .cont-1300 h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #101010;
    font-family: "Sora", sans-serif;
    text-align: center;
    margin-bottom: 56px;
}

@media (max-width: 768px) {
    main .clientes .cont-1300 h3 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 32px;
    }
}

main .clientes .cont-1300 h3 span {
    color: #996BFF;
}

main .clientes .cont-1300 .clientes-carousel .owl-stage {
    display: flex;
}

main .clientes .cont-1300 .clientes-carousel .owl-item {
    display: flex;
}

main .clientes .cont-1300 .clientes-carousel .item {
    width: 100%;
    padding: 8px 12px;
    display: flex;
}

@media (max-width: 768px) {
    main .clientes .cont-1300 .clientes-carousel .item {
        padding: 8px 4px;
    }
}

main .clientes .cont-1300 .clientes-carousel .card-cliente {
    width: 100%;
    background-color: #F0F0F0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

    main .clientes .cont-1300 .clientes-carousel .card-cliente .video {
        width: 100%;
        background-color: #101010;
    }

        main .clientes .cont-1300 .clientes-carousel .card-cliente .video video,
        main .clientes .cont-1300 .clientes-carousel .card-cliente .video iframe {
            display: block;
            width: 100%;
            aspect-ratio: 16/9;
            border: 0;
            -o-object-fit: cover;
            object-fit: cover;
        }

    main .clientes .cont-1300 .clientes-carousel .card-cliente .bajada {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        padding: 24px 24px 28px;
    }

@media (max-width: 768px) {
    main .clientes .cont-1300 .clientes-carousel .card-cliente .bajada {
        padding: 20px 18px 24px;
    }
}

main .clientes .cont-1300 .clientes-carousel .card-cliente .bajada p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #222225;
    text-align: left;
    margin-bottom: 0;
}

main .clientes .cont-1300 .clientes-carousel .card-cliente .bajada h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #101010;
    margin-top: 12px;
}

@media (max-width: 768px) {
    main .clientes .cont-1300 .clientes-carousel .card-cliente .bajada h5 {
        font-size: 18px;
        line-height: 24px;
    }
}

main .clientes .cont-1300 .clientes-carousel .owl-nav {
    margin-top: 24px;
}

    main .clientes .cont-1300 .clientes-carousel .owl-nav button.owl-prev,
    main .clientes .cont-1300 .clientes-carousel .owl-nav button.owl-next {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: #7F01FE;
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s, color 0.2s;
    }

        main .clientes .cont-1300 .clientes-carousel .owl-nav button.owl-prev:hover,
        main .clientes .cont-1300 .clientes-carousel .owl-nav button.owl-next:hover {
            background-color: #5303A0;
            color: #ffffff;
        }

        main .clientes .cont-1300 .clientes-carousel .owl-nav button.owl-prev i,
        main .clientes .cont-1300 .clientes-carousel .owl-nav button.owl-next i {
            font-size: 24px;
        }

        main .clientes .cont-1300 .clientes-carousel .owl-nav button.owl-prev .sr-only,
        main .clientes .cont-1300 .clientes-carousel .owl-nav button.owl-next .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

main .clientes .cont-1300 .clientes-carousel .owl-dots {
    margin-top: 12px;
}

    main .clientes .cont-1300 .clientes-carousel .owl-dots button.owl-dot span {
        background-color: #2C2C30;
        width: 10px;
        height: 10px;
        transition: background-color 0.2s;
    }

    main .clientes .cont-1300 .clientes-carousel .owl-dots button.owl-dot.active span, main .clientes .cont-1300 .clientes-carousel .owl-dots button.owl-dot:hover span {
        background-color: #996BFF;
    }

main .faqs {
    padding: 90px 0 180px;
    background-color: #101010;
}

    main .faqs .cont-1300 {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

@media (max-width: 768px) {
    main .faqs .cont-1300 {
        flex-direction: column;
        gap: 32px;
    }
}

main .faqs .cont-1300 .titulo h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 8px;
    font-family: "Sora", sans-serif;
}

main .faqs .cont-1300 .titulo p {
    color: #999999;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    max-width: 300px;
    width: 100%;
}

main .faqs .cont-1300 .faqs-list {
    max-width: 640px;
    width: 100%;
    display: grid;
    gap: 20px;
}

    main .faqs .cont-1300 .faqs-list .faq-item {
        border-radius: 12px;
        background-color: #2C2C30;
        border: solid 1px rgba(255, 255, 255, 0.04);
        overflow: hidden;
        position: relative;
    }

        main .faqs .cont-1300 .faqs-list .faq-item .faq-toggle {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 16px 20px;
            gap: 16px;
            background: transparent;
            border: none;
            cursor: pointer;
            text-align: left;
        }

@media (max-width: 768px) {
    main .faqs .cont-1300 .faqs-list .faq-item .faq-toggle {
        padding: 16px 36px 16px 20px;
    }
}

main .faqs .cont-1300 .faqs-list .faq-item .faq-toggle i {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 20px;
    color: #996BFF;
}

main .faqs .cont-1300 .faqs-list .faq-item .faq-toggle .faq-question {
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
}

main .faqs .cont-1300 .faqs-list .faq-item .faq-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

main .faqs .cont-1300 .faqs-list .faq-item .faq-panel {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, padding 0.28s ease;
}

    main .faqs .cont-1300 .faqs-list .faq-item .faq-panel p {
        margin: 0;
        color: #999999;
    }

main .faqs .cont-1300 .faqs-list .faq-item.is-open .faq-toggle {
    background-color: rgba(255, 255, 255, 0.02);
}

main .faqs .cont-1300 .faqs-list .faq-item.is-open .faq-panel {
    padding-bottom: 18px;
}

footer {
    padding: 72px 0 64px;
    background: #222225;
}

    footer .cont-1300 .boxes {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

@media (max-width: 768px) {
    footer .cont-1300 .boxes {
        flex-direction: column-reverse;
        gap: 32px;
    }
}

footer .cont-1300 .boxes .box h2 {
    color: #ffffff;
}

footer .cont-1300 .boxes .box p {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    color: #999999;
    max-width: 300px;
}

footer .cont-1300 .boxes .box .redes {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 32px;
}

    footer .cont-1300 .boxes .box .redes a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 28px;
        transition: background-color 0.2s, color 0.2s;
    }

        footer .cont-1300 .boxes .box .redes a:hover {
            color: #7F01FE;
        }

footer .cont-1300 .boxes .box h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 24px;
    font-family: "Sora", sans-serif;
}

footer .cont-1300 .boxes .box a .ri-whatsapp-line {
    margin-left: 21px;
    color: #00C853;
}

footer .cont-1300 .boxes .box .footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #CCCCCC;
    font-size: 15px;
    font-weight: 500;
}

    footer .cont-1300 .boxes .box .footer-phone i {
        font-size: 18px;
        color: #00C853;
    }

    footer .cont-1300 .boxes .box .footer-phone a {
        color: #ffffff;
        font-weight: 700;
        text-decoration: none;
    }

        footer .cont-1300 .boxes .box .footer-phone a:hover {
            color: #996BFF;
        }

.legales {
    padding: 24px 0;
    background: #7F01FE;
}

    .legales .cont-1300 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

@media (max-width: 768px) {
    .legales .cont-1300 {
        flex-direction: column;
        gap: 16px;
    }
}

.legales .cont-1300 span {
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.legales .cont-1300 .links {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .legales .cont-1300 .links {
        flex-direction: column;
        gap: 8px;
    }
}

.legales .cont-1300 .links a {
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

main .producto {
    min-height: 100vh;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #101010;
    position: relative;
}

@media (max-width: 1600px) {
    main .producto {
        padding: 150px 0 64px;
    }
}

main .producto .cont-1300 .bot-dna {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background-color: #202022;
    padding: 48px;
}

@media (max-width: 991px) {
    main .producto .cont-1300 .bot-dna {
        flex-direction: column;
    }
}

main .producto .cont-1300 .bot-dna .box {
    width: 50%;
}

@media (max-width: 991px) {
    main .producto .cont-1300 .bot-dna .box {
        width: 100%;
    }
}

main .producto .cont-1300 .bot-dna .box h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: #F0F0F0;
    font-family: "Sora", sans-serif;
}

@media (max-width: 640px) {
    main .producto .cont-1300 .bot-dna .box h1 {
        font-size: 38px;
        line-height: 50px;
    }
}

main .producto .cont-1300 .bot-dna .box h1 b {
    font-weight: 700;
    color: #996BFF;
}

main .producto .cont-1300 .bot-dna .box p {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #F0F0F0;
    font-family: "Sora", sans-serif;
}

@media (max-width: 640px) {
    main .producto .cont-1300 .bot-dna .box p {
        font-size: 20px;
        lhine-height: 28px;
    }
}

main .producto .cont-1300 .bot-dna .box span {
    display: inline-block;
    max-width: 500px;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 58px;
    color: #999999;
}

@media (max-width: 640px) {
    main .producto .cont-1300 .bot-dna .box span {
        font-size: 16px;
        lhine-height: 20px;
    }
}

main .producto .cont-1300 .bot-dna .box a {
    max-width: 260px;
}

    main .producto .cont-1300 .bot-dna .box a i {
        color: #00C853;
    }

main .producto .cont-1300 .bot-dna .video {
    width: 100%;
    max-width: 629px;
    margin: 0 auto;
    background-color: #101010;
    overflow: hidden;
}

    main .producto .cont-1300 .bot-dna .video video,
    main .producto .cont-1300 .bot-dna .video iframe {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        border: 0;
        -o-object-fit: cover;
        object-fit: cover;
    }

main .producto .cont-1300 .video-description {
    text-align: center;
    margin: 88px auto;
    max-width: 800px;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: #F0F0F0;
    font-family: "Sora", sans-serif;
}

@media (max-width: 640px) {
    main .producto .cont-1300 .video-description {
        font-size: 20px;
        line-height: 28px;
    }
}

main .producto .cont-1300 .video-description span {
    color: #996BFF;
}

main .producto .cont-1300 .box-prueba-gratis {
    padding: 48px;
    border-radaius: 16px;
    background-color: #2C2C30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

@media (max-width: 991px) {
    main .producto .cont-1300 .box-prueba-gratis {
        flex-direction: column;
    }
}

main .producto .cont-1300 .box-prueba-gratis .txt h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
    color: #996BFF;
    font-family: "Sora", sans-serif;
}

@media (max-width: 640px) {
    main .producto .cont-1300 .box-prueba-gratis .txt h3 {
        font-size: 24px;
        line-height: 32px;
    }
}

main .producto .cont-1300 .box-prueba-gratis .txt p {
    max-width: 860px;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #F0F0F0;
}

@media (max-width: 640px) {
    main .producto .cont-1300 .box-prueba-gratis .txt p {
        font-size: 16px;
        line-height: 24px;
    }
}

main .producto .cont-1300 .box-prueba-gratis a {
    text-align: center;
    background-color: #7F01FE;
    border: solid 1px #7F01FE;
}

main .more {
    padding: 120px 0;
    text-align: center;
    background-color: #101010;
}

@media (max-width: 640px) {
    main .more {
        padding: 80px 0;
    }
}

main .more h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 8px;
    color: #F0F0F0;
    font-family: "Sora", sans-serif;
}

@media (max-width: 640px) {
    main .more h2 {
        font-size: 24px;
        line-height: 32px;
    }
}

main .more h2 span {
    color: #996BFF;
}

main .more p {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #999999;
}

@media (max-width: 640px) {
    main .more p {
        font-size: 16px;
    }
}

main .more .cards {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

    main .more .cards .card {
        width: 406px;
        height: 140px;
        padding: 24px;
        border-radius: 16px;
        background-color: #F0F0F0;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 24px;
    }

@media (max-width: 640px) {
    main .more .cards .card {
        width: 100%;
        height: auto;
    }
}

main .more .cards .card:hover {
    background-color: #7F01FE;
}

    main .more .cards .card:hover i {
        color: #ffffff;
    }

    main .more .cards .card:hover .txt h4,
    main .more .cards .card:hover .txt p {
        color: #ffffff;
    }

main .more .cards .card i {
    font-size: 40px;
    color: #7F01FE;
}

main .more .cards .card .txt {
    text-align: left;
}

    main .more .cards .card .txt h4 {
        font-weight: 700;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 8px;
        color: #1D1D20;
    }

    main .more .cards .card .txt p {
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 0;
        color: #1D1D20;
    }

main .how-to-work {
    padding: 0 0 120px;
    background-color: #101010;
}

    main .how-to-work .cont-1300 {
        text-align: center;
    }

        main .how-to-work .cont-1300 h2 {
            font-weight: 700;
            font-size: 36px;
            line-height: 48px;
            margin-bottom: 16px;
            color: #F0F0F0;
            font-family: "Sora", sans-serif;
        }

@media (max-width: 640px) {
    main .how-to-work .cont-1300 h2 {
        font-size: 24px;
        line-height: 32px;
    }
}

main .how-to-work .cont-1300 p {
    font-weight: 400;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 26px;
    color: #999999;
}

@media (max-width: 640px) {
    main .how-to-work .cont-1300 p {
        font-size: 16px;
    }
}

main .versus {
    padding: 0 0 120px;
    background-color: #101010;
}

    main .versus .cont-1300 {
        text-align: center;
    }

        main .versus .cont-1300 h3 {
            font-weight: 700;
            font-size: 36px;
            line-height: 48px;
            margin-bottom: 48px;
            color: #F0F0F0;
            font-family: "Sora", sans-serif;
        }

@media (max-width: 640px) {
    main .versus .cont-1300 h3 {
        text-align: left;
        font-size: 24px;
        line-height: 32px;
    }
}

main .versus .cont-1300 h3 span {
    color: #996BFF;
}

main .versus .cont-1300 .modules {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

@media (max-width: 991px) {
    main .versus .cont-1300 .modules {
        flex-direction: column;
    }
}

main .versus .cont-1300 .modules .mod {
    width: 33.33%;
}

@media (max-width: 991px) {
    main .versus .cont-1300 .modules .mod {
        width: 100%;
    }
}

main .versus .cont-1300 .modules .mod h4 {
    text-align: left;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    padding: 20px;
    color: #ffffff;
    background-color: #222225;
}

main .versus .cont-1300 .modules .mod ul {
    border-left: solid 1px #2C2C30;
    border-right: solid 1px #2C2C30;
    border-bottom: solid 1px #2C2C30;
}

    main .versus .cont-1300 .modules .mod ul li {
        text-align: left;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        padding: 16px;
        color: #ffffff;
        border-bottom: solid 1px #2C2C30;
    }

        main .versus .cont-1300 .modules .mod ul li:last-child {
            border-bottom: none;
        }

        main .versus .cont-1300 .modules .mod ul li span {
            display: none;
            color: #ffffff;
            font-weight: 700;
        }

@media (max-width: 991px) {
    main .versus .cont-1300 .modules .mod ul li span {
        display: block;
    }
}

main .versus .cont-1300 .modules .mod:first-child h4 {
    border-top-left-radius: 8px;
}

@media (max-width: 991px) {
    main .versus .cont-1300 .modules .mod:first-child {
        display: none;
    }
}

main .versus .cont-1300 .modules .mod:nth-child(2) ul li {
    color: #999999;
}

main .versus .cont-1300 .modules .mod:last-child h4 {
    color: #996BFF;
    border-top-right-radius: 8px;
}

main .rentabilidad {
    padding: 100px 0;
    background-color: #222225;
}

    main .rentabilidad .cont-1300 .boxes {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 24px;
    }

@media (max-width: 991px) {
    main .rentabilidad .cont-1300 .boxes {
        flex-direction: column;
    }
}

main .rentabilidad .cont-1300 .boxes .box {
    text-align: left;
}

    main .rentabilidad .cont-1300 .boxes .box h3 {
        font-weight: 700;
        font-size: 36px;
        line-height: 48px;
        margin-bottom: 48px;
        color: #996BFF;
        font-family: "Sora", sans-serif;
    }

@media (max-width: 640px) {
    main .rentabilidad .cont-1300 .boxes .box h3 {
        text-align: left;
        font-size: 24px;
        line-height: 32px;
    }
}

main .rentabilidad .cont-1300 .boxes .box p {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
}

main .rentabilidad .cont-1300 .boxes .box span {
    display: inline-block;
    color: #996BFF;
    font-size: 20px;
    line-height: 28px;
    padding-left: 25px;
    margin-top: 32px;
    position: relative;
}

    main .rentabilidad .cont-1300 .boxes .box span:before {
        content: "";
        display: block;
        width: 3px;
        height: 130px;
        background-color: #996BFF;
        position: absolute;
        left: 0;
        top: -5px;
    }

main .rentabilidad .cont-1300 .boxes img {
    max-width: 600px;
    width: 100%;
    margin-top: 74px;
}

main .simulador {
    padding: 80px 0;
    background-color: #1D1D20;
}

    main .simulador .cont-1300 h3 {
        font-weight: 700;
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 40px;
        color: #ffffff;
        font-family: "Sora", sans-serif;
    }

@media (max-width: 640px) {
    main .simulador .cont-1300 h3 {
        font-size: 24px;
        line-height: 32px;
    }
}

main .contacto {
    padding: 110px 0 80px;
    background-color: #5303A0;
}

    main .contacto .cont-1300 .box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        border-radius: 16px;
        padding: 56px 64px;
        background-color: #7F01FE;
    }

@media (max-width: 991px) {
    main .contacto .cont-1300 .box {
        flex-direction: column;
        padding: 48px;
    }
}

main .contacto .cont-1300 .box .txt h5 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 8px;
    color: #ffffff;
    font-family: "Sora", sans-serif;
}

@media (max-width: 640px) {
    main .contacto .cont-1300 .box .txt h5 {
        font-size: 24px;
        line-height: 32px;
    }
}

main .contacto .cont-1300 .box .txt span {
    display: inline-block;
    max-width: 680px;
    color: #F0F0F0;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}

main .contacto .cont-1300 .box .btn-secondary {
    text-align: center;
    background-color: #F0F0F0;
    color: #7F01FE;
}

/* ============ pages/_empresa.sass ============ */
main .empresa-hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/hero-empresa.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #101010;
  position: relative;
}
@media (max-width: 1600px) {
  main .empresa-hero {
    padding: 180px 0 64px;
  }
}
main .empresa-hero .cont-1300 {
  text-align: center;
  position: relative;
  z-index: 5;
}
main .empresa-hero .cont-1300 .hero-title {
  font-size: 72px;
  line-height: 84px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: "Sora", sans-serif;
}
@media (max-width: 768px) {
  main .empresa-hero .cont-1300 .hero-title {
    font-size: 32px;
    line-height: 38px;
  }
}
main .empresa-hero .cont-1300 .hero-title .accent {
  font-weight: 400;
  color: #996BFF;
}
main .empresa-hero .cont-1300 .actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 56px;
}
@media (max-width: 768px) {
  main .empresa-hero .cont-1300 .actions {
    flex-direction: column;
    gap: 16px;
  }
}
main .empresa-hero .cont-1300 .actions a .ri-whatsapp-line {
  color: #00C853;
}
main .nosotros {
  background-color: #101010;
}
main .nosotros .cont-1300 .boxes {
  padding: 56px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  background-color: #222225;
}
@media (max-width: 768px) {
  main .nosotros .cont-1300 .boxes {
    flex-direction: column;
    padding: 36px 16px;
  }
}
main .nosotros .cont-1300 .boxes .box {
  width: 50%;
}
@media (max-width: 768px) {
  main .nosotros .cont-1300 .boxes .box {
    width: 100%;
  }
}
main .nosotros .cont-1300 .boxes .box h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 36px;
}
@media (max-width: 640px) {
  main .nosotros .cont-1300 .boxes .box h2 {
    font-size: 33px;
  }
}
main .nosotros .cont-1300 .boxes .box h2 b {
  color: #996BFF;
}
main .nosotros .cont-1300 .boxes .box p {
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
main .nosotros .cont-1300 .boxes .box span {
  color: #999999;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
main .crecimiento {
  background-color: #101010;
  padding: 120px 0 0;
}
main .crecimiento .cont-1300 {
  text-align: center;
}
main .crecimiento .cont-1300 h3 {
  color: #ffffff;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 32px;
  font-family: "Sora", sans-serif;
}
main .crecimiento .cont-1300 .boxes {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 640px) {
  main .crecimiento .cont-1300 .boxes {
    flex-direction: column;
  }
}
main .crecimiento .cont-1300 .boxes .box {
  border-radius: 16px;
  padding: 36px 16px;
  background-color: #ffffff;
  width: calc(33.33% - 24px);
  height: 180px;
}
@media (max-width: 910px) {
  main .crecimiento .cont-1300 .boxes .box {
    width: calc(50% - 24px);
  }
}
@media (max-width: 640px) {
  main .crecimiento .cont-1300 .boxes .box {
    width: 100%;
    height: auto;
  }
}
main .crecimiento .cont-1300 .boxes .box h4 {
  color: #996BFF;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 8px;
}
@media (max-width: 640px) {
  main .crecimiento .cont-1300 .boxes .box h4 {
    font-size: 28px;
    line-height: 34px;
  }
}
main .crecimiento .cont-1300 .boxes .box span {
  color: #101010;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 640px) {
  main .crecimiento .cont-1300 .boxes .box span {
    font-size: 17px;
    line-height: 21px;
  }
}
main .historia {
  background-color: #101010;
  padding: 120px 0;
}
main .historia .cont-1300 {
  text-align: center;
}
main .historia .cont-1300 h3 {
  color: #ffffff;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 32px;
  font-family: "Sora", sans-serif;
}
main .historia .cont-1300 .timeline {
  position: relative;
}
main .historia .cont-1300 .timeline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #999999;
}
@media (max-width: 768px) {
  main .historia .cont-1300 .timeline:before {
    left: 18px;
    transform: translateX(0%);
  }
}
main .historia .cont-1300 .timeline .time {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 180px;
  margin-bottom: 56px;
  position: relative;
}
@media (max-width: 768px) {
  main .historia .cont-1300 .timeline .time {
    gap: 16px;
    padding-left: 65px;
    flex-direction: column;
  }
}
main .historia .cont-1300 .timeline .time:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: solid 2px #ffffff;
}
@media (max-width: 768px) {
  main .historia .cont-1300 .timeline .time:after {
    left: 0;
    transform: translateX(0%);
  }
}
main .historia .cont-1300 .timeline .time:first-child:after, main .historia .cont-1300 .timeline .time:nth-child(4):after {
  background-color: #7F01FE;
}
main .historia .cont-1300 .timeline .time:first-child .fecha p, main .historia .cont-1300 .timeline .time:nth-child(4) .fecha p {
  color: #7F01FE;
}
main .historia .cont-1300 .timeline .time:nth-child(2):after, main .historia .cont-1300 .timeline .time:nth-child(5):after {
  background-color: #F7931A;
}
main .historia .cont-1300 .timeline .time:nth-child(2) .fecha p, main .historia .cont-1300 .timeline .time:nth-child(5) .fecha p {
  color: #F7931A;
}
main .historia .cont-1300 .timeline .time:nth-child(3):after, main .historia .cont-1300 .timeline .time:nth-child(6):after {
  background-color: #00CFBA;
}
main .historia .cont-1300 .timeline .time:nth-child(3) .fecha p, main .historia .cont-1300 .timeline .time:nth-child(6) .fecha p {
  color: #00CFBA;
}
main .historia .cont-1300 .timeline .time:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  main .historia .cont-1300 .timeline .time:nth-child(even) {
    flex-direction: column;
  }
}
main .historia .cont-1300 .timeline .time:nth-child(even) .fecha {
  text-align: left;
}
main .historia .cont-1300 .timeline .time:nth-child(odd) .fecha {
  text-align: right;
}
@media (max-width: 768px) {
  main .historia .cont-1300 .timeline .time:nth-child(odd) .fecha {
    text-align: left;
  }
}
main .historia .cont-1300 .timeline .time .fecha {
  width: 50%;
}
@media (max-width: 768px) {
  main .historia .cont-1300 .timeline .time .fecha {
    width: 100%;
  }
}
main .historia .cont-1300 .timeline .time .fecha p {
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  margin-bottom: 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
}
@media (max-width: 768px) {
  main .historia .cont-1300 .timeline .time .fecha p {
    font-size: 32px;
    line-height: 40px;
  }
}
main .historia .cont-1300 .timeline .time .box {
  width: 50%;
  padding: 16px 24px;
  border-radius: 8px;
  text-align: left;
  background-color: #222225;
}
@media (max-width: 768px) {
  main .historia .cont-1300 .timeline .time .box {
    width: 100%;
  }
}
main .historia .cont-1300 .timeline .time .box h5 {
  color: #F0F0F0;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}
@media (max-width: 768px) {
  main .historia .cont-1300 .timeline .time .box h5 {
    font-size: 16px;
    line-height: 21px;
  }
}
main .historia .cont-1300 .timeline .time .box span {
  color: #999999;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 768px) {
  main .historia .cont-1300 .timeline .time .box span {
    font-size: 16px;
    line-height: 16px;
  }
}
main .infraestructura {
  padding: 130px 0;
  background-color: #222225;
}
@media (max-width: 768px) {
  main .infraestructura {
    padding: 90px 0;
  }
}
main .infraestructura .cont-1300 .boxes {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  position: relative;
}
@media (max-width: 768px) {
  main .infraestructura .cont-1300 .boxes {
    flex-direction: column;
    gap: 16px;
  }
}
main .infraestructura .cont-1300 .boxes .box {
  width: 50%;
}
@media (max-width: 768px) {
  main .infraestructura .cont-1300 .boxes .box {
    width: 100%;
  }
}
main .infraestructura .cont-1300 .boxes .box h6 {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #7F01FE;
  margin-bottom: 4px;
  font-family: "Sora", sans-serif;
}
@media (max-width: 768px) {
  main .infraestructura .cont-1300 .boxes .box h6 {
    font-size: 20px;
    line-height: 24px;
  }
}
main .infraestructura .cont-1300 .boxes .box h5 {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 16px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
}
@media (max-width: 768px) {
  main .infraestructura .cont-1300 .boxes .box h5 {
    font-size: 32px;
    line-height: 36px;
  }
}
main .infraestructura .cont-1300 .boxes .box span {
  color: #999999;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  font-family: "Sora", sans-serif;
}
@media (max-width: 768px) {
  main .infraestructura .cont-1300 .boxes .box span {
    font-size: 16px;
    line-height: 20px;
  }
}
main .infraestructura .cont-1300 .boxes ul {
  width: 50%;
}
@media (max-width: 768px) {
  main .infraestructura .cont-1300 .boxes ul {
    width: 100%;
  }
}
main .infraestructura .cont-1300 .boxes ul li {
  position: relative;
  color: #ffffff;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  padding: 16px 0 16px 28px;
}
@media (max-width: 768px) {
  main .infraestructura .cont-1300 .boxes ul li {
    padding: 8px 0 8px 28px;
    font-size: 18px;
  }
}
main .infraestructura .cont-1300 .boxes ul li i {
  position: absolute;
  left: 0;
  top: 16px;
  color: #00C853;
}
@media (max-width: 768px) {
  main .infraestructura .cont-1300 .boxes ul li i {
    top: 8px;
  }
}
main .mision-y-vision {
  padding: 120px 0;
  background-color: #101010;
}
main .mision-y-vision .cont-1300 .mision {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 768px) {
  main .mision-y-vision .cont-1300 .mision {
    flex-direction: column;
  }
}
main .mision-y-vision .cont-1300 .mision .box {
  width: 50%;
  padding: 40px 56px;
  border-radius: 8px;
  border: solid 1px #996BFF;
}
@media (max-width: 768px) {
  main .mision-y-vision .cont-1300 .mision .box {
    width: 100%;
    padding: 38px 24px;
  }
}
main .mision-y-vision .cont-1300 .mision .box h4 {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 24px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
}
@media (max-width: 768px) {
  main .mision-y-vision .cont-1300 .mision .box h4 {
    font-size: 24px;
    line-height: 30px;
  }
}
main .mision-y-vision .cont-1300 .mision .box h4 b {
  color: #996BFF;
}
main .mision-y-vision .cont-1300 .mision .box span {
  color: #999999;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 768px) {
  main .mision-y-vision .cont-1300 .mision .box span {
    font-size: 16px;
    line-height: 20px;
  }
}
main .mision-y-vision .valores {
  padding-top: 80px;
}
main .mision-y-vision .valores h4 {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 40px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
}
@media (max-width: 768px) {
  main .mision-y-vision .valores h4 {
    font-size: 24px;
    line-height: 30px;
  }
}
main .mision-y-vision .valores h4 b {
  color: #996BFF;
}
main .mision-y-vision .valores .boxes {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 910px) {
  main .mision-y-vision .valores .boxes {
    flex-direction: column;
  }
}
main .mision-y-vision .valores .boxes .box {
  width: 25%;
  padding: 24px 16px;
  text-align: center;
  border-radius: 16px;
  background-color: #7F01FE;
}
@media (max-width: 910px) {
  main .mision-y-vision .valores .boxes .box {
    width: 100%;
    text-align: left;
  }
}
main .mision-y-vision .valores .boxes .box h5 {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 16px;
}
main .mision-y-vision .valores .boxes .box span {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #ffffff;
}
main .ecosistema {
  padding: 96px 0;
  background-color: #ffffff;
}
main .ecosistema .title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
  color: #101010;
}
main .ecosistema .title h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  color: #101010;
  font-family: "Sora", sans-serif;
}
@media (max-width: 768px) {
  main .ecosistema .title h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
main .ecosistema .boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}
@media (max-width: 991px) {
  main .ecosistema .boxes {
    flex-direction: column;
    gap: 16px;
  }
}
main .ecosistema .boxes .box {
  width: 50%;
  padding: 40px 32px;
  border-radius: 16px;
  border: solid 1px #996BFF;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  main .ecosistema .boxes .box {
    width: 100%;
    padding: 32px;
  }
}
main .ecosistema .boxes .box p {
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 12px;
  color: #7F01FE;
  font-family: "Sora", sans-serif;
}
@media (max-width: 991px) {
  main .ecosistema .boxes .box p {
    font-size: 20px;
    line-height: 28px;
  }
}
main .ecosistema .boxes .box span {
  color: #101010;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 991px) {
  main .ecosistema .boxes .box span {
    font-size: 16px;
    line-height: 24px;
  }
}
main .ecosistema .boxes ul {
  width: 50%;
  margin-top: 40px;
  text-align: left;
}
@media (max-width: 991px) {
  main .ecosistema .boxes ul {
    width: 100%;
  }
}
main .ecosistema .boxes ul li {
  position: relative;
  color: #101010;
  font-size: 20px;
  line-height: 28px;
  padding-left: 28px;
  padding-bottom: 8px;
}
@media (max-width: 991px) {
  main .ecosistema .boxes ul li {
    padding-left: 28px;
    padding-bottom: 6px;
    font-size: 18px;
  }
}
main .ecosistema .boxes ul li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #00C853;
}
main .soluciones {
  padding: 100px 0;
  background-color: #7F01FE;
}
main .soluciones .cont-1300 h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
}
main .soluciones .cont-1300 p {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 56px;
}
main .soluciones .cont-1300 .boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 991px) {
  main .soluciones .cont-1300 .boxes {
    flex-direction: column;
    gap: 16px;
  }
}
main .soluciones .cont-1300 .boxes .box {
  width: calc(33.33% - 24px);
  padding: 40px 32px;
  border-radius: 16px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
main .soluciones .cont-1300 .boxes .box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  main .soluciones .cont-1300 .boxes .box {
    width: 100%;
  }
}
main .soluciones .cont-1300 .boxes .box .txt h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 12px;
  font-family: "Sora", sans-serif;
}
@media (max-width: 720px) {
  main .soluciones .cont-1300 .boxes .box .txt h4 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
  }
}
main .soluciones .cont-1300 .boxes .box .txt p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  color: #2C2C30;
}
@media (max-width: 720px) {
  main .soluciones .cont-1300 .boxes .box .txt p {
    font-size: 15px;
  }
}
main .soluciones .cont-1300 .boxes .box span {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #222225;
}
main .soluciones .cont-1300 .boxes .box:first-child {
  border-bottom: solid 8px #996BFF;
}
main .soluciones .cont-1300 .boxes .box:first-child .txt h4 {
  color: #996BFF;
}
main .soluciones .cont-1300 .boxes .box:nth-child(2) {
  border-bottom: solid 8px #F7931A;
}
main .soluciones .cont-1300 .boxes .box:nth-child(2) .txt h4 {
  color: #F7931A;
}
main .soluciones .cont-1300 .boxes .box:last-child {
  border-bottom: solid 8px #00CFBA;
}
main .soluciones .cont-1300 .boxes .box:last-child .txt h4 {
  color: #00CFBA;
}
main .soluciones .cont-1300 a {
  display: inline-block;
  margin-top: 64px;
  border: solid 1px #222225;
  background-color: #222225;
}
/*# sourceMappingURL=main.css.map */
