:root {
    --primary-color: #0267FC;
    --secondary-color: #1a1a1a;
    --accent-color: hsl(0, 0%, 15%);
    --light: #fff;
    --dark: hsl(0, 0%, 5%);
    --text-color: rgb(176, 170, 161);
}


html {
    scroll-behavior: smooth;
}

/* ---------------------------------------------------------------- Lista de Botões  ---------------------------------------------------------------- */
a {
    color: var(--light);
}

@font-face {
    font-family: 'Carmen-Sans';
    src: url('../assets/fonts/carmen-sans-heavy.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.btn-signup,
.btn-login,
.btn-secondary,
.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 12rem;
    width: 100%;
    padding: .8rem 1rem;
    height: fit-content;
    border-radius: .4rem;
    font-weight: 500;
}

.btn-secondary,
.btn-signup {
    background-color: var(--light);
    color: var(--primary-color);
}

.btn-primary,
.btn-login {
    background-color: var(--primary-color);
    color: var(--light);
}


.btn-rounded {
    max-width: 12rem;
    width: 100%;
    padding: .8rem 1rem;
    margin-top: auto;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 20rem;
    transition: all .1s;

    &:hover {
        background-color: var(--dark);
        color: var(--light);
    }
}

/* ---------------------------------------------------------------- Notifications  ---------------------------------------------------------------- */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 360px;
    background-color: #fff;
    border-left: 5px solid #007bff;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: 'Segoe UI', sans-serif;
    z-index: 1000;
    animation: fadeInUp 0.4s ease;

    & .notification-ico {
        font-size: 1.8rem;
        color: #007bff;
        margin-top: 0.25rem;
    }

    & .notification-wrapper {
        flex: 1;

        & notification-title {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            margin: 0 0 0.5rem;
        }

        & .notification-text {
            font-size: 0.875rem;
            color: #555;
            margin-bottom: 1rem;
        }

        & .btn-list {
            display: flex;
            gap: 0.5rem;

            .btn-allow,
            .btn-deny {
                padding: 0.5rem 1rem;
                font-size: 0.875rem;
                border: none;
                border-radius: 6px;
                cursor: pointer;
                transition: background 0.2s ease;
            }

            .btn-allow {
                background-color: #007bff;
                color: #fff;

                &:hover {
                    background-color: #0056b3;
                }
            }

            .btn-deny {
                background-color: #f0f0f0;
                color: #333;

                &:hover {
                    background-color: #e0e0e0;
                }
            }
        }
    }






}

/* ---------------------------------------------------------------- Navbar  ---------------------------------------------------------------- */
.header-container {
    width: 100%;
    position: fixed;
    padding: .5rem 1rem;
    background-color: transparent;
    height: fit-content;
    color: var(--light);
    z-index: 9;
    transition: all .1s;
    top: 0;
    left: 0;

    &.active {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    & .btn-close-navbar i {

        color: var(--light);
        font-size: 1.2rem;
    }

    & .logo {
        max-width: 30px;
    }

    & .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100svh;
        background-color: var(--secondary-color);
        z-index: 9;
        color: var(--light);
        transition: all 0.3s ease;
        overflow-x: hidden;

        &.active {
            right: 0;

            & .nav-list {


                & .list-item {
                    padding: 1rem;
                    border-bottom: 2px solid var(--accent-color);
                }

                & .nav-link {
                    font-weight: 400;
                    background-color: var(--secondary-color);

                }

                & .btn-list {

                    gap: 1rem;
                }
            }
        }

        & .btn-close {
            padding: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--light);

            & p {
                font-weight: bold;
            }

            & button {
                background-color: transparent;
                color: var(--light);
            }
        }

        & .nav-list {
            display: flex;
            flex-direction: column;
            height: 100%;

            & .list-item {
                padding: 1rem;
                border-bottom: 2px solid var(--accent-color);
            }

            & .nav-link {
                font-weight: 400;


            }

            & .btn-list {
                margin-top: 2rem;
                display: flex;
                justify-content: center;
            }
        }

    }
}

