body {
    background: url('assets-novo/lua.webp') no-repeat center center fixed;
    background-size: cover;
    color: white;
}


.text-gradient {
    background: linear-gradient(90deg, #3eff87, #3eb8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.btn-send {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    background: linear-gradient(45deg, #3b82f6, #9333ea, #06b6d4);
    background-size: 200% 200%;
    animation: gradient-animation 3s infinite alternate;
}


@keyframes gradient-animation {
    0% {
        background-position: left;
    }

    100% {
        background-position: right;
    }
}


.tab-button {
    background: black;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid white;
    transition: 0.3s;
}

.tab-button.active,
.tab-button:hover {
    background: linear-gradient(35deg, #3b82f6, #9333ea, #06b6d4);
}


img {
    max-width: 100%;
    height: auto;
}


.btn-espiar {
    background: linear-gradient(90deg, #3b82f6, #9333ea);
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 0;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-espiar:hover {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}



#investigations-list div {
    display: flex;
    align-items: center;
    background: #38fff9;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
}


#investigations-list div div {
    width: 40px;
    height: 40px;
    background: gray;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: 10px;
}


#investigations-list span {
    font-weight: bold;
    color: black;
}


.bg-gray-900 {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}


.text-white {
    color: white;
    font-weight: bold;
}


.text-green-400 {
    color: #34d399;
}


.text-gray-400,
.text-gray-300 {
    color: #cbd5e1;
    font-size: 14px;
}


.step {
    color: #cbd5e1;
    transition: color 0.5s;
}

.step.active {
    color: #34d399;
}

.step-number {
    font-weight: bold;
    transition: color 0.5s;
}

.step.active .step-number {
    color: #34d399;
}

.step-description {
    color: #94a3b8;
}

.step.active .step-description {
    color: white;
}



@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}


@media (max-width: 768px) {
    .animate-float {
        width: 100%;
    }
}


.animated-gradient-button {
    align-items: center;
    background: #2563eb;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(-60deg, #2563eb, #2563eb, #7c3aed, #2563eb, #2563eb);
    background-size: 300% 100%;
    background-position: 200%;
    animation: shimmer 5s linear infinite;
    text-decoration: none;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s;
}

@keyframes shimmer {
    to {
        background-position: -100% 0;
    }
}


.btn-send {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    background: linear-gradient(45deg, #3b82f6, #9333ea, #06b6d4);
    background-size: 200% 200%;
    animation: gradient-animation 3s infinite alternate;
}


input[type="text"] {
    min-width: 50px;
    max-width: 100%;
}



#progress-modal {
    backdrop-filter: blur(5px);
}


.progress-container {
    height: 20px;
    width: 100%;
    background: #e0e0e0;
    border-radius: 10px;
}

#progress-bar {
    height: 20px;
    width: 0%;
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
}



@keyframes gradient-animation {
    0% {
        background-position: left;
    }

    100% {
        background-position: right;
    }
}

#error-modal, #progress-modal {
    backdrop-filter: blur(5px);
}
