/* ee-cod | Tema: Brenda Elegant Edition
   Focado em: Estética Feminina, Clareza e Sofisticação
   Update: Correção de Duplicidade de Rodapé e Visibilidade de Stats
*/

/* 1. FUNDO TOTAL E RESPONSIVO */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    background-image: url('/image/backgrounds/brenda.png') !important;
    background-size: cover !important;
    background-position: center top !important; 
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* OVERLAY PARA LEGIBILIDADE */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

/* 2. INTERFACE (CONTEÚDO) */
.profile-wrap { 
    position: relative; 
    z-index: 10; 
    padding: 60px 20px 180px; /* Padding inferior aumentado para não bater no rodapé */
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    max-width: 420px;
    margin: 0 auto;
}

.name-h1 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -1px !important;
    margin-bottom: 5px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bio {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400;
    max-width: 320px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- VISIBILIDADE DAS VIEWS --- */
.stats {
    font-size: 0.7rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

.stats i, .stats span i {
    color: #00d4ff !important;
    margin-right: 5px;
}

/* --- BOTÕES GLASS ROSE --- */
.link-item {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 22px !important;
    padding: 20px !important;
    margin-bottom: 15px !important;
    transition: all 0.4s ease !important;
    font-weight: 600 !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    transform: scale(1.02);
    border-color: #ffffff !important;
}

.link-icon-svg {
    position: absolute;
    left: 20px;
    opacity: 0.8;
}

/* --- ESTILIZAÇÃO DO RODAPÉ ÚNICO (SEM DUPLICIDADE) --- */
/* Aqui estilizamos a classe que já existe no sistema, sem criar uma nova div */
.navbar-fixed {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 25px 0 45px !important;
    z-index: 999;
}

.btn-cta {
    background: #ffffff !important;
    color: #000000 !important;
    font-weight: 900 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

/* 3. AJUSTE MOBILE */
@media (max-width: 480px) {
    body { background-position: 65% top !important; }
    .profile-wrap { padding-top: 40px; padding-bottom: 200px; }
    .name-h1 { font-size: 1.7rem !important; }
}