/* ==========================================================================
   DESIGN SYSTEM - VARIÁVEIS CROMÁTICAS E TIPOGRAFIA (ESTILO OFICIAL)
   ========================================================================== */
:root {
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    
    --accent-gold-glow: rgba(197, 160, 89, 0.25);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET E CONFIGURAÇÕES BÁSICAS (FUNDO OFICIAL INTEGRADO)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at center, #18130c 0%, #050403 100%);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 20px;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================================================
   CANVAS DE ONDAS DINÂMICAS (BACKGROUND ANIMADO)
   ========================================================================== */
#hero-wave-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2; /* Fica acima da imagem de fundo estática, mas abaixo do conteúdo */
    pointer-events: none;
    display: block;
    mix-blend-mode: screen; /* Mescla de forma suave com o degradê do fundo */
    opacity: 0.85;
}

/* ==========================================================================
   CONTAINER PRINCIPAL (FLUTUA SOBRE O CANVAS)
   ========================================================================== */
.container {
    width: 100%;
    max-width: 440px; /* Mantém a proporção exata no desktop sem distorcer */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10; /* Fica acima do canvas */
    position: relative;
}

/* ==========================================================================
   CABEÇALHO COM LOGOTIPO OFICIAL
   ========================================================================== */
.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
}

.logo-container {
    width: 100%;
    max-width: 180px; /* Largura perfeita para o logotipo transparente */
    height: auto;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

.brand-tagline {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 10px;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.9;
    text-align: center;
}

/* ==========================================================================
   GRID DE LINKS - BANNERS SEM MOLDURAS OU CANTOS DUPLOS TRANSPARENTES
   ========================================================================== */
.links-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espaçamento elegante entre os banners */
    margin-bottom: 45px;
}

.banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
    background: transparent;
    border: none;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==========================================================================
   RODAPÉ (FOOTER MINIMALISTA SOFISTICADO)
   ========================================================================== */
.footer {
    text-align: center;
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-weight: 300;
    opacity: 0.7;
    width: 100%;
}

.footer-sub {
    font-size: 9px;
    opacity: 0.5;
}

/* ==========================================================================
   MEDIA QUERIES (AJUSTES RESPONSIVOS MOBILE)
   ========================================================================== */
@media (max-width: 480px) {
    body {
        padding: 30px 15px;
    }
    
    .profile {
        margin-bottom: 25px;
    }
    
    .links-grid {
        gap: 16px;
    }
}
