 /* =========================================
           RESET
        ========================================= */

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


        html {
            scroll-behavior: smooth;
        }


body {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #f5f7fa;

    background: #07101c;

    overflow-x: hidden;
}


        /* =========================================
           FUNDO TECNOLÓGICO
        ========================================= */

        body::before {
            content: "";

            position: fixed;

            inset: 0;

            z-index: -2;

            background-image:
                linear-gradient(
                    rgba(255, 255, 255, 0.025) 1px,
                    transparent 1px
                ),
                linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.025) 1px,
                    transparent 1px
                );

            background-size:
                56px 56px;

            pointer-events: none;
        }


        /* =========================================
           BRILHOS DO FUNDO
        ========================================= */

        body::after {
            content: "";

            position: fixed;

            inset: 0;

            z-index: -1;

            pointer-events: none;

            background:

                radial-gradient(
                    circle at 10% 15%,
                    rgba(0, 190, 255, 0.10),
                    transparent 28%
                ),

                radial-gradient(
                    circle at 85% 75%,
                    rgba(48, 220, 170, 0.08),
                    transparent 30%
                );
        }


        /* =========================================
           CONTAINER
        ========================================= */

        .container {

            width: min(
                1200px,
                calc(100% - 60px)
            );

            margin: 0 auto;
        }


        /* =========================================
           HEADER
        ========================================= */

        header {

            position: relative;

            height: 80px;

            border-bottom:
                1px solid
                rgba(255, 255, 255, 0.05);

            background:
                rgba(5, 13, 24, 0.88);

            backdrop-filter:
                blur(14px);

            z-index: 100;
        }


        .navbar {

            height: 80px;

            display: flex;

            align-items: center;

            position: relative;
        }


/* =========================================
   LOGO
========================================= */

.logo {
    display: flex;

    align-items: center;

    gap: 16px;

    text-decoration: none;

    color: white;

    flex-shrink: 0;
}


.logo img {
    width: 36px;
    height: 36px;

    object-fit: contain;
}


.logo-text {
    display: flex;

    flex-direction: column;
}


.logo-text h2 {
    margin: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: 24px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: -0.5px;

    color: #ffffff;
}


