/* --- VARIÁVEIS --- */
:root {
    --bg-color: #204d3e; /* Verde exato da imagem */
    --text-color: #ffffff; /* Texto branco */
    --button-bg: #ffffff;
    --button-text: #202020; /* Texto do botão quase preto */
    --button-hover-bg: #f2f2f2;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
}

/* --- CABEÇALHO (Ícones de topo) --- */
.header-icons {
    width: 100%;
    max-width: 680px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 10px;
}

.header-btn {
    background: rgba(255, 255, 255, 0.2); /* Fundo translúcido */
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* --- CONTAINER PRINCIPAL --- */
.container {
    margin-top: 50px;
    width: 100%;
    max-width: 680px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- PERFIL --- */
.profile {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    /* Se a imagem já tiver o fundo verde, não precisa de background aqui. 
        Se for transparente, descomente a linha abaixo: */
    /* background-color: white; */
}

.profile h1 {
    font-size: 1.25rem; /* 20px */
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.profile p {
    margin-top: 5vh;
    font-size: 1rem;
    color: #ffffff;
    max-width: 500px;
    line-height: 1.5;
    font-weight: 500;
}

/* Check icon verificado */
.verified-icon {
    color: #fff;
    background: #2d6b57; /* Mesmo fundo */
    border: 1px solid white;
    border-radius: 50%;
    font-size: 0.7rem;
    padding: 2px;
    vertical-align: middle;
    margin-left: 4px;
}

/* --- LISTA DE LINKS --- */
.links {
    margin-top: 3vh;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.link-btn {
    position: relative; /* Importante para posicionar ícones */
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o texto */
    width: 100%;
    padding: 20px 24px; /* Altura do botão */
    background-color: var(--button-bg);
    color: var(--button-text);
    text-decoration: none;
    border: none;
    border-radius: 50px; /* Borda "Pill" (pílula) */
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.link-btn:hover {
    background-color: var(--button-hover-bg);
    transform: scale(1.02); /* Leve aumento ao passar o mouse */
}

/* Ícone da Esquerda (Fixo) */
.icon-left {
    position: absolute;
    left: 20px;
    font-size: 1.5rem; /* Tamanho do ícone */
    color: #1a3b32; /* Verde escuro para o ícone */
}

/* Ícone da Direita (Três pontinhos) */
.icon-right {
    position: absolute;
    right: 20px;
    font-size: 1rem;
    color: #aaa; /* Cinza claro */
}

/* Texto do botão */
.link-text {
    width: 100%;
    text-align: center;
    padding: 0 40px; /* Margem interna para não bater nos ícones */
}

/* --- BOTÃO GRANDE DE RODAPÉ (Join Linktree) --- */
.join-footer-btn {
    margin-top: 60px;
    background: white;
    color: #202020;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* --- LINKS LEGAIS --- */
.legal-links {
    margin-top: 30px;
    font-size: 0.75rem;
    opacity: 0.9;
}

.legal-links a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

#containertotal {
    padding: 30px;
    background-color: #2d6b57;
    border-radius: 20px;
    min-height: 95.8vh;
    background-image: url('data:imgs/Ativo2.png');
}

#imgselos {
    margin-top: 3vh;
    width: 50%;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 480px) {
    .link-btn {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    .profile h1 {
        font-size: 1.1rem;
    }
    .profile p {
        font-size: 0.9rem;
    }
}