@font-face {
    font-family: 'Montserrat';
    src:
        url('../fonts/Montserrat-Regular.ttf') format('truetype'),
        url('../fonts/Montserrat-SemiBold.ttf') format('truetype'),
        url('../fonts/Montserrat-Bold.ttf') format('truetype');

}

html{
    font-family: 'Montserrat', sans-serif;
}

.loading-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    color: white;
    font-size: 24px;
    position: fixed; /* Fixed position to cover entire viewport */
    top: 0;
    left: 0;
    z-index: 9999; /* Ensure it's on top of everything else */
    transition: opacity 0.5s ease; /* Smooth transition for fade out */
}

.logo {
    width: 150px; /* Adjust based on your logo size */
    margin-bottom: 20px;
    transition: filter 1s ease; /* Smooth transition for shining effect */
}

.logo.gold {
    animation: pulse 2s infinite ease-in-out;
}

.tech-text {
    font-style: italic;
}

.content {
    padding: 20px;
}

/* Define the pulse animation */
@keyframes pulse {
    0% {
        filter: drop-shadow(0 0 2px rgb(0, 0, 0)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 0 1px rgb(0, 0, 0)) brightness(1.5);
    }
    100% {
        filter: drop-shadow(0 0 1px rgb(0, 0, 0)) brightness(1);
    }
}

.bra {
    width: 20px;
    height: 20px;

}

.logoslogan {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#backgroundCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; 
}

#servicosheader {
    z-index: 2; 
    color: black;
}

#servicos, #pq, #clientes, #about, #contato, #login_fake{
    display: none;
}

#loginnav {
    cursor: pointer;
}

.destaque {
    color: #00BFFF;
}

hr {
    color: #00BFFF;
}

.colored-emoji {
    font-size: 3rem; 
    filter: hue-rotate(180deg) saturate(1.5);
}

.colored-emoji2 {
    font-size: 3rem; 
    filter: hue-rotate(240deg) saturate(1.5) brightness(0.9);
}

.toggle-card:hover {
    cursor: pointer;
    background-color: #00BFFF;
}


#content1, #content2, #content3, #content4, #content5{
    display: none;
}


.wave-hr {
    position: relative;
    height: 20px; /* Height of the container */
    margin: 20px 0; /* Spacing around the hr */
    overflow: hidden;
}

.wave-hr::before {
    content: '';
    position: absolute;
    width: 100%; 
    height: 1px; 
    background-image: linear-gradient(to right, #00BFFF 50%, transparent 50%);
    background-size: 1px 100%; 
    animation: wave 1s linear infinite;
    border-radius: 10px;
    top: 0;
    left: 0;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 50px 0; }
}


.active-nav {
    background-color: #C46BFA;
}


/*fake login */

.login-container {
    position: fixed; /* Fixed position */
    bottom: 20px; /* Space from the bottom */
    right: 20px; /* Space from the right */
    background-color: #333;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px; /* Fixed width for the form */
    text-align: center; /* Center text inside the container */
}

.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.login-button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.login-button:hover {
    background-color: #0056b3;
}

.error-message {
    color: red;
    display: none; /* Hidden by default */
    margin-top: 10px;
}

.debug-message {
    color: grey;
    font-size: 12px;
    display: none; /* Hidden by default */
    margin-top: 5px;
}

#Video {
    display: none; /* Hide the iframe initially */
    width: 100%;
    height: 340px; /* Set height for the iframe */
    margin-top: 20px; /* Space between form and video */
}

#youtubeVideo {
    display: none;
}

.loading-message {
    display: none; /* Hidden by default */
    margin-top: 10px;
    color: rgb(0, 255, 98);
}

#botao_artigo {
    display: none;
}

#toggle1, #toggle4 {
    display: none;
}

#logo_cliente {
    border-radius: 25%;
}

a:link {
    color: #007BFF;
}

a:visited {
    color: #C46BFA;
}




.console {
    position: fixed; 
    bottom: 10px; 
    left: 10px; 
    z-index: 1000; 
    display: none;
}

#codeInput {
    width: 250px; 
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc; 
    border-radius: 5px; 
    outline: none; 
    transition: border-color 0.3s; 
}

#codeInput:focus {
    border-color: #66afe9; 
}

#logo2 {
    display: none; 
    font-size: 100px;
    position: absolute; 
    z-index: 999; 
    transition: opacity 0.5s; 
    opacity: 0;
}


#logo2.show {
    display: block;
    opacity: 1; 
}