* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden; /* Impede a rolagem horizontal e vertical */
}

body {
    background: url('images/background.jpg') center/cover fixed;
    min-height: 100vh;
    color: white;
}

main.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 80px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 600;
    max-width: 600px;
    line-height: 1.2;
    margin: 10px 0;
    color: #ffffff; 
    color: #ffffff;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 60px;
}

.contacts a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
}

.typing-animation, .contacts, footer {
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1024px) {
    .typing-animation {
        font-size: 0.9em;
    }
    
    .title {
        font-size: 35px;
    }
    
    .logo {
        width: 180px;
    }
    
    .contacts a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .typing-animation {
        font-size: 0.8em;
    }

    .title {
        font-size: 30px;
    }
    
    .logo {
        width: 160px;
    }

    .contacts a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .typing-animation {
        font-size: 0.7em;
    }

    .title {
        font-size: 30px;
    }

    .logo {
        width: 150px;
    }

    .contacts a {
        font-size: 14px;
    }
}

/* Efeito de brilho que segue o cursor */
.glow-effect {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(179, 216, 255, 0.3), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

/* Animação de digitação */
.typing-animation {
    font-weight: 400;
    margin-bottom: 0;
    text-transform: uppercase;
    overflow: hidden;
    border-right: 0.15em solid white;
    white-space: nowrap;
    letter-spacing: 0.5em;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    display: inline-block;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: transparent;
    }
}
