
body {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%); /* Fundo com leve degradê */
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}


.container {
    text-align: center;
    width: 90%;
    max-width: 350px; 
}


.foto-perfil {
    width: 140px;
    height: 140px;
    border-radius: 50%; 
    border: 3px solid #d4af37; 
    object-fit: cover; 
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

h1 {
    margin: 10px 0 5px 0;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

p {
    color: #888;
    margin-bottom: 30px;
    font-size: 0.9rem;
}


.botoes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


footer {
    margin-top: 40px;
    font-size: 12px;
    color: #666;
}


.link {
    display: block;
    text-align: center;
    padding: 15px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05); 
    color: #d4af37; 
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s;
}


.link:hover {
    background: #d4af37;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}


.link-destaque {
    background-color: #25d366 !important; 
    color: white !important;
    border: none !important;
    animation: pulsar 2s infinite; 
}

@keyframes pulsar {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}