/* Efeito Glamour & Minimalismo RAC */

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* --- Fundo com Profundidade --- */
.glamour-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(
        circle at center,
        #253454 0%,
        var(--primary-navy) 100%
    );
}

.stars {
    background: transparent
        url("https://www.transparenttextures.com/patterns/stardust.png") repeat
        top center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    animation: slowMove 50s linear infinite;
}

.glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(
        circle,
        rgba(197, 160, 89, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
}

@keyframes slowMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1000px 1000px;
    }
}

/* --- Conteúdo Centralizado --- */
.main-container {
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-logo {
    width: 220px; /* Mobile First */
    height: auto;
    display: block;
    position: relative;
    z-index: 3;
    /* Efeito de flutuação suave */
    animation: floating 4s ease-in-out infinite;
}

.logo-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        circle,
        rgba(197, 160, 89, 0.2) 0%,
        transparent 65%
    );
    z-index: 1;
    filter: blur(20px);
}

.text-footer {
    margin-top: 20px;
}

/* Usando a sua classe .section-label do theme.css para harmonia */
.section-label {
    opacity: 0.7;
    font-size: 0.75rem;
    transition: 1s ease;
}

/* --- Animação de Flutuação --- */
@keyframes floating {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* --- Desktop Ajustes --- */
@media (min-width: 768px) {
    .hero-logo {
        width: 320px; /* Logo maior no Desktop */
    }

    .section-label {
        font-size: 0.85rem;
        letter-spacing: 0.5em; /* Mais elegância no desktop */
    }
}

/* Estilização das Redes Sociais */
.social-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
    z-index: 20;
    position: relative;
}

.social-links a {
    color: var(--dusty-gold);
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    opacity: 0.7;
}

.social-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-5px);
    opacity: 1;
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

/* Ajuste Mobile */
@media (max-width: 480px) {
    .social-links {
        gap: 20px;
    }
    .social-links a {
        font-size: 1.2rem;
    }
}