/* ---------------------------------------------------------------- Index  ---------------------------------------------------------------- */
#index {
    color: var(--dark);
    background-color: var(--dark);



    @keyframes fadeInUp {
        from {
            transform: translate(-50%, 30px);
            opacity: 0;
        }

        to {
            transform: translate(-50%, 0);
            opacity: 1;
        }
    }


    @keyframes fadeInUp {
        from {
            transform: translate(-50%, 30px);
            opacity: 0;
        }

        to {
            transform: translate(-50%, 0);
            opacity: 1;
        }
    }


    @keyframes fadeInUp {
        from {
            transform: translate(-50%, 30px);
            opacity: 0;
        }

        to {
            transform: translate(-50%, 0);
            opacity: 1;
        }
    }


    & .container {
        margin: 0 auto;
        padding: 1rem;
        max-width: 1660px;
        width: 100%;
    }



    & .title {
        font-size: clamp(2.6rem, 5vw, 2.8rem);
        font-weight: 700;
        color: var(--light);
        line-height: 1.1;
        margin-bottom: 1rem;
        font-family: 'Carmen-Sans', sans-serif;


        & span {
            font-family: 'Carmen-Sans', sans-serif;
            color: var(--primary-color);
        }
    }

    & .sub-title {
        font-size: clamp(1.4rem, 3vw, 2rem);
        font-weight: 500;
        color: var(--light);
        line-height: 1.2;
        margin-bottom: 0.75rem;
        font-family: 'Carmen-Sans', sans-serif;
    }

    & .text {
        letter-spacing: -1px;
        font-size: clamp(1rem, 1.5vw, 1.2rem) !important;
        font-weight: 400;
        color: var(--text-color);
        line-height: 1.6;
    }

    & .hero-container {
        position: relative;
        z-index: 1;

        &::after {
            content: "";
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            right: 0;
            bottom: 0;
            inset: 0;
            background-image: url('../assets/img/background.png');
            background-repeat: no-repeat;
            background-size: 100%;
            z-index: -1;
            opacity: 1;
        }

        & .title {
            max-width: 900px;
        }

        & .text {
            max-width: 540px;
        }

        & .img-banner {
            display: flex;
            justify-content: flex-end;
            padding: 0rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow:
                0 8px 32px rgba(2, 103, 252, 0.12),
                0 1.5px 4px rgba(0, 0, 0, 0.18);
            position: relative;
            overflow: hidden;

            & img {
                display: block;
                width: 100%;
                height: auto;
                max-width: 480px;
                margin: 0 auto;
            }
        }
    }

    & .features-container {
        padding: 1rem;

        & .wrapper {
            padding: 1rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            color: var(--light);

            & .card {
                padding: 1rem;
                background-color: var(--secondary-color);
                border-radius: .4rem;
                border: .15rem solid var(--accent-color);

                & .card-title {
                    font-size: 1.4rem;
                }

                & .card-text {
                    font-size: 1.2rem;
                }
            }
        }

        & i {
            font-size: 2rem;
        }
    }

    & .services-container {
        & .wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;

            & .card {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 2rem;
                gap: 2rem;
                background-color: var(--accent-color);
                color: var(--primary-color);
                box-shadow: 0 4px 24px rgba(9, 105, 248, 0.08), 0 1.5px 4px rgba(0, 0, 0, 0.12);
                border-radius: .5rem;


                & .card-ico {
                    font-size: 3rem;
                    color: var(--light);
                }

                & .card-title {
                    font-size: 1.2rem;
                    font-weight: 500;
                    text-align: center;
                    color: var(--light);
                }
            }
        }

        & .input-item {
            position: relative;
            border: 2px solid var(--accent-color);
            color: var(--light);
            border-radius: .8rem;
            transition: border-color 0.2s;

            & li {
                padding: .5rem !important;
            }

            &:hover {
                border-color: var(--primary-color);
            }

            & .service-input {
                padding: 1rem;
                flex: 1;
                font-size: 1.1rem;
                color: var(--light);



                &::placeholder {
                    font-size: 1.2rem;
                }
            }

            & .btn-close {
                position: absolute;
                right: 0;
            }

            & i {
                padding: .5rem 1rem;
                color: var(--light);
            }

            & .list-item {
                display: none;
                position: absolute;
                width: 100%;
                left: 0;
                top: 100%;
                border: 2px solid var(--primary-color);
                border-radius: .8rem;
                z-index: 10;
                background-color: var(--dark);

                &.active {
                    display: block;
                }
            }
        }
    }

    & .howitworks-container {
        & .howitworks-inner {
            max-width: 1660px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--primary-color) 0%, #003a80 100%);
            padding: max(1rem, 3vw);
            border-radius: 1rem;
            box-shadow: 0 4px 24px rgba(2, 103, 252, 0.08), 0 1.5px 4px rgba(0, 0, 0, 0.10);
        }

        & .text {
            color: var(--light);
        }

        & .btn-user {
            padding: .6rem 1.2rem;
            background: linear-gradient(90deg, #338cff 0%, #3d6beb 100%);
            box-shadow: 0 2px 8px rgba(20, 15, 11, 0.12);
            border-radius: .6rem;
            font-weight: 600;
            font-size: max(.9rem, 1vw);
            color: var(--light);
        }

        & .btn-user.active {
            background: linear-gradient(90deg, #140F0B 0%, #23201c 100%);
            color: #fff;
            box-shadow: 0 2px 8px rgba(20, 15, 11, 0.12);
        }

        & .steps-container {
            display: flex;
            flex-direction: column;

            & .card {
                padding: .5rem;
                background: rgba(255, 255, 255, 0.08);
                border-radius: 1rem;
                box-shadow: 0 4px 24px rgba(2, 103, 252, 0.10), 0 1.5px 4px rgba(0, 0, 0, 0.10);
                display: flex;
                flex-direction: column;
                align-items: center;
                transition: transform 0.18s cubic-bezier(.4, 0, .2, 1), box-shadow 0.18s;
                cursor: pointer;
                color: var(--light);

                &:hover {
                    transform: translateY(-6px) scale(1.03);
                    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
                }

                & .ico {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 64px;
                    height: 64px;
                    border-radius: 50%;
                    background: linear-gradient(135deg, var(--primary-color) 60%, #007bff 100%);
                    box-shadow: 0 2px 8px rgba(2, 103, 252, 0.10);
                    margin-bottom: 1.25rem;
                    color: #fff;
                    font-size: 2.2rem;
                    transition: background 0.2s;
                }

                & .card-title {
                    font-size: 1rem;
                    text-align: center;
                }
            }
        }
    }

    & .plans-container {
        & .plans-slider {
            & .card-wrapper {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 600px;

                & .card {
                    display: flex;
                    flex-direction: column;
                    padding: 2rem;
                    max-width: 550px;
                    width: 100%;
                    height: 100%;
                    border-radius: 1rem;
                    background: linear-gradient(0deg, #5B6CBF 0%, var(--primary-color) 100%);
                    color: var(--light);

                    & .card-title {
                        font-size: max(1.4rem, 2vw);
                        font-weight: 600;
                    }

                    & .card-misc {
                        padding: .5rem 1rem;
                        background-color: #609dffd3;
                        border-radius: 20rem;
                        font-size: max(.9rem, .9vw);
                    }

                    & .card-price {
                        font-weight: bold;
                        font-size: 2rem;

                        & span {
                            font-size: 1.1rem;
                        }
                    }

                    & .list-group {
                        font-size: 1.2rem;
                    }

                    & .btn-rounded {
                        margin-top: auto;
                        background-color: var(--light);

                        &:hover {
                            background-color: var(--dark);
                        }
                    }
                }
            }
        }
    }

    & .creators-container {
        background: linear-gradient(0deg, #5B6DC0 0%, var(--primary-color) 100%);

        & .container {
            padding: 0;

            & .caption {
                padding: 2rem;
                max-width: 600px;

                & .text {
                    color: hsl(0, 0%, 90%);
                }

                & .btn-rounded {
                    background-color: var(--light);

                    &:hover {
                        background-color: var(--dark);
                    }
                }
            }
        }
    }

    & .footer-container {
        background: #000;
        color: #e0e6f6;
        padding: 3rem 0 1.5rem 0;
        width: 100%;
        font-family: 'Sora', sans-serif;

        & .container {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            justify-content: space-between;
            align-items: flex-start;
        }

        & .footer-title {
            color: #fff;
            font-size: max(1.2rem, 1.5vw);
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
        }

        & .footer-text {
            color: #e0e6f6;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        & .footer-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        & .footer-form input[type="email"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border-radius: 2rem;
            border: none;
            background: #181818;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: background 0.2s;
        }

        & .footer-form input[type="email"]:focus {
            background: #23201c;
        }

        & .btn-submit {
            background: linear-gradient(90deg, #0267FC 0%, #5C6DBF 100%);
            color: #fff;
            border: none;
            border-radius: 2rem;
            padding: 0.7rem 1.2rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        & .btn-submi:hover,
        & .btn-submi:focus {
            background: linear-gradient(90deg, #0052ce 0%, #3d6beb 100%);
            transform: translateY(-2px) scale(1.04);
        }

        & .footer-links,
        & .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        & .footer-links a {
            color: #e0e6f6;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.18s;
            border-radius: 0.3rem;
            padding: 0.2rem 0.5rem;
        }

        & .footer-links a:hover,
        & .footer-links a:focus {
            color: #0267FC;
            background: #181818;
        }

        & .footer-contact li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #e0e6f6;
            font-size: 1rem;
        }

        & .footer-contact i {
            color: #0267FC;
            font-size: 1.1rem;
        }

        & .footer-bottom {
            border-top: 1px solid #23201c;
            margin-top: 2rem;
            padding-top: 1.2rem;
            text-align: center;
        }

        & .footer-copy {
            color: #888;
            font-size: 0.98rem;
            letter-spacing: 0.2px;
        }
    }

    @media (min-width: 768px) {
        & .plans-container {
            & .plans-slider {
                & .card-wrapper {
                    align-items: unset;
                    justify-content: unser;
                }

                & swiper-slide:nth-of-type(1) .card-wrapper {
                    justify-content: flex-end;
                }
            }
        }
    }

    @media (min-width: 992px) {
        & .hero-container {
            position: relative;
            z-index: 1;

            &::after {
                background-image: url('../assets/img/background.png');
            }
        }
    }

    @media (max-width: 1024px) {
        & .footer-container .container {
            gap: 1.5rem;
        }
    }

    @media (max-width: 900px) {
        & .footer-container .container {
            flex-direction: column;
            gap: 2rem;
            align-items: stretch;
        }

        & .footer-title {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 600px) {
        & .footer-container {
            padding: 2rem 0 1rem 0;
        }

        & .footer-container .container {
            gap: 1.2rem;
        }

        & .footer-title {
            font-size: 1rem;
        }

        & .footer-form input[type="email"] {
            font-size: 0.95rem;
            padding: 0.6rem 0.8rem;
        }

        & .btn-submit {
            font-size: 1rem;
            padding: 0.6rem 1rem;
        }

        & .footer-bottom {
            font-size: 0.92rem;
            padding-top: 0.7rem;
        }
    }



    @media (min-width: 62rem) {
        & .features-container {
            padding: 1rem;

            & .wrapper {
                padding: 1rem 0;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
                color: var(--light);
                border-top: 2px solid #fff;
                border-bottom: 2px solid #fff;

                & .card {
                    padding: 0rem;
                    background-color: transparent;
                }
            }

            & i {
                font-size: 2rem;
            }
        }

        & .services-container {
            & .wrapper {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 2rem;
            }
        }
    }
}

/* ---------------------------------------------------------------- Dashboard do Sistema  ---------------------------------------------------------------- */
#dashboard {
    background-color: var(--dark);

    & .menu-bar {
        width: 100%;
        padding: .5rem;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        height: auto;
        position: fixed;
        background-color: var(--secondary-color);
        bottom: 0;
        left: 0;
        z-index: 8;
        z-index: 11;

        & .menu-item {
            color: var(--light);
            gap: .2rem;

            & i {
                font-size: 1.5rem;
            }
        }

        & .form-item,
        & .form-item i {
            color: var(--light);
            font-size: 1.4rem;
            gap: .1rem;
        }

        & .form-item span {
            font-size: .9rem;
            font-weight: 300;
        }
    }

    & .container {
        padding: 1rem 1rem 5rem 1rem;


        & .user-filters {
            width: 100%;
            display: none;
            flex-direction: column;
            color: var(--light);
            position: absolute;
            left: 0;
            top: 0;
            background-color: var(--dark);
            z-index: 9;
            height: 100svh;

            & .card {
                padding: 1rem;
                display: flex;
                flex-direction: column;
                gap: .2rem;
                border-bottom: 1px solid var(--accent-color);

                & select,
                & input {
                    max-width: 250px;
                    width: 100%;
                    padding: .5rem;
                    background-color: var(--secondary-color);
                    color: var(--light);
                    outline: none;
                    border: 1px solid transparent;
                    border-radius: .4rem;

                    &:focus,
                    &:focus-within {
                        background-color: var(--accent-color);
                        border: 1px solid var(--primary-color);
                    }
                }

                & select {
                    background-color: var(--accent-color);
                    color: var(--light);
                    border: 1px solid #333;
                    border-radius: 6px;
                    font-size: 1rem;
                    appearance: none;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    cursor: pointer;
                    scrollbar-width: thin;
                    scrollbar-color: #555 #1a1a1a;

                    &::-webkit-scrollbar {
                        width: 10px;
                    }

                    &::-webkit-scrollbar-track {
                        background: #1a1a1a;
                        border-radius: 10px;
                    }

                    &::-webkit-scrollbar-thumb {
                        background-color: #555;
                        border-radius: 10px;
                        border: 1px solid #1a1a1a;
                    }

                    &:focus {
                        outline: none;
                        border-color: var(--primary-color);
                        box-shadow: 0 0 0 2px rgba(2, 103, 252, 0.4);
                    }
                }

                #active-filters {
                    min-height: 50px;

                    & .filter-tag {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: .2rem;
                        padding: .2rem .5rem;
                        background-color: var(--primary-color);
                        height: fit-content;
                        border-radius: 20rem;
                        font-size: .8rem;
                        text-align: center;

                    }
                }

                & .job-list {
                    display: flex;
                    flex-wrap: wrap;
                    gap: .5rem;

                    & .btn-job {
                        padding: .2rem .5rem;
                        background-color: var(--accent-color);
                        color: var(--light);
                        border-radius: 20rem;
                    }
                }
            }

            & .user-filter-caption {
                padding: 1rem;
                display: flex;

                & .btn-close-filter {
                    color: var(--light);
                }
            }

            & .filter-title {
                width: fit-content;
                font-size: 1.1rem;
                font-weight: 500;
                border-bottom: 1px solid var(--primary-color);
                margin-bottom: .2rem;
            }

            & .job-card {


                & .job-btn {
                    padding: .2rem .5rem;
                    background-color: var(--accent-color);
                    color: var(--light);
                    border-radius: 20rem;

                    &:hover {
                        background-color: hsl(0, 0%, 35%);
                    }
                }
            }
        }

        & .user-hero {
            width: 100%;

            & .user-dashboard {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1rem;

                & .card {
                    display: flex;
                    flex-direction: column;
                    background: var(--secondary-color);
                    border-radius: 1rem;
                    box-shadow: 0 4px 12px rgba(2, 103, 252, 0.08), 0 1.5px 4px rgba(0, 0, 0, 0.10);
                    transition: transform 0.15s, box-shadow 0.15s;
                    border-radius: 1rem;
                    overflow: hidden;

                    &.active {
                        flex-direction: row;

                        & .card-caption {
                            padding: .5rem;
                            display: flex;
                            flex-direction: column;
                            gap: .5rem;
                            height: 100%;
                            color: var(--light);

                            & .user-name {
                                font-size: 1rem;

                            }

                            & .user-job,
                            & .user-adress {
                                text-transform: capitalize !important;
                                color: var(--text-color);
                                font-size: .9rem;
                            }

                            & .user-price {
                                color: var(--light);
                                font-weight: 600;
                                font-size: 1rem;
                            }

                            & .btn-conect {
                                cursor: pointer;
                                padding: .4rem 1rem;
                                margin: 0 auto;
                                width: fit-content;
                                margin-top: auto;
                                background-color: var(--primary-color);
                                border-radius: 20rem;
                                font-size: .8rem;

                                &:hover {
                                    background-color: #003a80;
                                }
                            }
                        }
                    }

                    &:hover {
                        transform: translateY(-3px) scale(1.02);
                        box-shadow: 0 6px 18px rgba(2, 103, 252, 0.14), 0 2px 8px rgba(0, 0, 0, 0.14);
                    }

                    & .card-img {
                        position: relative;
                        padding: .5rem;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background-color: var(--accent-color);
                        gap: .5rem;

                        & img {
                            width: max(120px, 7vw);
                            border-radius: 50%;
                            aspect-ratio: 1/1;
                            object-fit: cover;
                            object-position: center;
                            border: .2rem solid var(--primary-color);
                        }

                        & .btn-portifolio {
                            padding: .2rem .5rem;
                            color: var(--primary-color);
                            background-color: var(--light);
                            font-size: .8rem;
                            border-radius: 20rem;

                            &:hover {
                                background-color: #bfc0c0;
                            }
                        }

                        & .btn-rating {
                            cursor: pointer;
                            display: flex;
                            align-items: center;
                            gap: .5rem;
                            position: absolute;
                            left: 5px;
                            top: 5px;
                            color: var(--light);
                            padding: .2rem .8rem;
                            background-color: var(--secondary-color);
                            border-radius: 20rem;
                            font-size: .8rem;

                            &:hover {
                                background-color: hsl(0, 0%, 40%);
                            }

                            & i {
                                color: hsl(51, 100%, 50%);
                                font-size: .8rem;
                            }
                        }
                    }

                    & .card-caption {
                        padding: .5rem;
                        display: flex;
                        flex-direction: column;
                        gap: .5rem;
                        height: 100%;
                        color: var(--light);

                        & .user-name {
                            font-size: .8rem;
                        }

                        & .user-job,
                        & .user-adress {
                            text-transform: capitalize !important;
                            color: var(--text-color);
                        }

                        & .user-price {
                            color: var(--light);
                            font-weight: 600;
                            font-size: 1.1rem;
                        }

                        & .btn-conect {
                            cursor: pointer;
                            padding: .4rem 1rem;
                            margin: 0 auto;
                            width: fit-content;
                            margin-top: auto;
                            background-color: var(--primary-color);
                            border-radius: 20rem;

                            &:hover {
                                background-color: #003a80;
                            }
                        }
                    }



                }
            }
        }

        & .user-search {
            color: var(--light);
            border: 2px solid var(--accent-color);
            border-radius: .4rem;

            & .search-ico {
                padding: .5rem 1rem;
                background-color: var(--accent-color);
            }

            & input {
                color: var(--light);
            }
        }

        & .user-navbar {
            color: var(--light);

            & .btn-display-order {
                & .select-list {
                    padding: 2rem;
                    display: none;
                    align-items: center;
                    justify-content: center;
                    background-color: hsla(0, 0%, 0%, 0.5);
                    position: absolute;
                    width: 100%;
                    min-height: 100svh;
                    top: 0;
                    left: 0;
                    z-index: 9;

                    & .caption {
                        width: 100%;
                        display: flex;
                        align-items: self-start;
                        flex-direction: column;
                        height: 350px;
                        padding: 1rem;
                        background-color: var(--secondary-color);
                        color: var(--light);
                        border-radius: .2rem;

                        & .btn-order {
                            width: 100%;
                            padding: 1rem .5rem;
                            color: var(--light);
                            text-align: start;
                        }
                    }
                }

            }

            & .btn-display-filters,
            &¨.btn-resize {
                display: flex;
            }
        }


    }

    /* ================= Modal de Avaliação ================= */
    #rating-modal {
        display: none;
        /* escondido por padrão */
        position: fixed;
        /* fixa na tela */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        place-items: center;
        z-index: 9999;

    }

    #rating-modal .modal-content {
        background-color: hsl(0, 0%, 10%);
        padding: 2rem;
        border-radius: 10px;
        max-width: 500px;
        width: calc(100% - 2rem);
        text-align: center;
        box-shadow: 0 5px 15px hsla(0, 0%, 0%, 0.3);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        color: var(--light);
    }

    #rating-modal .stars {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        font-size: 2rem;
    }

    #rating-modal .stars span {
        cursor: pointer;
    }

    #rating-modal button {
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 500;
        transition: background-color 0.2s ease;
        width: 100%;
    }
}

