/* Remove margens padrão e define o box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-family: Arial, sans-serif;
    
    /* Centrar o conteúdo no meio do ecrã (vertical e horizontalmente) */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column; /* Coloca o texto por baixo da imagem */
    align-items: center;
    text-align: center;
    gap: 30px; /* Espaço entre o logotipo e o texto */
}

.logo {
    max-width: 300px; /* Ajusta este valor para mudares o tamanho do teu logotipo */
    height: auto;
}

h1 {
    font-size: 2rem;
    letter-spacing: 8px; /* Espaçamento entre letras para um look mais clean/premium */
    font-weight: bold;
    text-transform: uppercase;
}

/* Estilos para as redes sociais */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px; /* Espaço entre os ícones */
    margin-top: 10px;
}

.social-links a {
    color: #000000; /* Cor dos ícones (preto) */
    font-size: 2rem; /* Tamanho dos ícones */
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease; /* Animação suave */
}

/* Efeito ao passar o rato por cima (Hover) */
.social-links a:hover {
    color: #666666; /* Fica num tom cinza escuro */
}