/* style.css - Versão final com as cores originais dos ícones sociais */

/* Reset básico e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; 
    position: relative;
}

/* Botão de Admin */
.admin-button {
    position: absolute;
    top: 0;
    right: -25px;
    width: 40px;
    height: 40px;
    background-color: #d1cfca;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
    text-decoration: none;
    letter-spacing: 2px;
    line-height: 1;
    padding-bottom: 5px;
    transition: background-color 0.2s;
    z-index: 10;
}
.admin-button:hover {
    background-color: #c1bfba;
}


/* Cabeçalho do Perfil */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.handle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1c1c1c;
}

/* Seção de Links */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px; 
}

.link-button {
    background-color: #FFFFFF;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 16px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #EAEAEA;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.link-icon {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #555;
    flex-shrink: 0;
}

.link-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.link-button span {
    flex-grow: 1;
    text-align: center; 
    padding-right: 47px;
}

/* Rodapé com Ícones Sociais */
.socials-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px; /* Espaçamento entre os ícones */
    margin-top: 20px;
    padding-bottom: 20px;
}

.social-icon {
    font-size: 2.2rem; /* Tamanho do ícone aumentado */
    text-decoration: none;
    transition: transform 0.2s ease;
    /* ATUALIZAÇÃO: removido o background e a cor fixa */
}

.social-icon:hover {
    transform: scale(1.1);
}

/* ATUALIZAÇÃO: Cores originais para cada rede social */
.social-icon.instagram { color: #E4405F; }
.social-icon.facebook { color: #1877F2; }
.social-icon.whatsapp { color: #25D366; }
.social-icon.youtube { color: #FF0000; }
.social-icon.tiktok { color: #000000; } /* Pode ser ajustado se quiser o logo com várias cores */
.social-icon.linkedin { color: #0A66C2; }
.social-icon.telegram { color: #24A1DE; }
.social-icon.email { color: #7f7f7f; }


/* Responsividade */
@media (max-width: 768px) {
    .admin-button {
        right: 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    .profile-header {
        margin-top: 50px;
    }
    .admin-button {
        top: 10px;
        right: 10px;
    }
}
