* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #147d91;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

header {
    top: 0;
    width: 100%;
    position: fixed;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #d1d1d6;
    padding: 0.85rem 0;
    z-index: 999;

    .container {
        display: grid;
        grid-template-columns: repeat(14, 1fr);

        .logo {
            grid-column: span 4 / span 4;
            display: flex;
            gap: 0.75rem;
            align-items: center;

            h1 {
                font-size: 1.25rem;
                font-weight: 500;
            }
        }

        .nav-links {
            gap: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            grid-column: span 6 / span 6;

            li {
                list-style: none;

                a {
                    color: #8e8e93;
                    text-decoration: none;
                    font-weight: 500;
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        color: var(--primary-color);
                    }
                }
            }
        }

        .auth-buttons {
            grid-column: span 4 / span 4;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 1rem;

            button {
                cursor: pointer;
                background-color: transparent;
                border: 0;
                font-size: 0.85rem;
                padding: 0.75rem 1.25rem;
                border-radius: 12px;
                font-weight: 600;
            }

            .btn-register {
                color: white;
                background-color: var(--primary-color);
                transition: all 0.3s ease-in-out;
                box-shadow: 0 0 0 transparent;

                &:hover {
                    background-color: #278fff;
                    transform: scale(1.05);
                    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
                }
            }

            .btn-sign {
                &:hover {
                    color: var(--primary-color);
                }
            }
        }
    }
    .burger {
        display: none;
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
    }
}

.nav-links-mobile {
    position: absolute;
    display: none;
    flex-direction: column;
    gap: 1rem;
    top: 4.125rem;
    left: 0;
    width: 100%;
    z-index: 999;
    background: white;
    align-items: center;
    padding: 1rem 1rem 2rem;

    li {
        list-style: none;

        a {
            color: #8e8e93;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease-in-out;

            &:hover {
                color: var(--primary-color);
            }
            &.nav-btn {
                display: block;
                padding: 0.675rem 2rem;
                background: #0284f5;
                color: white !important;
                border-radius: 0.75rem;
                width: 100%;
            }
        }
    }

    &.active {
        display: flex;
    }
}

