/* Importando variáveis se o style.css principal não carregar corretamente o root */
:root {
    --primary: #3b82f6;
    --bg-page: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: #334155;
}

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: 'Public Sans', sans-serif;
    margin: 0; padding: 0;
}

/* --- AJUSTES GERAIS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.badge-text { color: var(--primary); font-weight: 800; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.text-muted { color: var(--text-muted); }

/* HEADER FIXO (Replica do seu CSS original) */
.main-header {
    background-color: rgba(15, 23, 42, 0.9); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100;
}
.navbar { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 500; }
.nav-links a.active, .nav-links a:hover { color: var(--primary); }
.logo-img { height: 40px; filter: brightness(0) invert(1); }

/* --- HERO SECTION --- */
.profile-section { padding: 80px 0; }
.profile-grid { display: flex; align-items: center; gap: 60px; }

/* Efeitos na Foto */
.profile-image-wrapper { position: relative; width: 50%; display: flex; justify-content: center; }
.image-frame {
    position: relative; width: 100%; max-width: 450px; height: 500px;
    border-radius: 20px; overflow: hidden; border: 4px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); z-index: 2;
}
.profile-img { width: 100%; height: 100%; object-fit: cover; }
.blur-effect-1, .blur-effect-2 {
    position: absolute; width: 200px; height: 200px; background: var(--primary);
    border-radius: 50%; filter: blur(80px); opacity: 0.4; z-index: 1;
}
.blur-effect-1 { top: -20px; left: 0; }
.blur-effect-2 { bottom: -20px; right: 0; }

/* Texto Hero */
.profile-content { width: 50%; }
.profile-title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.profile-subtitle { font-size: 1.25rem; color: #cbd5e1; margin-bottom: 30px; }
.profile-bio p { color: var(--text-muted); margin-bottom: 15px; line-height: 1.6; }
.profile-actions { display: flex; gap: 15px; margin-top: 30px; }

/* Botões */
.btn-primary { background: var(--primary); color: white; padding: 12px 30px; border-radius: 8px; border: none; font-weight: 700; cursor: pointer; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 12px 30px; border-radius: 8px; font-weight: 700; cursor: pointer; }
.btn-outline:hover { background: rgba(59, 130, 246, 0.1); }

/* --- VALORES (CARDS) --- */
.values-section { background: rgba(255,255,255,0.02); padding: 80px 0; margin: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; margin-top: 10px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card {
    background: var(--bg-card); padding: 40px 30px; border-radius: 16px;
    border: 1px solid var(--border); text-align: center; transition: 0.3s;
}
.value-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.icon-box {
    width: 60px; height: 60px; background: rgba(59, 130, 246, 0.1); color: var(--primary);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 0.95rem; }

/* --- TIMELINE --- */
.timeline-section { padding: 60px 0; }
.timeline {
    position: relative; max-width: 800px; margin: 60px auto 0;
    border-left: 2px solid rgba(59, 130, 246, 0.2); padding-left: 40px;
}
.timeline-item { position: relative; margin-bottom: 50px; }
.timeline-dot {
    position: absolute; left: -49px; top: 5px; width: 16px; height: 16px;
    background: var(--bg-page); border: 4px solid var(--primary); border-radius: 50%;
}
.timeline-dot.current { background: var(--primary); box-shadow: 0 0 15px var(--primary); }
.timeline-date { color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.timeline-item h4 { font-size: 1.5rem; margin: 5px 0 10px; }
.timeline-item p { color: var(--text-muted); }

/* --- CITAÇÃO --- */
.quote-section { padding-bottom: 100px; }
.quote-box {
    background: var(--primary); color: white; padding: 60px; border-radius: 24px;
    text-align: center; position: relative; overflow: hidden;
}
.quote-icon { position: absolute; top: 20px; right: 20px; font-size: 100px; opacity: 0.1; }
.quote-box blockquote {
    font-size: 1.8rem; font-style: italic; font-weight: 300; margin-bottom: 30px; position: relative; z-index: 2;
}
.quote-author strong { display: block; font-size: 1.2rem; }
.quote-author span { font-size: 0.9rem; opacity: 0.8; }
.divider-small { width: 50px; height: 3px; background: rgba(255,255,255,0.4); margin: 0 auto 15px; }

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .navbar .nav-links, .navbar .desktop-only { display: none; }
    .mobile-btn { display: block; background: none; border: none; color: white; }
    .profile-grid { flex-direction: column; text-align: center; }
    .profile-image-wrapper, .profile-content { width: 100%; }
    .profile-actions { justify-content: center; }
    .values-grid { grid-template-columns: 1fr; }
    .quote-box blockquote { font-size: 1.4rem; }
}