/* ---------------------------------------------------------------- Registro  ---------------------------------------------------------------- */
.auth-register {
    padding: max(1rem, 4vw);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    background-color: var(--dark);
    min-height: 100dvh;
    z-index: 1;

    & .logo {
        max-width: 50px;
    }

    &::after {
        content: ' ';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        z-index: -1;
        background-image: url('../assets/img/auth-register.png');
        filter: brightness(50%);
    }

    & .card {
        padding: 2rem;
        width: 100%;
        background: rgba(20, 20, 20, 0.7);
        backdrop-filter: blur(20px);
        border-radius: 1rem;
        color: var(--light);
        display: flex;
        flex-direction: column;
        gap: 1rem;

        & .form-step {
            display: none;
            flex-direction: column;
            gap: 1rem;

            &.active-step {
                display: flex;
            }
        }

        & .btn-list {
            display: flex;
            justify-content: center;
            gap: 1rem;

            & .btn-next,
            & .btn-prev {
                max-width: 8rem;
                width: 100%;
                cursor: pointer;
                padding: 0.5rem 1rem;
                border-radius: .4rem;
            }

            & .btn-prev {
                background-color: var(--light);
                color: var(--primary-color);
            }

            & .btn-next {
                background-color: var(--primary-color);
                color: var(--light);
            }
        }
    }

    & label {
        font-size: .8rem;
    }

    & input,
    & select,
    & textarea {
        padding: .5rem;
        border-radius: 0.4rem;
        background-color: var(--accent-color);
        border: 1px solid #444;
        color: var(--light);
        width: 100%;
    }

    & input,
    select {
        &:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(2, 103, 252, 0.3);
            outline: none;
        }
    }

    & .error-msg {
        color: red;
        font-size: 0.9rem;
    }

    & .ico-password {
        position: absolute;
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: var(--primary-color);
    }
}

