/* --- Variáveis de Estilo --- */
:root {
    --color-text: #333333; /* Cor escura para o texto, bom contraste */
    --color-accent: #B8860B; /* Dourado para o hover do ícone */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* --- Reset e Configuração Geral --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    
    /* Configuração da Imagem de Fundo */
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Centralização do conteúdo */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* --- Container do Conteúdo --- */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    max-width: 600px;
    padding: 40px;
    
    /* Efeito de Vidro Fosco */
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Para compatibilidade com Safari */
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* --- Estilo dos Elementos --- */
.logo {
    max-width: 250px; /* Ajuste o tamanho do logo aqui */
    margin-bottom: 25px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 2.5em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

.social-link {
    font-size: 2.5em; /* Tamanho do ícone */
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-accent); /* Muda para dourado no hover */
}

.status-text {
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9em;
    color: #555;
}

/* --- Ajustes para Telas Pequenas (Celulares) --- */
@media (max-width: 600px) {
    .content-wrapper {
        padding: 30px 20px;
    }

    .logo {
        max-width: 200px;
    }

    h1 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1em;
    }

    .social-link {
        font-size: 2.2em;
    }
}