/* ARQUIVO: style.css */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    
    /* FUNDO ANIMADO */
    background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #000000);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* O Container Principal (O Vidro) */
.container {
    width: 100%;
    max-width: 400px; /* Largura de um celular */
    padding: 40px 20px;
    text-align: center;
}

/* Foto de Perfil */
.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #8a2be2; /* Borda Roxa */
    padding: 3px;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.profile h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.profile p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 30px;
}

/* Estilo dos Botões (Glassmorphism) */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o conteúdo */
    padding: 16px 20px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    border-radius: 50px;
    
    /* Efeito de Vidro */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    transition: all 0.3s ease;
    position: relative;
}

.link-btn i {
    position: absolute;
    left: 20px;
    font-size: 1.2rem;
}

.link-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
    border-color: #8a2be2;
}

/* Botão de Destaque (WhatsApp) */
.link-btn.destaque {
    background: linear-gradient(45deg, #25D366, #128C7E);
    border: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.link-btn.destaque:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Botão de Compartilhar (Topo) */
.share-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.share-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Ícones Sociais (Rodapé) */
.socials {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials a {
    color: #ccc;
    font-size: 1.5rem;
    transition: 0.3s;
}

.socials a:hover {
    color: #8a2be2;
    transform: translateY(-3px);
}

/* Rodapé final */
.footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #666;
}

.footer a {
    color: #888;
    text-decoration: none;
}