/* Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    color: white;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Fundo com efeito de Circuito (Simulação) */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.15) 0%, transparent 70%),
                linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                
    background-size: cover;
    background-position: center;
    text-align: center;
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.5);
}

.logo {
    
    height:5px;

}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff0000;
}

/* Texto Central */
.construction-text {
    font-size: 4rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
    100% { opacity: 0.8; }
}

/* Rodapé Cinzento */
footer {
    background-color: #33363b; /* Cinzento do layout */
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
}

.social-icons {
    margin-bottom: 10px;
    color: #fff;
}

.social-icons span {
    margin: 0 10px;
    cursor: pointer;
}
