/* ══════════════════════════════════════════════════════════════════════
   curriculo.css — Estilo específico da página de Currículo (inclui
   estilos de impressão A4). Carrega DEPOIS de marca-pessoal.css.
   ══════════════════════════════════════════════════════════════════════ */

/* ── Orbs do fundo (blur e posições/cores próprias desta página) ── */
.bg-orb { filter: blur(72px); }
.bg-orb-1 {
    top: -10%; right: -5%; width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(244,111,31,.14) 0%, transparent 65%);
    animation: orb1 18s ease-in-out infinite;
}
.bg-orb-2 {
    bottom: -12%; left: -8%; width: 440px; height: 440px;
    background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 65%);
    animation: orb2 22s ease-in-out infinite;
}
@keyframes orb1 {
    0%,100% { transform: translate(0,0) scale(1); }
    40%     { transform: translate(-22px,18px) scale(1.07); }
}
@keyframes orb2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(20px,-24px) scale(.93); }
}

/* ── Conteúdo ── */
.cv-wrap {
    position: relative; z-index: 1;
    max-width: 880px; margin: 0 auto;
    padding: 36px 20px 72px;
}

/* ── Cabeçalho do currículo ── */
.cv-hdr {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 18px;
    backdrop-filter: blur(16px);
    padding: 28px 28px 24px;
    margin-bottom: 22px;
    display: flex; gap: 20px; align-items: flex-start;
    animation: fadeUp .5s .1s cubic-bezier(.16,1,.3,1) both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cv-hdr-av {
    width: 68px; height: 68px; flex-shrink: 0;
    border-radius: 50%; padding: 2.5px;
    background: conic-gradient(from 0deg, #f46f1f 0%, #f97316 45%, rgba(255,255,255,.04) 60%, #f46f1f 100%);
}
.cv-hdr-av-inner {
    width: 100%; height: 100%; border-radius: 50%;
    background: #f3f4f6; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.cv-hdr-av-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.cv-hdr-av-init {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 800; color: #fff;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }

.cv-hdr-info { flex: 1; min-width: 0; }
.cv-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800; color: var(--text);
    letter-spacing: -.03em; margin: 0 0 3px; line-height: 1.1;
}
.cv-title {
    font-family: var(--font-body); font-weight: 500;
    font-size: .74rem; color: var(--orange);
    letter-spacing: .04em; margin: 0 0 2px;
}
.cv-subtitle {
    font-size: .82rem; color: var(--text-sub); margin: 0 0 14px;
}
.cv-contacts {
    display: flex; flex-wrap: wrap; gap: 10px;
}
.cv-contact {
    display: flex; align-items: center; gap: 5px;
    font-size: .78rem; color: var(--text-sub);
    text-decoration: none; transition: color .15s;
}
.cv-contact i { color: var(--orange); font-size: .72rem; width: 13px; text-align: center; }
.cv-contact:hover { color: var(--text); }

@media (max-width: 560px) {
    .cv-hdr { flex-direction: column; align-items: center; text-align: center; padding: 22px 18px; }
    .cv-contacts { justify-content: center; }
}

/* ── Seção genérica ── */
.cv-sec {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    padding: 22px 24px;
    margin-bottom: 18px;
    animation: fadeUp .5s cubic-bezier(.16,1,.3,1) both;
}
.cv-sec-title {
    display: flex; align-items: center; gap: 9px;
    font-family: var(--font-body); font-weight: 300;
    font-size: .68rem; font-weight: 500;
    color: var(--text-sub); text-transform: uppercase;
    letter-spacing: .1em; margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.cv-sec-title i { color: var(--orange); font-size: .72rem; width: 14px; text-align: center; }

/* ── Resumo ── */
.cv-summary { font-size: .9rem; color: var(--text-sub); line-height: 1.75; margin-bottom: 10px; }
.cv-summary:last-child { margin-bottom: 0; }

/* ── Skills ── */
.cv-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}
.cv-skill-group-label {
    font-family: var(--font-body); font-weight: 300;
    font-size: .64rem; color: var(--orange);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: 8px;
}
.cv-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.cv-tag {
    font-family: var(--font-body); font-weight: 500;
    font-size: .7rem; color: var(--text-sub);
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 6px; padding: 3px 9px;
    animation: tagIn .3s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes tagIn {
    from { opacity: 0; transform: scale(.8); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Experiência (timeline) ── */
.cv-exp-list { display: flex; flex-direction: column; gap: 0; }
.cv-exp {
    position: relative;
    padding: 0 0 22px 24px;
    border-left: 1px solid rgba(244,111,31,.18);
    margin-left: 5px;
    animation: slideL .45s cubic-bezier(.16,1,.3,1) both;
}
.cv-exp:last-child { padding-bottom: 0; border-left-color: transparent; }
.cv-exp::before {
    content: '';
    position: absolute;
    left: -5px; top: 4px;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 10px rgba(244,111,31,.65);
}
@keyframes slideL {
    from { opacity: 0; transform: translateX(-10px); }
    to   { opacity: 1; transform: translateX(0); }
}
.cv-exp-head {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 10px;
    flex-wrap: wrap; margin-bottom: 2px;
}
.cv-exp-role {
    font-family: var(--font-display);
    font-size: .92rem; font-weight: 700;
    color: var(--text); margin: 0;
}
.cv-exp-period {
    font-family: var(--font-body); font-weight: 500;
    font-size: .68rem; color: var(--text-dim);
    white-space: nowrap; padding-top: 2px;
}
.cv-exp-company {
    font-size: .82rem; font-weight: 600;
    color: var(--orange); margin: 0 0 2px;
}
.cv-exp-loc {
    font-size: .74rem; color: var(--text-dim); margin: 0 0 10px;
}
.cv-exp-bullets { list-style: none; }
.cv-exp-bullets li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: .84rem; color: var(--text-sub);
    line-height: 1.55; margin-bottom: 5px;
}
.cv-exp-bullets li::before {
    content: '';
    display: block; width: 4px; height: 4px;
    border-radius: 50%; background: var(--orange);
    flex-shrink: 0; margin-top: 7px;
}

/* ── Formação ── */
.cv-edu {
    display: flex; align-items: flex-start; gap: 12px;
    padding-bottom: 14px; margin-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.cv-edu:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.cv-edu-icon {
    width: 34px; height: 34px; flex-shrink: 0;
    border-radius: 9px;
    background: rgba(244,111,31,.1);
    border: 1px solid rgba(244,111,31,.18);
    display: flex; align-items: center; justify-content: center;
}
.cv-edu-icon i { color: var(--orange); font-size: .84rem; }
.cv-edu-info { flex: 1; }
.cv-edu-row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.cv-edu-course {
    font-size: .88rem; font-weight: 600; color: var(--text); margin: 0 0 2px;
}
.cv-edu-year {
    font-family: var(--font-body); font-weight: 500;
    font-size: .7rem; color: var(--text-dim); white-space: nowrap;
}
.cv-edu-inst { font-size: .78rem; color: var(--text-sub); margin: 0; }

/* ── CTA ── */
.cv-cta {
    background: linear-gradient(135deg, rgba(244,111,31,.18) 0%, rgba(163,77,20,.12) 100%);
    border: 1px solid rgba(244,111,31,.22);
    border-radius: 16px;
    padding: 26px 26px;
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 18px; flex-wrap: wrap;
    margin-top: 6px;
}
.cv-cta-text h2 {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 800;
    color: var(--text); margin: 0 0 3px;
}
.cv-cta-text p { font-size: .82rem; color: var(--text-sub); margin: 0; }
.cv-cta-btns { display: flex; gap: 9px; flex-wrap: wrap; }
.btn-cta-wa {
    display: flex; align-items: center; gap: 7px;
    padding: 10px 17px; min-height: 44px;
    background: linear-gradient(135deg, #25d366, #1ca450);
    color: #fff; border: none; border-radius: 10px;
    font-family: var(--font-body);
    font-size: .86rem; font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,.22);
    transition: all .18s ease;
}
.btn-cta-wa:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(37,211,102,.38); color: #fff; }
.btn-cta-pf {
    display: flex; align-items: center; gap: 7px;
    padding: 10px 17px; min-height: 44px;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-sub); border-radius: 10px;
    font-family: var(--font-body);
    font-size: .86rem; font-weight: 600;
    text-decoration: none; transition: all .18s ease;
}
.btn-cta-pf:hover { background: var(--glass-hov); color: var(--text); }

@media (max-width: 560px) {
    .cv-cta { flex-direction: column; text-align: center; }
    .cv-cta-btns { justify-content: center; width: 100%; }
}

/* ══════════════════════════════════════
   ESTILOS DE IMPRESSÃO — A4 limpo
   ══════════════════════════════════════ */
@media print {
    @page { size: A4; margin: 15mm 12mm; }

    .bg, .nav, .cv-cta { display: none !important; }

    body { background: #fff !important; color: #111 !important; }
    .cv-wrap { padding: 0; max-width: 100%; }

    .cv-sec, .cv-hdr {
        background: #fff !important;
        border: 1px solid #e5e7eb !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        break-inside: avoid;
    }
    .cv-name     { color: #111 !important; }
    .cv-title    { color: #f46f1f !important; }
    .cv-subtitle { color: #4b5563 !important; }
    .cv-contact  { color: #374151 !important; }
    .cv-sec-title { color: #555 !important; border-bottom-color: #e5e7eb !important; }
    .cv-sec-title i { color: #f46f1f !important; }
    .cv-tag { background: #f3f4f6 !important; color: #374151 !important; border-color: #d1d5db !important; }
    .cv-exp-role { color: #111 !important; }
    .cv-exp-company { color: #f46f1f !important; }
    .cv-exp-period, .cv-exp-loc { color: #6b7280 !important; }
    .cv-exp-bullets li { color: #374151 !important; }
    .cv-exp::before { background: #f46f1f !important; box-shadow: none !important; }
    .cv-exp { border-left-color: #e5e7eb !important; }
    .cv-summary { color: #374151 !important; }
    .cv-edu-icon { background: #fff7ed !important; border-color: #fed7aa !important; }
    .cv-edu-icon i { color: #f46f1f !important; }
    .cv-edu-course { color: #111 !important; }
    .cv-edu-inst { color: #6b7280 !important; }
    .cv-skill-group-label { color: #f46f1f !important; }
    a { color: #111 !important; text-decoration: none !important; }
    * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
