/* --- Variáveis de Cores e Fontes --- */
:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: #cccccc;
    --gold-light: #f7d04f;
    --gold-dark: #b8860b;
    --gold-gradient: linear-gradient(180deg, #f7d04f 0%, #b8860b 100%);
    --font-title: 'Cinzel', serif;
    --font-text: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-text);
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.95) 100%), 
                url('sua-imagem-de-fundo.jpg') no-repeat;
    background-position: center;
    background-size: cover;
}

header { padding: 30px 5%; display: flex; justify-content: center; }

.logo h2 {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 24px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.hero.coming-soon {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-logo {
    font-family: var(--font-title);
    font-size: 90px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.8);
}

.hero h1 {
    font-family: var(--font-title);
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-main);
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.8);
}

.buttons { display: flex; justify-content: center; }

.btn {
    padding: 16px 40px;
    font-family: var(--font-text);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: rgba(5, 5, 5, 0.7);
    color: var(--gold-light);
    border: 2px solid var(--gold-dark);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(184, 134, 11, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2);
}

.premium-footer {
    background-color: rgba(3, 3, 3, 0.95);
    padding: 0 5% 20px;
    backdrop-filter: blur(10px);
}

.footer-divider-top {
    height: 1px;
    background: linear-gradient(90deg, rgba(184,134,11,0) 0%, rgba(184,134,11,0.6) 50%, rgba(184,134,11,0) 100%);
    width: 100%;
    margin-bottom: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand h3 {
    font-family: var(--font-title);
    color: var(--gold-light);
    font-size: 22px;
    margin-bottom: 5px;
}

.footer-brand p {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social { display: flex; gap: 20px; }

.footer-social a {
    color: var(--gold-light);
    font-size: 22px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--text-main);
    transform: scale(1.15);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px; /* Aumentei um pouco o gap para acomodar o select */
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.separator { color: var(--gold-dark); font-size: 12px; }

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p { font-size: 12px; color: #888; }

/* --- NOVO: ESTILOS DO SELETOR DE IDIOMA --- */
.lang-selector {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(184, 134, 11, 0.4);
    padding: 6px 10px;
    border-radius: 4px;
    font-family: var(--font-text);
    font-size: 13px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.lang-selector:hover, .lang-selector:focus {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.lang-selector option {
    background-color: #111; /* Fundo escuro para as opções */
    color: var(--text-main);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .page-wrapper { background-position: 75% center; }
    .hero-logo { font-size: 60px; }
    .hero h1 { font-size: 28px; }
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .footer-links {
        justify-content: center;
        flex-wrap: wrap; /* Permite que o seletor quebre linha se necessário */
    }
}

@media (max-width: 480px) {
    .hero-logo { font-size: 45px; }
    .hero h1 { font-size: 24px; }
    .btn { width: 100%; justify-content: center; }
}