/* ==========================================
   CONFIGURAÇÕES GERAIS & RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #2b2b3c 0%, #0d0d0f 100%);
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Permite rolagem suave se a tela for pequena */
    min-height: 100vh;
    padding: 40px 20px;
}

/* Container Centralizador */
.container {
    width: 100%;
    max-width: 640px; /* Largura ideal para visualização em celulares e desktop */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ==========================================
   BOTÃO VOLTAR (UX EXCELENTE PARA MOBILE)
   ========================================== */
.back-area {
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Alinha o botão à esquerda no celular */
    margin-bottom: -10px; /* Aproxima levemente do bloco do perfil */
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px; /* Espaço entre a setinha e o texto */
    color: #a0a0a5;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px; /* Formato de pílula moderno */
    transition: all 0.3s ease;
}

/* Efeito ao passar o mouse ou tocar no celular */
.back-link:hover {
    color: #ff9900; /* Acende com a cor da marca */
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 153, 0, 0.3);
    transform: translateX(-3px); /* Dá um leve impulso para a esquerda indicando retorno */
}

.back-link svg {
    transition: transform 0.3s ease;
}

/* ==========================================
   CABEÇALHO (PERFIL)
   ========================================== */
.profile {
    text-align: center;
    margin-bottom: 10px;
}

.logo-area {
    width: 110px;
    height: 110px;
    background: #ff9900; /* Laranja característico */
    color: #0d0d0f;
    font-weight: 800;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 25px rgba(255, 153, 0, 0.25);
}

.profile h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.profile p {
    font-size: 22px;
    color: #a0a0a5;
    line-height: 1.5;
}

/* ==========================================
   BLOCOS DE CATEGORIA & TÍTULOS
   ========================================== */
.category-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    padding-left: 10px;
    border-left: 4px solid #ff9900; /* Barrinha vertical idêntica ao seu print */
    margin-bottom: 4px;
}

/* Grupo de botões empilhados */
.links-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ==========================================
   DESIGN DOS BOTÕES PREMIUM
   ========================================== */
.custom-button {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 22px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
}

.button-desc {
    font-size: 15px;
    color: #8e8e93;
    line-height: 1.4;
}

/* INTERAÇÃO (HOVER / TOUCH) */
.custom-button:hover {
    transform: translateY(-4px); /* Efeito flutuante */
    background: rgba(255, 255, 255, 0.06);
    border-color: #ff9900; /* Acende a borda com o laranja da marca */
    box-shadow: 0 12px 24px rgba(255, 153, 0, 0.12); /* Sombra neon discreta */
}

.custom-button:hover .button-title {
    color: #ff9900; /* O título muda de cor ao passar o mouse */
}

/* ==========================================
   RODAPÉ (EXTRA INFO)
   ========================================== */
.extra-info {
    text-align: center;
    padding: 10px 20px;
}

.extra-info p {
    font-size: 15px;
    color: #b1b1b1;
    line-height: 1.5;
}

.profile-logo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a foto não fique esticada */
    border-radius: 50%; /* Deixa a imagem redondinha */
}

/* ==========================================
   EFEITO DE ENTRADA ANIMADA (JAVASCRIPT + CSS)
   ========================================== */

/* Estado inicial: Invisível e deslocado 20px para baixo */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Estado final: Visível e na posição correta */
.hidden.show {
    opacity: 1;
    transform: translateY(0);
}