/* ---------------------------------------------------------------- Login  ---------------------------------------------------------------- */
.auth-login {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 100svh;

    &::after {
        content: ' ';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        z-index: -1;
        background-image: url('../assets/img/background-default.png');
        filter: brightness(50%);
    }

    & .login-container {
        padding: max(1rem, 4vw);

        & .card {
            padding: 1rem;
            background-color: var(--dark);
            color: var(--light);
            border-radius: 1rem;


            & input,
            & select,
            & textarea {

                width: 100%;
                padding: .5rem;
                background-color: var(--secondary-color);
                border: 1px solid transparent;
                border-radius: .4rem;
                color: var(--light);
                background-color: var(--accent-color);

                &:focus-within {
                    border: 1px solid var(--primary-color);
                    background-color: var(--accent-color);
                }
            }



            & label {
                margin-bottom: .2rem;
                font-size: .8rem;
            }

            .ico-password {
                cursor: pointer;
                padding: .6rem;
                position: absolute;
                right: 0rem;
                top: 50%;
                transform: translateY(-50%);
            }
        }
    }
}

/* ---------------------------------------------------------------- Interface do Usuario  ---------------------------------------------------------------- */
.user-interface {
    position: relative;
    padding: 1rem;
    display: grid;
    place-items: center;
    color: var(--light);
    min-height: 100svh;
    z-index: 1;

    &::after {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-image: url('../assets/img/background-default.png');
        background-size: cover;
        z-index: -1;
    }

    & .card {
        max-width: 800px;
        width: 100%;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        background-color: var(--dark);
        border-radius: 1rem;

        & .profile-imagem {


            & img {
                width: 120px;
                aspect-ratio: 1/1;
                object-fit: cover;
                object-position: center;
                border-radius: 50%;
            }

            & .btn-change-profile {
                margin: .5rem 0;
                width: fit-content;
                color: var(--primary-color);
                font-weight: 600;
            }
        }

        & .caption {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 0 1rem;

            & .form-item {
                min-width: 180px;
                flex: 1;
            }
        }

        & .form-title {
            font-size: 1.4rem;
        }

        & .form-sub-title {
            font-size: 1.2rem;
            margin-bottom: .5rem;
        }

        .form-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;

            & .form-step {
                margin-bottom: 1rem;

                & .form-item {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    margin-bottom: 1rem;


                    & input,
                    & select,
                    & textarea {
                        min-width: 180px;
                        width: 100%;
                        padding: .5rem;
                        background-color: var(--accent-color);
                        color: var(--light);
                        border-radius: .2rem;
                        font-size: 1rem;
                    }

                    & textarea {
                        min-height: 200px;
                    }

                    & label {
                        font-size: .8rem;
                        margin-bottom: .2rem;
                    }
                }
            }
        }

        & .btn-voltar,
        & .btn-salvar {
            max-width: 150px;
            width: 100%;
            padding: .8rem .5rem;
            border-radius: .4rem;
            text-align: center;
        }

        & .btn-voltar {
            background-color: var(--light);
            color: var(--primary-color);
        }

        & .btn-salvar {
            background-color: var(--primary-color);
            color: var(--light);
        }
    }

    & form {
        display: flex;
        flex-direction: column;
        gap: 2rem;

        & .wrapper {


            & label {
                font-size: .8rem;
            }

            & input,
            select,
            textarea {
                padding: .5rem;
                width: 100%;
                background-color: var(--accent-color);
                color: var(--light);
                border-radius: .2rem;
            }
        }

        & .btn {
            margin: 0 auto;
            max-width: 12rem;
            min-width: 12rem;
            cursor: pointer;
            padding: 0.8rem 1rem;
            border-radius: .4rem;
            background-color: var(--primary-color);
            color: var(--light);
        }
    }
}