.hero {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background: #f6f6f9;
    position: relative;

    .container {
        z-index: 99;
        padding-top: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;

        .hero-content {
            width: 100%;

            h1 {
                font-weight: 700;
                text-align: left;
                font-size: 4.5rem;
                margin-bottom: 2rem;
                line-height: 1;

                strong {
                    margin-top: 0.5rem;
                    display: block;
                    background-clip: text;
                    background-image: linear-gradient(to right, var(--primary-color), rgb(88, 86, 214));
                    color: transparent;
                }
            }

            p {
                color: #8e8e93;
                font-size: 1.5rem;
                margin-bottom: 2.5rem;

                strong {
                    color: #1c1c1e;
                }
            }

            .hero-btns {
                display: flex;
                gap: 1.5rem;
                margin-bottom: 4rem;
            }

            .hero-cols-3 {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;

                .hero-col {
                    background-color: white;
                    border: 1px solid #e6e6ea;
                    padding: 1rem;
                    border-radius: 12px;
                    text-align: center;

                    h3 {
                        font-size: 2.25rem;
                        color: #1c1c1e;
                        font-weight: bold;
                        margin-bottom: 0.5rem;
                    }

                    p {
                        font-weight: 600;
                        text-align: center;
                        color: #8e8e93;
                        font-size: 0.85rem;
                        margin-bottom: 0.15rem;
                    }
                }
            }
        }

        .hero-featured {
            padding: 2rem;
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            border: 1px solid #d1d1d66a;
            transform: rotate(3deg);
            position: relative;
            transition: all 0.3s ease-in-out;

            &:hover {
                box-shadow: 0 0 0 transparent;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                transform: rotate(0deg);
            }

            .icon-bottom,
            .icon-top {
                position: absolute;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: #fff;
                border-radius: 1rem;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                border: 1px solid #eee;
                padding: 1rem;

                svg {
                    width: 1.5rem;
                    height: 1.5rem;
                }
            }
            .icon-top {
                top: -1.5rem;
                right: -1.5rem;

                svg {
                    color: var(--primary-color);
                }
            }
            .icon-bottom {
                bottom: -1.5rem;
                left: -1.5rem;

                svg {
                    color: #34d399;
                }
            }
            .dashboard-med {
                display: flex;
                flex-direction: column;
                gap: 2rem;
                padding: 2rem;
                border-radius: 1rem;
                background-image: linear-gradient(to bottom right, #f2f2f7, #fcfcfd);

                .dashboard-med-header {
                    display: flex;
                    justify-content: space-between;

                    h3 {
                        font-size: 1.5rem;
                        font-weight: 600;
                        color: #1c1c1e;
                    }
                }

                .dashboard-med-body {
                    display: flex;
                    flex-direction: column;
                    gap: 2rem;

                    .dashboard-med-items {
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        gap: 1.5rem;

                        .item {
                            padding: 1.5rem;
                            background-color: white;
                            border: 1px solid #e6e6ea;
                            border-radius: 12px;
                            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

                            svg {
                                width: 2.5rem;
                                height: 2.5rem;
                                margin-bottom: 1.25rem;
                            }

                            span {
                                display: block;
                                font-size: 1.875rem;
                                font-weight: 700;
                                color: #1c1c1e;
                            }
                            p {
                                font-size: 0.875rem;
                                color: #8e8e93;
                                font-weight: 500;
                            }
                        }

                        .item:nth-child(1) svg {
                            color: var(--primary-color);
                        }
                        .item:nth-child(2) svg {
                            color: #34d399;
                        }
                        .item:nth-child(3) svg {
                            color: #9724fb;
                        }
                    }
                    .dashboard-med-history {
                        display: flex;
                        flex-direction: column;
                        gap: 1.5rem;

                        .history-item {
                            display: flex;
                            align-items: center;
                            gap: 0.25rem;
                            padding: 1.5rem;
                            background-color: white;
                            border: 1px solid #e6e6ea;
                            border-radius: 12px;
                            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

                            .content {
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                width: 100%;

                                .data {
                                    display: grid;
                                    span {
                                        font-weight: 700;
                                    }
                                }
                            }

                            .icon {
                                background-image: linear-gradient(
                                    to right bottom,
                                    #147d91,
                                    #147d91
                                );
                                width: 3.5rem;
                                height: 3rem;
                                margin-right: 0.5rem;
                                border-radius: 50%;
                            }
                            .status {
                                padding: 0.5rem 1rem;
                                border-radius: 25px;
                                font-size: 0.875rem;
                                font-weight: 600;

                                &.success {
                                    background-color: rgba(0, 214, 136, 0.08);
                                    color: #00d688;
                                }
                                &.wait {
                                    background-color: rgba(0, 89, 255, 0.08);
                                    color: var(--primary-color);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 9;

        .circle-1,
        .circle-2,
        .circle-3 {
            position: absolute;
            border-radius: 50%;
            animation: 4s float ease-in-out infinite;
            opacity: 0.05;
        }
        .circle-1 {
            height: 16rem;
            width: 16rem;
            top: 25%;
            left: 25%;
            background-color: var(--primary-color);
        }
        .circle-2 {
            height: 12rem;
            width: 12rem;
            right: 25%;
            bottom: 25%;
            background-color: rgb(88, 86, 214);
        }
        .circle-3 {
            height: 8rem;
            width: 8rem;
            top: 80%;
            left: 47%;
            background-color: rgb(52, 199, 89);
        }
    }
}

.benefits {
    padding: 5rem 0;

    .benefits-header {
        text-align: center;
        margin-bottom: 6rem;

        h1 {
            font-size: 4.5rem;
            line-height: 1;
            font-weight: 700;
            margin-bottom: 2rem;

            strong {
                display: block;
                background-clip: text;
                /* background-image: linear-gradient(to right, rgb(0, 122, 255), rgb(88, 86, 214)); */
                /* color: transparent; */
                color: #147d91;
            }
        }

        p {
            color: #8e8e93;
            font-size: 1.125rem;
        }
    }

    .benefits-list {
        display: flex;
        flex-direction: column;
        gap: 4rem;
        margin-bottom: 6rem;

        .benefit-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6rem;

            .benefit-item-content {
                display: flex;
                width: 100%;
                flex-direction: column;
                gap: 2rem;

                .benefit-item-text {
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;

                    h3 {
                        font-size: 3rem;
                        font-weight: 700;
                        color: #1c1c1e;
                    }

                    p {
                        color: #8e8e93;
                        max-width: 512px;
                        font-size: 1.25rem;
                        line-height: 1.325;
                    }
                }

                .benefit-item-icon {
                    display: inline-flex;
                    color: #fff;
                    background-color: #147d91;
                    border-radius: 1.5rem;
                    height: 5rem;
                    width: 5rem;
                    align-items: center;
                    justify-content: center;

                    svg {
                        width: 2.5rem;
                        height: 2.5rem;
                    }
                }

                a {
                    text-decoration: none;
                    font-weight: 700;
                    display: flex;
                    gap: 0.75rem;
                    font-size: 1.125rem;
                    color: var(--primary-color);

                    svg {
                        transition: all 0.3s ease-in-out;
                    }

                    &:hover {
                        color: #0056d8;

                        svg {
                            transform: translateX(0.5rem);
                        }
                    }
                }
            }

            .benefit-item-image {
                width: 100%;
                position: relative;

                .benefit-item-image-content {
                    background-color: white;
                    padding: 2rem;
                    width: 100%;
                    position: relative;
                    border-radius: 1.5rem;
                    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
                    transition: all 0.3s ease-in-out;
                    z-index: 0;

                    img {
                        width: 100%;
                        height: 20rem;
                        object-fit: cover;
                    }

                    &:hover {
                        transform: scale(1.05);
                    }
                }
            }
        }
    }

    .benefits-tools {
        .benefits-tools-header {
            text-align: center;
            margin-bottom: 4rem;

            h2 {
                font-size: 2.25rem;
                font-weight: 700;
                color: #1c1c1e;
                margin-bottom: 0.5rem;
            }

            p {
                color: #8e8e93;
                font-size: 1.25rem;
            }
        }
        .benefits-tools-list-preview {
            gap: 4rem;
            display: grid;
            position: relative;
            margin-bottom: 6rem;
            grid-template-columns: repeat(2, 1fr);
            align-items: start;

            .tools-list {
                display: flex;
                flex-direction: column;
                width: 100%;
                gap: 1rem;

                .tool-item {
                    text-decoration: none;
                    cursor: pointer;
                    display: flex;
                    border-radius: 1rem;
                    padding: 1.5rem;
                    background: #f9fafb;
                    align-items: center;
                    gap: 1rem;

                    &.active {
                        background: var(--primary-color);
                        color: white;

                        .tool-item-icon {
                            background: #fff3;
                            color: white;

                            &:hover {
                                background: rgba(255, 255, 255, 0.35);
                            }
                        }

                        .tool-item-text {
                            h3 {
                                color: white;
                            }
                            p {
                                color: #ffffffe6;
                            }
                        }
                    }
                    .tool-item-icon {
                        width: 100%;
                        max-width: 3rem;
                        height: 3rem;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 0.75rem;
                        color: var(--primary-color);
                        background: #007aff1a;
                    }

                    .tool-item-text {
                        display: flex;
                        flex-direction: column;
                        gap: 0.5rem;

                        h3 {
                            font-size: 1.125rem;
                            font-weight: 600;
                            color: #1c1c1e;
                        }

                        p {
                            color: #8e8e93;
                            font-size: 0.875rem;
                        }
                    }
                }
            }

            .tools-preview {
                width: 100%;
                position: sticky;
                top: 5rem;

                .tools-preview-content {
                    background-color: white;
                    padding: 2rem;
                    width: 100%;
                    position: relative;
                    border-radius: 1.5rem;
                    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
                    z-index: 0;

                    .preview-item-icon {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 0.75rem;
                        color: white;
                        background-image: linear-gradient(135deg, #147d91, #147d91);
                    }
                    .preview-item-header {
                        display: flex;
                        align-items: center;
                        gap: 1rem;
                        margin-bottom: 1.5rem;

                        .preview-item-icon {
                            width: 3rem;
                            height: 3rem;
                        }

                        .preview-item-text {
                            h3 {
                                font-size: 1.25rem;
                                font-weight: 600;
                                color: #1c1c1e;
                            }
                            p {
                                color: #8e8e93;
                                font-size: 0.875rem;
                            }
                        }
                    }
                    .preview-item-message {
                        display: flex;
                        align-items: center;
                        flex-direction: column;
                        gap: 0.75rem;
                        justify-content: center;
                        line-height: 1.5rem;
                        height: 16rem;
                        background: #f3f4f6;
                        border-radius: 1rem;

                        .preview-item-icon {
                            width: 4rem;
                            height: 4rem;

                            svg {
                                width: 1.75rem;
                                height: 1.75rem;
                            }
                        }
                        p {
                            color: #4b5563;
                            font-size: 0.875rem;
                        }
                    }
                }
            }
        }
    }

    .benefits-featured {
        text-align: center;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        color: #1c1c1e;
        margin-bottom: 6rem;

        .item {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 2rem;

            .item-icon {
                width: 100%;
                position: relative;

                &.blue-gradient {
                    .item-bg,
                    .icon {
                        background-image: linear-gradient(135deg, #147d91, #47b0c4);
                    }
                }
                &.green-gradient {
                    .item-bg,
                    .icon {
                        background-image: linear-gradient(to right bottom, #147d91, #147d91);
                    }
                }
                &.blue-nogradient {
                    .item-bg,
                    .icon {
                        background: var(--primary-color);
                    }
                }
                .item-bg {
                    display: block;
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    top: 0;
                    left: 0;
                    opacity: 0.35;
                    filter: blur(64px);
                    z-index: -1;
                }

                .icon {
                    margin: auto;
                    width: 7rem;
                    height: 7rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 50%;
                    color: white;
                    font-weight: 700;
                    font-size: 2rem;
                }
            }

            .item-text {
                h3 {
                    font-size: 1.5rem;
                    margin-bottom: 0.5rem;
                    text-align: center;
                    color: #111827;
                }

                p {
                    font-size: 1.125rem;
                    color: #4b5563;
                }
            }
        }
    }
}

.how-it-work {
    background-color: #f9fafb;
    padding: 5rem 0;

    .container {
        display: flex;
        flex-direction: column;
        gap: 4rem;

        .header-title {
            .badge {
                background-color: #dbeafe;
                color: var(--primary-color);
                margin: 0 auto 1rem;
            }
        }

        .how-it-work-steps {
            position: relative;

            .steps-header {
                position: relative;

                .steps {
                    display: grid;
                    grid-template-columns: repeat(6, 1fr);
                    text-align: center;
                    margin-bottom: 4rem;
                    gap: 1rem;

                    .item {
                        cursor: pointer;
                        transition: all 0.3s ease-in-out;

                        &:hover {
                            transform: translateY(-2px);
                        }

                        .icon {
                            border: 2px solid #d1d5db;
                            padding: 1rem;
                            border-radius: 50%;
                            margin: auto;
                            display: flex;
                            width: 4rem;
                            height: 4rem;
                            color: #adadad;
                            align-items: center;
                            justify-content: center;
                            margin-bottom: 1rem;
                            transition: all 0.3s ease-in-out;
                        }

                        &.active {
                            .icon {
                                background-color: var(--primary-color);
                                border-color: var(--primary-color);
                                color: white;
                                transform: scale(1.1);
                            }

                            .text {
                                h3,
                                p {
                                    color: var(--primary-color);
                                    font-weight: 600;
                                }
                            }
                        }

                        &.current {
                            .icon {
                                background-color: var(--primary-color);
                                border-color: var(--primary-color);
                                color: white;
                                transform: scale(1.1);
                                animation: pulse 2s infinite;
                            }

                            .text {
                                h3,
                                p {
                                    color: var(--primary-color);
                                    font-weight: 600;
                                }
                            }
                        }
                        &.complete {
                            .icon {
                                background-color: #10b981;
                                border-color: #10b981;
                                color: white;
                                position: relative;

                                svg {
                                    display: none;
                                }

                                &::after {
                                    content: "✓";
                                    position: absolute;
                                    top: 50%;
                                    left: 50%;
                                    transform: translate(-50%, -50%);
                                    font-size: 1.2rem;
                                    font-weight: bold;
                                }
                            }

                            .text {
                                h3,
                                p {
                                    color: #10b981;
                                    font-weight: 500;
                                }
                            }
                        }

                        &:nth-child(2).current .icon {
                            background-color: #a855f7;
                            border-color: #a855f7;
                        }
                        &:nth-child(3).current .icon {
                            background-color: #22c5c2;
                            border-color: #22c5c2;
                        }
                        &:nth-child(4).current .icon {
                            background-color: #f97316;
                            border-color: #f97316;
                        }
                        &:nth-child(5).current .icon {
                            background-color: #ec4899;
                            border-color: #ec4899;
                        }
                        &:nth-child(6).current .icon {
                            background-color: rgb(224, 211, 22);
                            border-color: rgb(224, 211, 22);
                        }

                        .text {
                            transition: all 0.3s ease-in-out;

                            h3 {
                                font-size: 1rem;
                                margin-bottom: 0.5rem;
                            }
                            p {
                                font-size: 0.875rem;
                                color: #6b7280;
                            }
                        }
                    }
                }
            }

            .steps-content {
                background: #fff;
                border: 1px solid #e2e8f0;
                border-radius: 1rem;
                padding: 2rem;

                .steps-content-item {
                    display: none;
                    opacity: 0;
                    gap: 1.5rem;
                    transition: all 0.5s ease-in-out;

                    &.active {
                        display: flex;
                        opacity: 1;
                        animation: fadeInUp 0.5s ease-in-out;
                    }

                    &:nth-child(2) {
                        .icon {
                            background: #a855f7;
                        }
                        .text {
                            .step-title {
                                .step-number {
                                    background: rgba(169, 85, 247, 0.08);
                                    color: #a855f7;
                                }
                            }
                            .step-requirements {
                                background-color: rgba(169, 85, 247, 0.05);
                                border: 1px solid rgba(169, 85, 247, 0.5);
                                color: rgba(169, 85, 247, 1);
                            }
                        }
                    }
                    &:nth-child(3) {
                        .icon {
                            background: rgba(34, 197, 194);
                        }
                        .text {
                            .step-title {
                                .step-number {
                                    background: rgba(34, 197, 194, 0.08);
                                    color: rgba(34, 197, 194);
                                }
                            }
                            .step-requirements {
                                background-color: rgba(34, 197, 194, 0.05);
                                border: 1px solid rgba(34, 197, 194, 0.5);
                                color: rgb(34, 197, 194);
                            }
                        }
                    }
                    &:nth-child(4) {
                        .icon {
                            background: rgba(249, 115, 22);
                        }
                        .text {
                            .step-title {
                                .step-number {
                                    background: rgba(249, 115, 22, 0.08);
                                    color: rgba(249, 115, 22);
                                }
                            }
                            .step-requirements {
                                background-color: rgba(249, 115, 22, 0.05);
                                border: 1px solid rgba(249, 115, 22, 0.5);
                                color: rgb(249, 115, 22);
                            }
                        }
                    }
                    &:nth-child(5) {
                        .icon {
                            background: rgba(236, 72, 153);
                        }
                        .text {
                            .step-title {
                                .step-number {
                                    background: rgba(236, 72, 153, 0.08);
                                    color: rgba(236, 72, 153);
                                }
                            }
                            .step-requirements {
                                background-color: rgba(236, 72, 153, 0.05);
                                border: 1px solid rgba(236, 72, 153, 0.5);
                                color: rgb(236, 72, 153);
                            }
                        }
                    }
                    &:nth-child(6) {
                        .icon {
                            background: rgb(224, 211, 22);
                        }
                        .text {
                            .step-title {
                                .step-number {
                                    background: rgba(224, 211, 22, 0.08);
                                    color: rgba(224, 211, 22);
                                }
                            }
                            .step-requirements {
                                background-color: rgba(224, 211, 22, 0.05);
                                border: 1px solid rgba(224, 211, 22, 0.5);
                                color: rgb(224, 211, 22);
                            }
                        }
                    }
                    .icon {
                        width: 100%;
                        max-width: 4rem;
                        height: 4rem;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 1rem;
                        background: var(--primary-color);
                        color: #fff;
                    }

                    .text {
                        display: flex;
                        flex-direction: column;
                        gap: 0.675rem;

                        .step-title {
                            display: flex;
                            align-items: center;
                            gap: 0.75rem;

                            h2 {
                                font-size: 1.5rem;
                                font-weight: bold;
                            }
                            .step-number {
                                background: #eff6ff;
                                color: var(--primary-color);
                                padding: 0.25rem 0.75rem;
                                border-radius: 0.5rem;
                            }
                        }
                        .step-description {
                            color: #4b5563;
                            font-size: 1rem;
                            line-height: 1.5;
                        }
                        .step-requirements {
                            background-color: #eff6ff;
                            padding: 0.5rem 1rem;
                            border: 1px solid #9cc3ff;
                            border-radius: 0.5rem;
                            color: var(--primary-color);
                            line-height: 1.5;
                        }
                    }
                }
            }

            .steps-footer {
                display: flex;
                flex-direction: column;
                gap: 2rem;
                align-items: center;
                margin-top: 2rem;

                .dots {
                    display: flex;
                    gap: 0.5rem;

                    .dot {
                        width: 0.75rem;
                        height: 0.75rem;
                        background-color: #d1d5db;
                        border-radius: 50%;
                        cursor: pointer;
                        transition: all 0.3s ease-in-out;

                        &.active {
                            background-color: var(--primary-color);
                        }
                    }
                }
                .btns {
                    display: flex;
                    gap: 0.75rem;
                }
            }
        }
    }
}

.how-it-works-featured {
    background-color: #f2f2f7;
    padding: 5rem 0;

    .tools-list-preview {
        gap: 3rem;
        display: flex;
        position: relative;
        margin-bottom: 6rem;

        .tools-list {
            display: flex;
            flex-direction: column;
            width: 100%;
            gap: 1rem;

            .tool-item {
                cursor: pointer;
                display: flex;
                text-decoration: none;
                border-radius: 1rem;
                padding: 1.5rem;
                background: #fff;
                box-shadow:
                    0 4px 6px -1px rgb(0 0 0 / 0.1),
                    0 2px 4px -2px rgb(0 0 0 / 0.1);
                align-items: center;
                gap: 1rem;

                &.active {
                    transform: scale(1.05);
                    background: var(--primary-color);
                    color: white;

                    .tool-item-icon {
                        background: #fff3;
                        color: white;
                    }

                    .tool-item-text {
                        h3 {
                            color: white;
                        }
                        p {
                            color: #ffffffe6;
                        }
                    }
                }
                .tool-item-icon {
                    width: 100%;
                    max-width: 3rem;
                    height: 3rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 0.75rem;
                    color: var(--primary-color);
                    background: #007aff1a;
                }

                .tool-item-text {
                    display: flex;
                    flex-direction: column;
                    gap: 0.65rem;

                    h3 {
                        font-size: 1.125rem;
                        font-weight: 600;
                        color: #1c1c1e;
                    }

                    p {
                        color: #8e8e93;
                        font-size: 0.925rem;
                    }
                }
            }
        }
        .tools-preview {
            width: 100%;

            .preview-item-header {
                display: flex;
                gap: 1rem;
                padding: 1.5rem;
                color: white;
                border-radius: 1rem 1rem 0 0;
                background-image: linear-gradient(135deg, #147d91, #47b0c4);

                p {
                    color: #fffc;
                }
                .preview-item-icon {
                    width: 3rem;
                    height: 3rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 0.75rem;
                    background: #fff3;
                    color: white;
                }
            }

            .preview-item-body {
                padding: 2rem;
                background: #fff;
                display: flex;
                flex-direction: column;
                gap: 1rem;
                border-radius: 0 0 1rem 1rem;

                .preview-item-message {
                    display: flex;
                    align-items: center;
                    flex-direction: column;
                    gap: 0.75rem;
                    line-height: 1.5rem;
                    height: 16rem;
                    background: #f3f4f6;
                    padding: 1.5rem;
                    border-radius: 1rem;

                    .item-message {
                        text-align: center;
                        display: flex;
                        flex-direction: column;
                        width: 100%;
                        height: 100%;
                        align-items: center;
                        justify-content: center;
                        gap: 0.875rem;

                        svg {
                            width: 5rem;
                            height: 5rem;
                            color: var(--primary-color);
                        }
                    }
                    .options-icon {
                        width: 100%;
                    }
                    p {
                        color: #4b5563;
                        font-size: 0.875rem;
                    }
                }
                .preview-item-info {
                    border-radius: 0.5rem;
                    padding: 0.75rem 1rem;
                    align-items: center;
                    display: flex;
                    gap: 0.5rem;
                    font-size: 0.875rem;
                    color: #636366;
                    background: #f2f2f7;

                    svg {
                        width: 1rem;
                        height: 1rem;
                        color: #636366;
                    }
                }
            }
        }
    }
}

.testimonials {
    background-image: linear-gradient(to right bottom, rgb(239, 246, 255), rgb(240, 253, 244));
    padding: 5rem 0;

    .testimonials-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        margin-bottom: 4rem;

        .all-testimonials {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;

            .testimonial-item {
                transition: all 0.3s ease-in-out;
                transform: scale(0.95);
                opacity: 0.7;
                cursor: pointer;

                &:hover {
                    transform: scale(0.98);
                    opacity: 0.85;
                }

                &.active {
                    transform: scale(1);
                    opacity: 1;
                    border: 2px solid var(--primary-color);
                }

                .testimonial-bottom {
                    gap: 0.125rem;

                    .name {
                        font-size: 1rem;
                    }
                    .specialty {
                        font-size: 0.875rem;
                    }
                    .location {
                        font-size: 0.75rem;
                    }
                }
            }
        }

        .main-testimonial {
            max-width: 56rem;
            position: relative;
            margin: auto;
            text-align: center;
            overflow: hidden;

            .testimonial-slider {
                position: relative;
                width: 100%;
                height: auto;
                min-height: 400px;
            }

            .testimonial-slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                opacity: 0;
                transform: translateX(100%);
                transition: all 0.5s ease-in-out;

                &.active {
                    position: relative;
                    opacity: 1;
                    transform: translateX(0);
                }

                &:first-child.active {
                    position: relative;
                }
            }

            button {
                border: 0px;
                background: #fff;
                padding: 0.5rem;
                border-radius: 50%;
                box-shadow: 0px 4px 13px #0000001a;
                position: absolute;
                top: 50%;
                cursor: pointer;
                transform: translateY(-50%);
                transition: all 0.3s ease-in-out;
                z-index: 10;

                &:hover {
                    background: #f8f9fa;
                    box-shadow: 0px 6px 15px #0000002a;
                    transform: translateY(-50%) scale(1.1);
                }

                svg {
                    width: 1.5rem;
                    height: 1.5rem;
                    color: #6b7280;
                }

                &.btn-prev {
                    left: 15px;
                }

                &.btn-next {
                    right: 15px;
                }
            }

            .testimonial-item {
                padding: 3rem;
                gap: 1.5rem;

                .testimonial-calification {
                    justify-content: center;
                    font-size: 2rem;
                }
                .testimonial-content {
                    p {
                        color: #48484a;
                        font-size: 1.5rem;
                        line-height: 1.5;
                        padding: 0 1rem;
                    }
                }
                .testimonial-bottom {
                    align-items: center;
                    gap: 0.325rem;

                    .name {
                        font-size: 1.125rem;
                        font-weight: 600;
                        color: #1f2937;
                        margin-bottom: 0.25rem;
                    }

                    .specialty {
                        font-size: 0.875rem;
                        color: var(--primary-color);
                        font-weight: 500;
                        margin-bottom: 0.125rem;
                    }

                    .location {
                        font-size: 0.75rem;
                        color: #6b7280;
                    }
                }

                .before-after {
                    gap: 1rem;
                    display: grid;
                    width: 100%;
                    margin: auto;
                    max-width: 32rem;
                    margin-top: 1rem;
                    background: #f2f2f7;
                    padding: 1.5rem;
                    border-radius: 0.75rem;
                    grid-template-columns: repeat(2, 1fr);

                    .before,
                    .after {
                        text-align: center;

                        p {
                            color: #8e8e93;
                            font-size: 0.875rem;
                            margin-bottom: 0.25rem;
                        }

                        span {
                            font-weight: 600;
                        }
                    }

                    .before {
                        span {
                            color: #dc2626;
                        }
                    }

                    .after {
                        span {
                            color: #16a34a;
                        }
                    }
                }
            }
        }

        .testimonial-dots {
            display: flex;
            gap: 0.5rem;

            .dot {
                width: 0.75rem;
                height: 0.75rem;
                border-radius: 50%;
                background-color: #d1d1d6;
                cursor: pointer;
                transition: all 0.3s ease-in-out;

                &.active {
                    background-color: var(--primary-color);
                    transform: scale(1.2);
                }

                &:hover {
                    background-color: #8e8e93;
                }
            }
        }

        .testimonial-item {
            display: grid;
            background: white;
            border: 1px solid #d1d1d680;
            border-radius: 1rem;
            padding: 1.5rem;
            gap: 0.875rem;

            .testimonial-calification {
                color: #facc15;
                display: flex;
                font-weight: bold;
                font-size: 1.5rem;
                gap: 0.25rem;
                align-items: center;
            }

            .testimonial-content {
                p {
                    color: #4b5563;
                    font-size: 0.875rem;
                    line-height: 1.5;
                }
            }

            .testimonial-bottom {
                display: flex;
                flex-direction: column;

                .name {
                    font-size: 1rem;
                    font-weight: 600;
                    color: #1f2937;
                    margin-bottom: 0.25rem;
                }

                .specialty {
                    font-size: 0.875rem;
                    color: var(--primary-color);
                    font-weight: 500;
                    margin-bottom: 0.125rem;
                }

                .location {
                    font-size: 0.75rem;
                    color: #6b7280;
                }
            }

            &.active {
                border: 1px solid var(--primary-color);
            }
        }
    }
    .advertisement-white {
        .content {
            padding: 2rem;
            border-radius: 1rem;

            .text {
                margin-bottom: 2rem;

                h2 {
                    font-size: 1.5rem;
                    font-weight: 700;
                    margin-bottom: 0;
                }
            }
        }
        .ad-featured {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;

            .item {
                h3 {
                    font-size: 1.875rem;
                    font-weight: 700;
                    margin-bottom: 0.5rem;
                    color: var(--primary-color);
                }
                p {
                    font-size: 0.875rem;
                    color: #636366;
                }
                &:nth-child(2) h3 {
                    color: rgb(0, 226, 87);
                }
                &:nth-child(3) h3 {
                    color: rgb(10, 0, 48);
                }
            }
        }
    }
    .advertisement-blue {
        max-width: 56rem;
        border-radius: 1rem;
        margin: 4rem auto 0;
    }
}

.pricing {
    padding: 5rem 0;
    background-color: linear-gradient(to right bottom, rgb(242, 242, 247), rgb(255, 255, 255));

    .header-title {
        .badge {
            background-color: #34c7591a;
            color: #34c759;
            margin: 1.5rem auto 0;
            border: 1px solid #34c7595c;
            align-items: center;
            gap: 10px;

            svg {
                width: 1rem;
                height: 1rem;
            }
        }
    }

    .pricing-plans {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 6rem;

        .plan-item {
            display: flex;
            flex-direction: column;
            padding: 2rem;
            gap: 2rem;
            border: 1px solid #d1d1d680;
            border-radius: 1rem;
            background-color: white;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);

            .header {
                text-align: center;

                h3 {
                    font-size: 1.5rem;
                    font-weight: 700;
                    margin-bottom: 0.5rem;
                }
                p {
                    color: #8e8e93;
                    margin-bottom: 1.5rem;
                }
                span {
                    font-size: 3rem;
                    font-weight: 700;
                    margin-bottom: 0.5rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 0.5rem;

                    b {
                        opacity: 0.5;
                        font-size: 0.875rem;
                        font-weight: 400;
                    }
                }
                a {
                    padding: 0.75rem 1rem;
                    width: 100%;
                    display: block;
                    border-radius: 2rem;
                    text-decoration: none;
                    font-weight: 600;
                }
            }
            ul {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;

                span {
                    font-size: 1.125rem;
                    font-weight: 700;
                    color: #1c1c1e;
                    margin-bottom: 0.25rem;

                    &.no-incluye {
                        color: #505050;
                        opacity: 0.25;
                        margin-top: 0.25rem;
                    }
                }
                li {
                    list-style: none;
                    color: #575757;

                    &.incluye::before {
                        content: "✔";
                        color: #34c759;
                        margin-right: 0.65rem;
                    }
                    &.no-incluye::before {
                        content: "✖";
                        color: #505050;
                        margin-right: 0.65rem;
                    }
                    &.no-incluye {
                        opacity: 0.25;
                    }
                }
            }
            &.plan-hover {
                a {
                    border: 2px solid var(--primary-color);
                    color: var(--primary-color);
                    background: white;

                    &:hover {
                        color: white;
                        background: var(--primary-color);
                        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                    }
                }

                &:hover {
                    transform: scale(1.05);
                    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
                }
            }
            &.popular {
                transform: scale(1.05);
                border: 2px solid var(--primary-color);

                a {
                    background: var(--primary-color);
                    color: white;

                    &:hover {
                        background: #278fff;
                        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                    }
                }
                .badge {
                    margin: auto;
                    background-image: linear-gradient(to right bottom, rgb(0, 122, 255), rgb(88, 86, 214));
                    color: white;
                    position: absolute;
                    top: -16px;
                    left: 50%;
                    translate: -50%;
                    padding: 0.5rem 1.5rem;
                }
            }
        }
    }

    .ad-featured {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;

        .item {
            svg {
                width: 2rem;
                height: 2rem;
                color: #34c759;
                margin-bottom: 0.5rem;
            }
            h3 {
                font-size: 1rem;
                font-weight: 600;
                color: #111827;
                margin-bottom: 0.25rem;
            }
            p {
                font-size: 0.875rem;
                color: #6b7280;
            }
        }
    }
}

.faq {
    padding: 5rem 0;

    .faq-tabs {
        max-width: 72rem;
        margin: 0 auto;
        margin-bottom: 3rem;

        .tabs {
            display: flex;
            gap: 1rem;
            justify-content: center;

            button {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0.75rem 1.5rem;
                border-radius: 0.75rem;
                border: 0px;
                background: #e5e5ea;
                color: #8e8e93;
                font-size: 1rem;
                font-weight: 500;
                cursor: pointer;
                gap: 0.5rem;
                transition: all 0.3s ease;

                &:hover {
                    background: #d1d1d6;
                    color: var(--primary-color);
                }
                &.active {
                    background-image: linear-gradient(to right bottom, #147d91, #147d91);
                    color: white;
                }
            }
        }
        .tab-content {
            display: none;
            transition: all 0.3s ease-in-out;

            &.active {
                display: block;
            }
        }
        .faq-list {
            margin-top: 2rem;

            .faq-item {
                display: flex;
                flex-direction: column;
                margin-bottom: 1rem;
                border: 1px solid #d1d1d680;
                border-radius: 1rem;
                background-color: #fff;
                box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);

                &:hover {
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                }
                .faq-item-header {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    background-color: transparent;
                    padding: 1.5rem;
                    cursor: pointer;
                    border: 0;
                    border-radius: 1rem 1rem 0 0;

                    &:hover {
                        background-color: #f9f9f9;
                    }

                    h3 {
                        margin: 0;
                        font-size: 1.125rem;
                        color: #1c1c1e;
                    }

                    svg {
                        width: 1.5rem;
                        height: 1.5rem;
                        transition: transform 0.3s ease;

                        &.active {
                            transform: rotate(180deg);
                        }
                    }
                }

                .faq-item-content {
                    padding: 1.5rem;
                    border-top: 1px solid #eee;

                    p {
                        padding: 0 1rem;
                        border-left: 3px solid #007bff;
                        font-size: 0.925rem;
                        margin: 0;
                        line-height: 1.625;
                        color: #8e8e93;
                    }
                }
            }
        }
    }
    .advertisement-blue {
        margin: auto;
        max-width: 72rem;
        padding: 2rem;
        border-radius: 1rem;
    }
    .cols-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 4rem;

        .col {
            text-align: center;

            h3 {
                font-size: 1.875rem;
                margin-bottom: 0.5rem;
            }
            p {
                font-size: 0.875rem;
                color: #6b7280;
            }

            &:nth-child(1) h3 {
                color: var(--primary-color);
            }
            &:nth-child(2) h3 {
                color: #34c759;
            }
            &:nth-child(3) h3 {
                color: #0e0033;
            }
        }
    }
}

footer {
    background-color: #1c1c1e;
    color: #fff;

    .container {
        max-width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .top-footer {
        display: grid;
        max-width: 1400px;
        margin: auto;
        grid-template-columns: repeat(4, 1fr);
        padding: 4rem 1rem;
        gap: 2rem;

        .footer-logo {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;

            .logo {
                display: flex;
                gap: 0.5rem;
                align-items: center;

                h1 {
                    font-size: 1.5rem;
                    font-weight: 700;
                    color: #fff;
                }
            }
            span {
                color: #8e8e93;
                font-size: 1rem;
                line-height: 1.5;
                font-weight: 400;
            }
            .menu-item {
                ul li a svg {
                    color: var(--primary-color);
                }
            }
        }
    }

    .middle-footer {
        padding: 2rem 1.5rem;
        max-width: 1400px;
        margin: auto;

        .advertisement-blue {
            padding: 2rem;
            border-radius: 1rem;

            .content {
                margin-bottom: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            button {
                padding: 0.75rem 2.5rem;
            }
        }
    }

    .bottom-footer {
        display: flex;
        max-width: 1400px;
        margin: auto;
        justify-content: space-between;
        padding: 1.5rem 1rem;

        span {
            margin: 0;
            color: #8e8e93;
            font-size: 0.875rem;
        }

        ul {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
    }

    .menu-item {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;

        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        ul {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;

            li {
                list-style: none;
                font-size: 1rem;
                color: #8e8e93;

                a {
                    color: #8e8e93;
                    gap: 0.75rem;
                    display: flex;
                    align-items: center;
                    text-decoration: none;
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        color: #fff;
                    }
                }
            }
        }
    }
}

.header-title {
    text-align: center;
    margin-bottom: 4rem;

    h1 {
        font-size: 3rem;
        font-weight: 700;
        color: #111827;
        margin-bottom: 1.5rem;
    }
    p {
        margin: 0 auto;
        max-width: 48rem;
        color: #4b5563;
        font-size: 1.25rem;
        line-height: 1.5;
    }
}

.btn {
    cursor: pointer;
    background-color: var(--primary-color);
    border: 0;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease-in-out;
    line-height: 1.75rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    &:hover {
        background-color: #278fff;
        transform: scale(1.05);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

.btn-outline {
    line-height: 1.75rem;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;

    &:hover {
        background-color: var(--primary-color);
        color: white;
        transform: scale(1.05);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

.card-bg {
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgb(0, 122, 255), rgb(88, 86, 214));
    position: absolute;
    top: 0;
    border-radius: 24px;
    left: 0;
    opacity: 0.2;
    filter: blur(64px);
    z-index: -1;
}

.advertisement-white {
    display: block;
    max-width: 56rem;
    margin: auto;
    position: relative;

    .content {
        background-color: #fff;
        border-color: #f3f4f6;
        border-radius: 2rem;
        box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        padding: 3rem;
        text-align: center;
    }
    .text {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
        margin-bottom: 2.5rem;

        h2 {
            font-size: 2.25rem;
            font-weight: bold;
        }
        p {
            padding: 0 3rem;
            font-weight: 400;
            color: #4b5563;
            font-size: 1.25rem;
            text-align: center;
        }
    }
    .advertisement-btns {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }
}

.advertisement-blue {
    display: block;
    background-image: linear-gradient(135deg, #147d91, #327665);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    .content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
        margin-bottom: 2.5rem;

        h2 {
            font-size: 1.875rem;
            font-weight: bold;
            color: #fff;
        }
        p {
            max-width: 40rem;
            margin: auto;
            color: #dbeafe;
            font-size: 1.125rem;
        }
    }
    .advertisement-btns {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;

        .btn {
            color: var(--primary-color);
            background-color: white;

            &:hover {
                background-color: #f3f4f6;
                transform: scale(1.05);
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            }
        }

        .btn-outline {
            color: white;
            background-color: transparent;
            border: 2px solid white;

            &:hover {
                background-color: white;
                color: var(--primary-color);
                transform: scale(1.05);
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            }
        }
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Animaciones para los pasos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1.1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.how-it-work-steps {
    .steps .item {
        position: relative;

        &::after {
            content: "";
            position: absolute;
            top: 2rem;
            right: -50%;
            width: 100%;
            height: 2px;
            background-color: #e5e7eb;
            transform: translateY(-50%);
            z-index: -1;
            transition: background-color 0.3s ease;
        }

        &:last-child::after {
            display: none;
        }

        &.complete::after {
            background-color: #10b981;
        }

        &.current::after {
            background: linear-gradient(90deg, #10b981 0%, #e5e7eb 100%);
        }

        &:hover:not(.active):not(.current):not(.complete) {
            .icon {
                border-color: var(--primary-color);
                background-color: rgba(59, 130, 246, 0.1);
                color: var(--primary-color);
            }
        }
    }
}

/* Barra de progreso */
.steps-bar {
    position: absolute;
    bottom: -2rem;
    left: 0;
    right: 0;
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: var(--progress-width, 16.67%);
        background: linear-gradient(90deg, #005ab1, var(--primary-color), #60a5fa);
        border-radius: 3px;
        transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
    }

    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: var(--progress-width, 16.67%);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
        border-radius: 3px;
        animation: shimmer 2s infinite;
    }
}

/* Estilos adicionales para la funcionalidad de steps */
.steps-footer {
    .btns {
        button:disabled {
            cursor: not-allowed !important;
            opacity: 0.5 !important;
            transform: none !important;
        }

        .btn.demo-running {
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e, #ff6b6b);
            background-size: 200% 100%;
            animation: demo-pulse 2s ease-in-out infinite;
        }
    }

    .dots .dot {
        &:hover {
            transform: scale(1.2);
            opacity: 0.8;
        }
    }
}

@keyframes demo-pulse {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media screen and (max-width: 1024px) {
    .hero {
        .container {
            padding-top: 6rem;
            padding-bottom: 3rem;
            gap: 3rem;

            .hero-content {
                h1 {
                    font-size: 3rem;
                }
                p {
                    font-size: 1.25rem;
                    margin-bottom: 2rem;
                }
                .hero-btns {
                    margin-bottom: 3rem;
                }
                .hero-cols-3 {
                    gap: 0.5rem;
                    grid-template-columns: repeat(2, 1fr);

                    .hero-col {
                        padding: 0.5rem;

                        h3 {
                            font-size: 1.75rem;
                            margin: 0;
                        }

                        &:last-child {
                            grid-column: span 2;
                        }
                    }
                }
            }
            .hero-featured {
                padding: 1.25rem;
                transform: rotate(0deg);

                .dashboard-med {
                    padding: 1.25rem;
                    gap: 1.5rem;

                    .dashboard-med-body {
                        gap: 1rem;

                        .dashboard-med-items {
                            grid-template-columns: repeat(2, 1fr);
                            gap: 0.75rem;

                            .item {
                                padding: 1rem;

                                &:last-child {
                                    grid-column: span 2;
                                }
                                svg {
                                    width: 1.75rem;
                                    height: 1.75rem;
                                    margin-bottom: 0.25rem;
                                }
                                span {
                                    font-size: 1.25rem;
                                }
                            }
                        }

                        .dashboard-med-history {
                            gap: 0.5rem;

                            .history-item {
                                padding: 1rem;
                            }
                        }
                    }
                }
            }
        }
    }
    .testimonials {
        .testimonials-container {
            .all-testimonials {
                gap: 0.5rem;
            }
        }
    }
    .pricing {
        .pricing-plans {
            grid-template-columns: repeat(2, 1fr);

            .plan-item {
                &:last-child {
                    grid-column: span 2;
                }
            }
        }
    }
    .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
        border-radius: 12px;
    }
}

@media screen and (max-width: 991px) {
    .hero {
        .container {
            gap: 3rem;
            grid-template-columns: 1fr;

            .hero-content {
                h1 {
                    text-align: center;
                    font-size: 3rem;
                }
                p {
                    text-align: center;
                    font-size: 1.25rem;
                    margin-bottom: 2rem;
                }
                .hero-btns {
                    justify-content: center;
                    gap: 1rem;
                    margin-bottom: 2rem;
                }
                .hero-cols-3 {
                    grid-template-columns: repeat(3, 1fr);

                    .hero-col {
                        padding: 0.75rem;

                        &:last-child {
                            grid-column: span 1;
                        }
                    }
                }
            }
            .hero-featured {
                .dashboard-med {
                    padding: 1.5rem;

                    .dashboard-med-body {
                        gap: 1rem;

                        .dashboard-med-items {
                            grid-template-columns: repeat(3, 1fr);

                            .item {
                                &:last-child {
                                    grid-column: span 1;
                                }
                            }
                        }
                    }
                }
                .icon-bottom {
                    bottom: -0.5rem;
                    left: -0.5rem;
                }
                .icon-top {
                    top: -0.5rem;
                    right: -0.5rem;
                }
            }
        }
    }
    .benefits {
        .benefits-header {
            h1 {
                font-size: 3.5rem;
            }
        }
        .benefits-list {
            .benefit-item {
                gap: 3rem;
            }
        }
        .benefits-tools {
            .benefits-tools-list-preview {
                gap: 2rem;
            }
        }
    }
    .testimonials {
        .testimonials-container {
            .all-testimonials {
                gap: 0.5rem;
            }
        }
    }
    .pricing {
        .pricing-plans {
            grid-template-columns: repeat(2, 1fr);

            .plan-item {
                &:last-child {
                    grid-column: span 2;
                }
            }
        }
    }
    .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
        border-radius: 12px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
    .benefits {
        .benefits-list {
            .benefit-item {
                flex-direction: column;
                align-items: center;

                .benefit-item-content {
                    .benefit-item-text {
                        h3 {
                            font-size: 2rem;
                        }
                    }
                }
            }
        }
        .benefits-tools {
            .benefits-tools-list-preview {
                grid-template-columns: repeat(1, 1fr);

                .tools-preview {
                    order: -1;
                    position: relative;
                    top: 0;

                    .tools-preview-content {
                        .preview-item-message {
                            height: 12rem;
                        }
                    }
                }
            }
        }
        .benefits-featured {
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }
    }
    .how-it-works-featured {
        .tools-list-preview {
            flex-direction: column-reverse;
            gap: 1.5rem;
        }
    }
    .testimonials {
        .testimonials-container {
            .all-testimonials {
                gap: 0.5rem;
                grid-template-columns: repeat(2, 1fr);
            }
        }
    }
    .faq {
        .faq-tabs {
            .tabs {
                flex-wrap: wrap;
            }
        }
    }
    footer {
        .top-footer {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    header {
        .burger {
            display: block;
        }
        .container {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .nav-links {
                display: none;
            }

            .auth-buttons {
                display: none;
            }
        }
    }
}

@media screen and (max-width: 640px) {
    .container {
        padding-right: 2rem;
        padding-left: 1.5rem;
    }
    .hero {
        .container {
            .hero-content {
                h1 {
                    font-size: 2.5rem;
                }
                .hero-btns {
                    flex-direction: column;
                    gap: 1rem;
                }
                .hero-cols-3 {
                    grid-template-columns: repeat(1, 1fr);
                }
            }
            .hero-featured {
                .dashboard-med {
                    .dashboard-med-body {
                        .dashboard-med-items {
                            grid-template-columns: repeat(2, 1fr);
                        }
                        .dashboard-med-history {
                            .history-item {
                                .content {
                                    .data {
                                        span {
                                            font-size: 0.875rem;
                                        }
                                        p {
                                            font-size: 0.5rem;
                                        }
                                    }
                                }
                                .status {
                                    font-size: 0.75rem;
                                    padding: 0.25rem 0.5rem;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    .how-it-work {
        .container {
            gap: 0;
            .how-it-work-steps {
                margin-bottom: 2rem;
                .steps .item {
                    &::after {
                        display: none;
                    }
                }
                .steps-content {
                    .steps-content-item {
                        flex-direction: column;
                        align-items: center;
                        text-align: center;
                        .text {
                            .step-title {
                                justify-content: space-between;

                                h2 {
                                    font-size: 1.25rem;
                                    text-align: left;
                                }
                            }
                            .step-description {
                                text-align: justify;
                            }
                        }
                    }
                }
                .steps-header {
                    .steps {
                        grid-template-columns: repeat(2, 1fr);
                    }
                }
                .steps-footer {
                    .btns {
                        width: 100%;
                        flex-direction: column;
                        gap: 0.5rem;

                        button {
                            width: 100%;
                        }
                    }
                }
            }
        }
    }
    .faq {
        .cols-3 {
            grid-template-columns: repeat(1, 1fr);
        }
    }
    .pricing {
        .pricing-plans {
            padding: 0 0.75rem;
            gap: 3rem;
            .plan-item {
                grid-column: span 2;
            }
        }
        .ad-featured {
            grid-template-columns: repeat(1, 1fr);
        }
    }
    .testimonials {
        .advertisement-white {
            .ad-featured {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }
        .testimonials-container {
            .all-testimonials {
                grid-template-columns: repeat(1, 1fr);
            }
            .main-testimonial {
                .testimonial-item {
                    .testimonial-content {
                        p {
                            font-size: 1rem;
                            padding: 0;
                        }
                    }
                }
            }
        }
    }
    .benefits {
        .benefits-header {
            h1 {
                font-size: 2.25rem;
                margin-bottom: 1rem;
            }
            p {
                font-size: 1.25rem;
            }
        }
    }
    footer {
        .top-footer {
            padding: 3rem 0;
            grid-template-columns: repeat(1, 1fr);
        }
        .middle-footer {
            padding: 2rem 0;
        }
        .bottom-footer {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
            padding: 2rem 0;
        }
    }
    .advertisement-blue {
        max-width: 100%;
        padding: 2rem 1.5rem;
        border-radius: 1rem;

        .advertisement-btns {
            flex-direction: column;
            gap: 0.5rem;

            Button {
                width: 100%;
            }
        }
    }
    .advertisement-white {
        .content {
            border-radius: 1rem;
            padding: 2rem 1.5rem;
        }
        .text {
            h2 {
                font-size: 2rem;
            }
            p {
                padding: 0;
                font-size: 1rem;
            }
        }
        .advertisement-btns {
            flex-direction: column;
            gap: 0.5rem;

            Button {
                width: 100%;
            }
        }
    }
    .header-title {
        h1 {
            font-size: 2.25rem;
        }
        p {
            font-size: 1.25rem;
        }
    }
}
