/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- FUNDO TECNOLÓGICO MODERNO --- */
body {
    background-color: #0f172a; 
    color: #ffffff;
    
    /* Grid digital + Luz central */
    background-image: 
        linear-gradient(rgba(32, 142, 182, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 142, 182, 0.05) 1px, transparent 1px),
        radial-gradient(circle at center, #1e293b 0%, #090e1a 100%);
        
    background-size: 30px 30px, 30px 30px, cover;
    background-attachment: fixed; 
    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 400px;
    text-align: center;
    backdrop-filter: blur(2px); 
}

/* --- ÁREA DA LOGO --- */
.logo-placeholder {
    width: 180px; 
    margin: 0 auto 20px; 
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 100%; 
    height: auto; 
    /* Sombra para destacar a logo do fundo */
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}

/* --- NOME COM DEGRADÊ RADIAL (CENTRO BRANCO -> PONTAS AZUIS) --- */
.profile-section h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    letter-spacing: 1.5px;
    font-weight: 800; 
    text-transform: uppercase;
    
    /* Efeito de luz branca no centro */
    background-image: radial-gradient(circle, #ffffff 30%, #208eb6 100%);
    
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    
    /* Brilho ao redor do texto */
    filter: drop-shadow(0 0 15px rgba(32, 142, 182, 0.3));
}

.profile-section p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Espaçamento entre o cabeçalho e os botões */
.profile-section {
    margin-bottom: 60px; 
}

/* --- BOTÕES --- */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-btn {
    background-color: rgba(30, 41, 59, 0.9); 
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #334155;
    position: relative;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.link-btn .icon {
    position: absolute;
    left: 20px;
    font-size: 1.2rem;
}

/* Hover Azul (Padrão) */
.link-btn:hover {
    background-color: #208eb6; 
    color: #ffffff;
    transform: translateY(-3px);
    border-color: #208eb6;
    box-shadow: 0 4px 15px rgba(32, 142, 182, 0.4);
}

/* Hover WhatsApp (Verde) */
.link-btn.whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* --- RODAPÉ --- */
.footer {
    margin-top: 40px; 
    padding-top: 20px;
    border-top: 1px solid #334155; /* Linha divisória sutil */
}

.footer p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer .copyright {
    font-size: 0.75rem; 
    opacity: 0.7; 
}