@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --v: #2dd4bf; 
    --t: #f1f5f9;
    --m: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body { 
    background: radial-gradient(circle at top right, #1e293b, #0f172a, #020617);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 2vw; /* Respiro lateral dinâmico */
    display: flex;
    justify-content: center;
    color: var(--t);
    opacity: 0; 
    transition: opacity 0.5s ease;
}

.col-c { 
    display: flex; 
    gap: 2%; 
    width: 100%; 
    max-width: 1200px; /* Limite para não esticar demais em TVs/Monitores grandes */
}

/* COLUNAS EM PORCENTAGEM */
.l-col { width: 28%; } /* Ajustado para 28% para melhor leitura em telas médias */
.r-col { width: 70%; }

/* EFEITO MADREPÉROLA / GLASSMORPISM */
.card { 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
}

.profile-img {
    width: 100px;
    max-width: 40%; /* Responsivo dentro do card */
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.2);
    margin: 0 auto 1rem auto;
    display: block;
}

h1 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 800; color: #fff; line-height: 1.1; }
.s-title { color: var(--v); font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; margin-top: 1rem; display: block; }
.tag { color: var(--m); font-size: 0.8rem; margin: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem; }

.list { list-style: none; font-size: 0.85rem; color: var(--m); }
.list li { margin-bottom: 0.4rem; overflow-wrap: break-word; }
.list a { color: var(--v); text-decoration: none; font-weight: 600; }

.btn { 
    background: rgba(45, 212, 191, 0.1); 
    border: 1px solid var(--v); 
    color: var(--v) !important; 
    padding: 0.8rem; 
    border-radius: 12px; 
    display: block; 
    text-align: center;
    text-decoration: none; 
    font-size: 0.75rem; 
    font-weight: 700;
    margin-top: 1rem;
    transition: 0.3s;
}
.btn:hover { background: var(--v); color: #020617 !important; transform: translateY(-2px); }

.btn-lang { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; padding: 4px 8px; border-radius: 8px; cursor: pointer; font-size: 0.65rem; font-weight: 800; }

/* AJUSTE PARA CELULAR (BREAKPOINT) */
@media (max-width: 800px) { 
    .col-c { flex-direction: column; } 
    .l-col, .r-col { width: 100%; } 
}
