/* ===== CONFIGURAÇÕES GLOBAIS (DARK THEME) ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #020617; /* Slate-950 / fundo bem escuro */
    color: #e5e7eb; /* Slate-200 */
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 860px;
    margin: 40px auto;
    padding: 40px;
    background-color: #020617; /* Mantém o fundo para vibe de GitHub profile */
    border-radius: 12px;
    border: 1px solid #1f2937; /* Slate-800 */
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.75);
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5 {
    margin: 0;
    font-weight: 700;
}

h3.section-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #e5e7eb; /* Texto claro */
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1f2937; /* Divisor discreto, dark */
}

/* ===== SEÇÃO HERO (CABEÇALHO) ===== */
.hero {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #1f2937;
    margin-bottom: 40px;
}

.hero-name {
    font-size: 3rem;
    font-weight: 900;
    color: #f9fafb; /* Quase branco */
    margin-bottom: 5px;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #9ca3af; /* Slate-400 */
    margin-bottom: 15px;
}

.hero-location {
    font-size: 1.1rem;
    color: #6b7280; /* Slate-500 */
    margin-bottom: 25px;
}

.hero-links a {
    display: inline-block;
    background-color: #111827; /* Slate-900 */
    color: #e5e7eb;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 999px;
    margin: 5px;
    font-weight: 700;
    border: 1px solid #1f2937;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.hero-links a:hover {
    background-color: #0ea5e9; /* Azul de destaque no hover */
    color: #020617;
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
    transform: translateY(-1px);
}

/* ===== SEÇÕES (SOBRE, EXPERIÊNCIA) ===== */
.section {
    margin-bottom: 40px;
}

.section-content {
    font-size: 1.1rem;
    color: #d1d5db; /* Slate-300 */
    white-space: pre-wrap; /* Preserva as quebras de linha do LinkedIn */
}

/* ===== EXPERIÊNCIA (JOB) ===== */
.job {
    margin-bottom: 30px;
}

.job:last-child {
    margin-bottom: 0;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f9fafb;
}

.job-company {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0ea5e9; /* Azul para destaque */
    margin-bottom: 5px;
}

.job-duration {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 10px;
}

.job-description {
    font-size: 1rem;
    color: #d1d5db;
    white-space: pre-wrap; /* Preserva as quebras de linha */
}

/* ===== HABILIDADES (SKILLS) ===== */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill {
    background-color: #111827; /* Badge dark */
    color: #e5e7eb; /* Texto claro */
    padding: 8px 15px;
    border-radius: 999px; /* Formato de pílula */
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid #1f2937;
}

/* ===== RODAPÉ (FOOTER) ===== */
.footer {
    text-align: center;
    border-top: 2px solid #1f2937;
    padding-top: 30px;
    margin-top: 40px;
}

.footer p {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 10px;
}

.footer-email {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0ea5e9;
    text-decoration: none;
}

.footer-email:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVIDADE (CELULAR) ===== */
@media (max-width: 600px) {
    .container {
        padding: 20px;
        margin: 10px auto;
        box-shadow: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .hero-name {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 1.1rem;
    }

    .hero-location {
        font-size: 0.95rem;
    }

    h3.section-title {
        font-size: 1.4rem;
    }

    .section-content {
        font-size: 1rem;
    }

    .job-title {
        font-size: 1.15rem;
    }
}