/* --- Reset Básico e Configurações Globais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

body {
    /* Fundo com gradiente animado */
    background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364, #1c3d52);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Animação do fundo */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Container Principal --- */
.link-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    color: #fff;
    animation: fadeIn 1s ease-out;
}

/* --- Foto de Perfil / Logo --- */
.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

/* --- Textos --- */
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

p {
    font-size: 1rem;
    margin-bottom: 30px;
    animation: slideUp 0.8s ease-out 0.6s backwards;
}

/* --- Lista de Links --- */
.links-list {
    list-style: none;
    padding: 0;
}

.links-list li {
    margin-bottom: 15px;
    animation: slideUp 0.8s ease-out 0.8s backwards;
}

/* Animação de carregamento para o segundo e terceiro item */
.links-list li:nth-child(2) { animation-delay: 0.9s; }
.links-list li:nth-child(3) { animation-delay: 1.0s; }
.links-list li:nth-child(4) { animation-delay: 1.1s; }


.links-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px); /* Efeito de vidro fosco */
}

/* Efeito de hover nos botões */
.links-list a:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Ícones dentro dos botões */
.links-list a i {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* --- Rodapé --- */
footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeIn 1s ease-out 1.5s backwards;
}

/* --- Animações de Entrada --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}