/* ========================= */
/* VARIÁVEIS GLOBAIS */
/* ========================= */
:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --bg-light: #f3f4f6;
    --text-dark: #1f2937;
    --card-radius: 14px;
    --shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* ========================= */
/* BASE */
/* ========================= */
body {
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: "Segoe UI", sans-serif;
}

/* ========================= */
/* NAVBAR */
/* ========================= */
.navbar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-dark) !important;
    font-size: 1.3rem;
}

.nav-link {
    font-weight: 500;
    color: #374151 !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* ========================= */
/* HERO – INDEX */
/* ========================= */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 90px 20px 120px 20px;
    text-align: center;
    border-radius: 0 0 80px 80px;
}

.hero img {
    border: 4px solid white;
}

/* ========================= */
/* HERO – CURRÍCULO */
/* ========================= */
.hero-cv {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 90px 20px 120px 20px;
    text-align: center;
    border-radius: 0 0 80px 80px;
}

.hero-cv img {
    border: 4px solid white;
}

/* ========================= */
/* CARDS GERAIS */
/* ========================= */
.section-card {
    background: white;
    border-radius: var(--card-radius);
    padding: 35px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

/* ========================= */
/* ÍCONES DAS ÁREAS (INDEX) */
/* ========================= */
.icon-feature {
    font-size: 3rem;
    color: var(--primary);
}

/* ========================= */
/* EXPERIÊNCIA INTERNACIONAL */
/* ========================= */
.exp-flag {
    width: 48px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.exp-item {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.exp-item:last-child {
    border-bottom: none;
}

/* ========================= */
/* CERTIFICAÇÕES – CURRÍCULO */
/* ========================= */
.cert-item-cv {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    min-height: 95px;
}

.cert-item-cv:last-child {
    border-bottom: none;
}

.cert-flag {
    width: 72px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.cert-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ========================= */
/* CERTIFICAÇÕES – CONTATO */
/* (mantém o layout antigo sem interferir no currículo) */
/* ========================= */
.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

/* ========================= */
/* RODAPÉ */
/* ========================= */
footer {
    margin-top: 60px;
    padding: 20px 0;
    background: white;
    border-top: 1px solid #e5e7eb;
}

/* ========================= */
/* AJUSTES GERAIS */
/* ========================= */
.text-justify {
    text-align: justify;
}