/* ---------------------------------------------------------------- Media Query  ---------------------------------------------------------------- */


@media (min-width: 992px) {
    .header-container {
        width: 100%;
        position: fixed;
        z-index: 9;
        top: 0;
        left: 0;
        background-color: transparent;

        & .logo {
            width: 40px;
        }

        & .navbar {
            width: auto;
            height: auto;
            position: relative;
            background-color: transparent;
            top: 0;
            left: 0;
            z-index: 9;
            color: var(--dark);
            transform: translateX(0%);

            & .btn-close {
                display: none;
            }

            & .nav-list {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 1rem;
                height: 100%;

                & .list-item {
                    padding: 1rem;
                    border-bottom: none;
                }

                & .nav-link {
                    padding: .5rem 1rem;
                    font-weight: 400;
                    border-radius: 20rem;

                    &:hover {
                        background-color: hsla(0, 0%, 10%, 0.6);
                    }
                }


                & .btn-list {
                    margin-top: 0;
                    display: flex;
                    align-items: center;
                    gap: 1rem;
                }

                & .btn-login {
                    padding-inline: 2rem;
                    transition: all .4s;

                    &:hover {
                        background-color: var(--light);
                        color: var(--primary-color);
                        scale: 1.05;
                    }
                }
            }

        }
    }



    #index {
        & .hero-container {
            position: relative;
            z-index: 1;

            &::after {
                content: "";
                display: block;
                position: absolute;
                width: 100%;
                height: 100%;
                right: 0;
                bottom: 0;
                inset: 0;
                background-image: url('../assets/img/background.png');
                background-repeat: no-repeat;
                background-size: 100%;
                z-index: -1;
                opacity: 1;
            }

            & .title {
                max-width: 900px;
            }

            & .text {
                max-width: 540px;
            }

            & .img-banner {
                display: flex;
                justify-content: flex-end;
                padding: 0 4rem;
                background: rgba(255, 255, 255, 0.15);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border-radius: 20px;
                border: 1px solid rgba(255, 255, 255, 0.3);
                box-shadow:
                    0 8px 32px rgba(2, 103, 252, 0.12),
                    0 1.5px 4px rgba(0, 0, 0, 0.18);
                position: relative;
                overflow: hidden;

                & img {
                    display: block;
                    width: 100%;
                    height: auto;
                    max-width: 480px;
                    margin: 0 auto;
                }
            }

            & .btn-primary {
                transition: all .2s;

                &:hover {
                    box-shadow: rgba(180, 180, 180, 0.4) -5px 5px,
                        rgba(175, 175, 175, 0.3) -2px 2px,
                        rgba(167, 167, 167, 0.2) -4px 4px,
                        rgba(184, 184, 184, 0.1) -6px 6px, rgba(156, 156, 156, 0.05) -25px 25px;
                    scale: .96;
                }
            }

            & .btn-secondary {
                transition: all .2s;

                &:hover {
                    box-shadow: rgba(0, 102, 255, 0.4) -5px 5px,
                        rgba(0, 153, 255, 0.3) -2px 2px,
                        rgba(0, 132, 255, 0.2) -4px 4px,
                        rgba(0, 102, 255, 0.1) -6px 6px, rgba(0, 119, 255, 0.05) -25px 25px;
                    scale: .96;
                }
            }
        }

        & .features-container {
            & .wrapper {
                & .card {
                    border: none;
                }
            }
        }

        & .howitworks-container {
            & .steps-container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);

            }
        }

        & .creators-container {
            & .container {
                padding: 2rem 0;
            }

            & img {
                max-width: 700px;
                border-radius: 1rem;
            }
        }
    }
}