.logo-text span {
    margin-top: 5px;

    color: #8190a4;

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

        /* =========================================
           HAMBÚRGUER
        ========================================= */

   .menu-toggle {

    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 46px;

    height: 46px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center; /* adiciona isso */

    gap: 6px;

    border: none;

    background: transparent;

    cursor: pointer;

    z-index: 1001;
}


        .menu-toggle span {

            width: 25px;

            height: 2px;

            border-radius: 10px;

            background: #f5f7fa;

            transition:
                0.3s ease;
        }


        .menu-toggle:hover span {

            background: #29d3ff;
        }


        /* =========================================
           MENU
        ========================================= */

        .nav {

            position: absolute;

            top: 72px;

            right: 0;

            width: 260px;

            padding: 12px;

            display: flex;

            flex-direction: column;

            gap: 4px;

            border:
                1px solid
                rgba(255,255,255,0.08);

            border-radius: 14px;

            background:
                rgba(8, 16, 28, 0.97);

            box-shadow:
                0 25px 60px
                rgba(0,0,0,0.45);

            backdrop-filter:
                blur(20px);

            opacity: 0;

            visibility: hidden;

            transform:
                translateY(-10px);

            transition:
                0.3s ease;
        }


        .nav.active {

            opacity: 1;

            visibility: visible;

            transform:
                translateY(0);
        }


        .nav a {

            padding: 13px 14px;

            border-radius: 8px;

            color: #dce3eb;

            text-decoration: none;

            font-size: 13px;

            transition:
                0.25s ease;
        }


        .nav a:hover {

            color: #29d3ff;

            background:
                rgba(41, 211, 255, 0.06);

            transform:
                translateX(3px);
        }


        .nav .menu-orcamento {

            margin-top: 8px;

            text-align: center;

            color: #061018;

            font-weight: 700;

            background:
                linear-gradient(
                    90deg,
                    #20c8f2,
                    #4ee5a8
                );
        }


        .nav .menu-orcamento:hover {

            color: #061018;

            background:
                linear-gradient(
                    90deg,
                    #4ee5a8,
                    #20c8f2
                );

            transform: none;
        }


        /* =========================================
           ANIMAÇÃO DO HAMBÚRGUER
        ========================================= */

        .menu-toggle.active span:nth-child(1) {

            transform:
                translateY(8px)
                rotate(45deg);
        }


        .menu-toggle.active span:nth-child(2) {

            opacity: 0;
        }


        .menu-toggle.active span:nth-child(3) {

            transform:
                translateY(-8px)
                rotate(-45deg);
        }


        /* =========================================
           ÁREA PRINCIPAL VAZIA
        ========================================= */

main {
    flex: 1;

    position: relative;

    width: 100%;
}

        /* =========================================
           ELEMENTOS DECORATIVOS
        ========================================= */

        .glow {

            position: absolute;

            width: 450px;

            height: 450px;

            border-radius: 50%;

            background:
                radial-gradient(
                    circle,
                    rgba(0, 196, 255, 0.08),
                    transparent 70%
                );

            pointer-events: none;
        }


        .glow-left {

            left: -220px;

            top: 10%;
        }


        .glow-right {

            right: -220px;

            bottom: 0;
        }


        /* =========================================
           LINHAS DECORATIVAS
        ========================================= */

        .tech-line {

            position: absolute;

            height: 1px;

            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(41,211,255,0.25),
                    transparent
                );

            width: 60%;

            left: 20%;

            top: 35%;
        }


        .tech-line.two {

            top: 65%;

            opacity: .5;
        }


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 30px);
    }

    header {
        height: 72px;
    }

    .navbar {
        height: 72px;
    }

    main {
        min-height: calc(100vh - 72px);
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    .logo-text h2 {
        font-size: 21px;
    }

    .logo-text span {
        font-size: 8px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .menu-toggle span {
        width: 24px;
    }

    .nav {
        top: 66px;
        right: 0;
        width: min(260px, calc(100vw - 30px));
    }
}

.projetos-login {

    width: 100%;
    padding: 80px 20px;

}


.projetos-login h1 {

    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;

}


.subtitulo {

    text-align: center;
    color: #aaa;
    margin-bottom: 50px;

}



.login-card {

    display: flex;
    align-items: center;
    gap: 40px;

    max-width: 1100px;
    margin: 0 auto 50px;

    padding: 30px;

    background: rgba(255,255,255,0.05);

    border-radius: 20px;

    border: 1px solid rgba(255,255,255,0.1);

}



.login-image {

    width: 45%;

}



.login-image img {

    width: 100%;
    border-radius: 15px;

    display: block;

}



.btn-acessar {

    display: block;

    margin-top: 20px;

    text-align: center;

    padding: 12px;

    border-radius: 10px;

    background: #ffffff;

    color: #000;

    text-decoration: none;

    font-weight: bold;

    transition: .3s;

}



.btn-acessar:hover {

    transform: translateY(-3px);

}



.login-info {

    width: 55%;

}



.login-info h2 {

    font-size: 28px;

}



.login-info p {

    color: #ccc;

    line-height: 1.6;

}



.login-info li {

    margin: 10px 0;

}




/* RESPONSIVO */

@media(max-width:768px){


    .login-card {

        flex-direction: column;

    }


    .login-image,
    .login-info {

        width:100%;

    }


}

/* ===========================
   FOOTER
=========================== */

footer {
    width: 100%;
    margin-top: 60px;
    padding: 30px;
    text-align: center;

    background: #050505;

    color: #ffffff;

    opacity: .7;
}

/* =========================================
   PRELOADER
========================================= */

.preloader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #07101c;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}


/* =========================================
   CONTEÚDO
========================================= */

.preloader-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


/* =========================================
   LOGO
========================================= */

.preloader-logo {

    width: 80px;

    height: 80px;

    object-fit: contain;

    margin-bottom: 15px;

    animation:
        logoPulse 2s ease-in-out infinite;
}


.preloader-content h2 {

    margin: 0 0 20px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 28px;

    color: #ffffff;

    letter-spacing: 1px;
}


/* =========================================
   LOADER
========================================= */

.loader {

    width: 180px;

    height: 3px;

    overflow: hidden;

    border-radius: 10px;

    background: rgba(
        255,
        255,
        255,
        0.08
    );

    position: relative;
}


.loader::before {

    content: "";

    position: absolute;

    left: -40%;

    top: 0;

    width: 40%;

    height: 100%;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #20c8f2,
            #4ee5a8
        );

    animation:
        loading 1.2s ease-in-out infinite;
}


.preloader-content span {

    margin-top: 12px;

    color: #8190a4;

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================
   ANIMAÇÕES
========================================= */

@keyframes loading {

    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }

}


@keyframes logoPulse {

    0%,
    100% {
        opacity: .7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

}


/* =========================================
   ESCONDER PRELOADER
========================================= */

.preloader.hidden {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}