@media (min-width: 1310px) {
    #dashboard {
        & .menu-bar {
            position: fixed;
            width: auto;
            padding: .5rem;
            display: flex;
            flex-direction: column;
            justify-content: unset;
            height: 100svh;
            background-color: var(--dark);
            left: 0;

            & .menu-item {
                display: flex;
                width: 100%;
                padding: .5rem 1rem;
                cursor: pointer;
                user-select: none;
                gap: .5rem;
                height: fit-content;

                &:hover {
                    background-color: var(--accent-color);
                    border-radius: 20rem;
                }
            }

            & i {
                color: var(--light);
                font-size: 1.5rem;
            }

            & form {
                margin-top: auto;
            }
        }

        & .container {
            padding: 1rem;
            margin-left: auto;
            width: calc(100% - 7.8rem);
            min-height: 100svh;

            & .user-filters {
                position: relative;
                display: flex;
                flex-direction: column;
                max-width: 400px;
                color: var(--light);

                & .user-filter-caption {
                    display: none;
                }
            }

            & .user-hero {
                flex: 1;

                & .user-navbar {
                    position: relative;
                    color: var(--light);

                    & .btn-display-order {
                        & .select-list {
                            width: 100% !important;
                            padding: 0rem;
                            min-height: unset;
                            top: 100%;
                            left: -50px;

                            & .caption {
                                padding: 0;
                                min-width: 200px;
                                height: 200px;

                                & button {
                                    padding: 1rem;

                                    &:hover {
                                        background-color: var(--accent-color);
                                    }
                                }
                            }
                        }

                    }

                    & .btn-display-resize {
                        display: none;
                    }

                    & .btn-display-filters,
                    & .btn-resize {
                        display: none;
                    }
                }

                & .user-dashboard {
                    grid-template-columns: repeat(auto-fit, minmax(250px, max-content));
                    gap: 1rem;

                    & .card {
                        flex: 1 1 300px;
                        max-width: 300px;
                        width: 100%;
                        min-width: 0;

                        & .card-img {
                            padding: 1rem;
                        }

                        & .card-caption {
                            width: 100%;
                            padding: 1rem;

                            & .user-name {
                                font-size: 1.15rem;
                                font-weight: 500;
                            }

                            & .user-job,
                            & .user-adress {
                                text-transform: capitalize !important;
                                color: var(--text-color);
                                font-size: .95rem;
                            }

                            & .user-price {
                                margin-top: auto;
                                font-size: 1.1rem;

                                & span {
                                    font-size: .9rem;
                                }
                            }

                            & .btn-conect {
                                margin-top: 0rem;
                            }
                        }
                    }
                }




            }
        }
    }
}