﻿:root {
    --bg: #f2f5f4;
    --panel: #ffffff;
    --ink: #15211f;
    --muted: #64706d;
    --line: #dce5e2;
    --brand: #0d766e;
    --brand-dark: #075e58;
    --accent: #f2b84b;
    --danger: #b42318;
    --success: #067647;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Segoe UI Variable", "Trebuchet MS", "Gill Sans", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% -10%, rgba(13, 118, 110, .09), transparent 30%),
        radial-gradient(circle at 95% -20%, rgba(242, 184, 75, .11), transparent 28%),
        var(--bg);
}
a { color: inherit; }
.topbar {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6vw;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
}
.brand {
    font-weight: 800;
    text-decoration: none;
    font-size: 22px;
    letter-spacing: .01em;
    color: var(--brand-dark);
}
.nav { display: flex; align-items: center; gap: 18px; }
.nav a { text-decoration: none; font-weight: 800; font-size: 14px; }
.nav-cta { background: var(--brand); color: white; padding: 10px 14px; border-radius: 999px; }
.page { width: min(1120px, 88vw); margin: 0 auto; padding: 44px 0 64px; }
.hero {
    min-height: 640px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.hero-home {
    position: relative;
    padding: 22px 0 10px;
}
.hero-home::before {
    content: "";
    position: absolute;
    inset: -18px -24px auto;
    height: 260px;
    background:
        radial-gradient(circle at 18% 20%, rgba(13, 118, 110, .14), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(242, 184, 75, .16), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,0));
    z-index: -1;
    pointer-events: none;
}
.eyebrow { color: var(--brand); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
h1 { font-size: 50px; line-height: 1.02; margin: 12px 0 16px; letter-spacing: -.01em; }
h2 { margin: 0 0 10px; }
p { line-height: 1.6; }
.hero-copy p { font-size: 18px; color: var(--muted); max-width: 620px; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; }
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}
.trust-row span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(220, 229, 226, .9);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}
.preview-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(13, 118, 110, .96);
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    font-size: 14px;
    transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(20, 35, 31, .12);
}
.btn.primary { background: var(--brand); color: white; border-color: var(--brand); }
.btn.secondary { background: white; color: var(--ink); }
.resume-preview, .panel, .auth-card, .price-card, .action-card, .resume {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(20, 35, 31, .08);
}
.resume-preview {
    position: relative;
    overflow: hidden;
    padding: 54px 38px 38px;
    aspect-ratio: 3 / 4;
    transform: rotate(1deg);
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(246, 250, 249, .98)),
        linear-gradient(135deg, rgba(13, 118, 110, .08), rgba(242, 184, 75, .08));
}
.resume-head { width: 92px; height: 92px; border-radius: 50%; background: var(--brand); margin-bottom: 30px; }
.resume-line { height: 12px; width: 68%; background: #d9e5e2; border-radius: 999px; margin: 12px 0; }
.resume-line.wide { width: 100%; }
.resume-line.mid { width: 84%; }
.resume-section { height: 86px; background: #edf3f1; border-radius: 8px; margin: 26px 0; }
.resume-section.small { height: 58px; }
.value-strip,
.features,
.steps-grid,
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-strip {
    margin-top: -18px;
}
.value-strip article,
.steps-grid article,
.features article {
    padding: 24px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 50px rgba(20, 35, 31, .05);
}
.value-strip strong,
.steps-grid h3 {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}
.value-strip p,
.steps-grid p {
    margin: 0;
    color: var(--muted);
}
.features article, .action-card { padding: 24px; }
.action-card {
    text-decoration: none;
    display: block;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.action-card:hover {
    transform: translateY(-3px);
    border-color: #c5d7d2;
    box-shadow: 0 20px 42px rgba(20, 35, 31, .12);
}
.action-card h2 {
    margin-bottom: 10px;
}
.action-card p {
    margin: 8px 0 0;
}
.section-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 54px 0 18px;
}
.section-head h2 {
    font-size: 28px;
}
.steps {
    margin-top: 18px;
}
.steps-grid article span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    background: rgba(13, 118, 110, .1);
    color: var(--brand-dark);
    font-weight: 900;
    margin-bottom: 14px;
}
.cta-band {
    margin-top: 54px;
    padding: 26px 28px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(13, 118, 110, .96), rgba(7, 94, 88, .96));
    color: white;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}
.cta-band h2 {
    font-size: 28px;
    max-width: 780px;
    margin: 6px 0 0;
}
.cta-band .eyebrow {
    color: rgba(255,255,255,.82);
}
.cta-band .btn.primary {
    background: white;
    color: var(--brand-dark);
    border-color: white;
}
.auth-card { width: min(440px, 100%); margin: 40px auto; padding: 30px; }
.form { display: grid; gap: 16px; }
.form label { display: grid; gap: 8px; font-weight: 800; }
input, textarea, select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    font: inherit;
    background: white;
}
textarea { resize: vertical; }
.muted { color: var(--muted); }
.alert { padding: 12px 14px; border-radius: 8px; font-weight: 700; }
.alert.error { background: #fee4e2; color: var(--danger); }
.dashboard-head, .preview-actions { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 26px; }
.model-test-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}
.model-test-switch a {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 10px;
    background: white;
    text-decoration: none;
    color: var(--ink);
}
.model-test-switch a.active {
    background: var(--brand);
    border-color: var(--brand);
    color: white;
}
.status { padding: 10px 14px; border-radius: 999px; font-weight: 800; font-size: 14px; }
.status.active { color: var(--success); background: #dcfae6; }
.status.inactive { color: var(--danger); background: #fee4e2; }
.editor-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: start; }
.panel { padding: 24px; }
.dashboard-head h1 {
    margin-bottom: 4px;
}
.panel > h2 {
    font-size: 26px;
    letter-spacing: -.01em;
}
.panel .cards-grid {
    margin-top: 10px;
}
.pricing { text-align: center; }
.price-card { width: min(420px, 100%); margin: 26px auto 0; padding: 30px; text-align: left; }
.price-card strong { display: block; color: var(--brand); font-size: 42px; margin: 12px 0; }
.price-card ul { padding-left: 20px; line-height: 1.9; }
.pricing .cards-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    margin-top: 20px;
}
.resume { width: min(820px, 100%); margin: 0 auto; padding: 48px; }
.resume-model {
    width: min(794px, 100%);
    min-height: 1123px;
    margin: 0 auto;
    background: white;
    color: #1d1d1d;
    box-shadow: 0 16px 50px rgba(20, 35, 31, .08);
}
.resume-model h1 { letter-spacing: 0; }
.resume-model h2 { margin: 0 0 10px; }
.resume-model p { line-height: 1.45; }
.resume-model ul { margin: 6px 0 0; padding-left: 18px; }
.resume-model li { margin-bottom: 5px; }
.resume-model section { margin-top: 18px; }
.resume-raw { white-space: normal; }
.resume-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #cdd9d6;
    padding-bottom: 14px;
}
.resume-item { margin-bottom: 12px; }
.resume-item strong { display: block; font-size: 13px; }
.resume-item small { display: block; color: #68716e; font-size: 12px; margin-top: 4px; }
.resume-subtitle { color: #68716e; font-size: 12px; margin: 0 0 20px; }
.resume-model-1 {
    padding: 42px 48px;
    font-family: Cambria, Georgia, serif;
    font-size: 14px;
}
.resume-model-1 h1 { font-size: 26px; margin: 0 0 8px; }
.resume-model-1 h2 {
    color: #2a7b88;
    border-bottom: 1px solid #2a7b88;
    font-size: 16px;
    padding-bottom: 5px;
}
.resume-model-1 p { color: #505a58; margin: 5px 0; }
.resume-model-sidebar {
    display: flex;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}
.resume-side {
    width: 32%;
    padding: 30px 20px;
    color: white;
}
.resume-side h2 {
    font-size: 13px;
    margin-top: 20px;
    border-bottom: 1px solid rgba(255,255,255,.45);
    padding-bottom: 5px;
}
.resume-side p, .resume-side li { font-size: 12px; }
.resume-main {
    width: 68%;
    padding: 30px;
}
.resume-main h1 {
    font-size: 26px;
    line-height: 1.12;
    margin: 0 0 6px;
}
.resume-main h2 {
    font-size: 13px;
    border-bottom: 1px solid #c8d0ce;
    padding-bottom: 5px;
}
.resume-main p, .resume-main li { font-size: 13px; }
.resume-model-2 .resume-side { background: #001d39; }
.resume-model-2 .resume-main h1, .resume-model-2 .resume-main h2 { color: #003566; }
.resume-model-3 .resume-side { background: #4a4a4a; }
.resume-model-3 .resume-main h1 { color: #2a7b88; }
.resume-model-4 { background: white; }
.resume-model-4 .resume-side {
    width: 38%;
    background: #e5989b;
}
.resume-model-4 .resume-main { width: 62%; }
.resume-model-4 .resume-main h1 span {
    display: inline-block;
    background: #b5838d;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
}
.resume-model-4 .resume-main h2 { color: #b5838d; }
.footer {
    border-top: 1px solid var(--line);
    padding: 24px 6vw;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    background: white;
}
@media print {
    .topbar, .footer, .preview-actions { display: none; }
    * {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    body { background: white; }
    .page { width: 100%; padding: 0; }
    .resume, .resume-model {
        width: 794px;
        min-height: 1123px;
        border: 0;
        box-shadow: none;
    }
}
@media screen and (max-width: 820px) {
    .topbar { height: auto; padding: 18px 5vw; align-items: flex-start; gap: 14px; flex-direction: column; }
    .nav { flex-wrap: wrap; }
    .page { width: min(92vw, 720px); padding-top: 28px; }
    .hero, .editor-layout { grid-template-columns: 1fr; min-height: auto; }
    .hero-home::before { inset: -10px -12px auto; height: 210px; }
    h1 { font-size: 36px; }
    .value-strip, .features, .steps-grid, .cards-grid { grid-template-columns: 1fr; }
    .pricing .cards-grid { grid-template-columns: 1fr; }
    .section-head h2, .cta-band h2 { font-size: 24px; }
    .cta-band { flex-direction: column; align-items: flex-start; }
    .dashboard-head, .preview-actions, .footer { flex-direction: column; align-items: flex-start; }
    .resume-model-sidebar { display: block; }
    .resume-side, .resume-main, .resume-model-4 .resume-side, .resume-model-4 .resume-main { width: 100%; }
    .trust-row { gap: 8px; }
    .trust-row span { font-size: 12px; }
    .resume-preview { transform: none; }
}

.action-card form .btn.secondary {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
}

.cv-page {
    width: min(794px, 100%);
    min-height: 1123px;
    margin: 0 auto;
    background: #fff;
    color: #202321;
    box-shadow: 0 16px 50px rgba(20, 35, 31, .08);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.42;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}
.cv-page h1,
.cv-page h2,
.cv-page h3,
.cv-page p {
    margin: 0;
    letter-spacing: 0;
}
.cv-page ul {
    margin: 7px 0 0;
    padding-left: 18px;
}
.cv-page li {
    margin-bottom: 5px;
}
.cv-content {
    padding: 42px 48px;
}
.cv-header {
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.cv-header h1 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 8px;
}
.cv-header p {
    color: #5c6461;
    font-size: 13px;
}
.cv-section {
    margin-top: 18px;
}
.cv-section h2 {
    font-size: 13px;
    text-transform: uppercase;
    padding-bottom: 6px;
    margin-bottom: 9px;
}
.cv-item {
    margin-bottom: 13px;
}
.cv-item h3 {
    font-size: 14px;
    line-height: 1.3;
}
.cv-item span {
    display: block;
    color: #6a716e;
    font-size: 12px;
    margin-top: 3px;
}
.cv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0;
    list-style: none;
}
.cv-tags li {
    margin: 0;
    padding: 6px 9px;
    border-radius: 999px;
    background: #fff;
}
.cv-short .cv-content {
    padding-top: 56px;
    padding-bottom: 56px;
}
.cv-short .cv-header {
    margin-bottom: 34px;
}
.cv-short .cv-section {
    margin-top: 28px;
}
.cv-short .cv-section h2 {
    margin-bottom: 13px;
}
.cv-short .cv-section p,
.cv-short .cv-section li {
    line-height: 1.7;
}
.cv-short .cv-item {
    margin-bottom: 20px;
}
.cv-short .cv-objective p,
.cv-short .cv-section:first-of-type p {
    font-size: 15px;
}
.cv-short.cv-model-2 .cv-sidebar,
.cv-short.cv-model-4 .cv-sidebar {
    padding-top: 52px;
}
.cv-short.cv-model-2 .cv-sidebar-block,
.cv-short.cv-model-4 .cv-sidebar-block {
    margin-bottom: 34px;
}
.cv-short.cv-model-3 .cv-content {
    padding-top: 46px;
}
.cv-photo {
    width: 96px;
    height: 118px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    flex: 0 0 auto;
}
.cv-sidebar .cv-photo {
    display: block;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    margin: 0 auto 26px;
    border: 4px solid rgba(255,255,255,.35);
}
.cv-sidebar .cv-photo-placeholder {
    visibility: hidden;
    border: 0;
    box-shadow: none;
    background: transparent;
}
.cv-model-1 {
    border-top: 10px solid #0d766e;
}
.cv-model-1 .cv-content {
    padding: 32px 45px 40px;
}
.cv-model-1 .cv-header {
    min-height: 90px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #d9e4e1;
}
.cv-model-1 .cv-header h1 {
    font-size: 30px;
    line-height: 1.08;
    color: #0d766e;
}
.cv-model-1 .cv-header .cv-photo {
    width: 96px;
    height: 118px;
    border-radius: 6px;
}
.cv-model-1 .cv-section h2 {
    color: #0d766e;
    border-bottom: 1px solid #0d766e;
}
.cv-model-2,
.cv-model-4 {
    display: grid;
    grid-template-columns: 245px 1fr;
}
.cv-sidebar {
    padding: 34px 22px;
    color: #fff;
}
.cv-sidebar-block {
    margin-bottom: 24px;
}
.cv-sidebar h2 {
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,.38);
    padding-bottom: 6px;
    margin-bottom: 10px;
}
.cv-sidebar p,
.cv-sidebar li {
    font-size: 12px;
    color: rgba(255,255,255,.92);
}
.cv-model-2 .cv-sidebar {
    background: #17324d;
    padding: 34px 22px;
}
.cv-model-2 .cv-sidebar .cv-photo {
    width: 132px;
    height: 132px;
    margin-bottom: 26px;
}
.cv-model-2 .cv-sidebar-block {
    margin-bottom: 24px;
}
.cv-model-2 .cv-sidebar p {
    font-size: 12px;
    line-height: 1.42;
    font-weight: 400;
}
.cv-model-2 .cv-content {
    padding: 38px 42px;
}
.cv-model-2 .cv-header {
    margin-bottom: 22px;
}
.cv-model-2 .cv-header h1 {
    font-size: 30px;
    line-height: 1.08;
}
.cv-model-2 .cv-header h1,
.cv-model-2 .cv-section h2 {
    color: #17324d;
}
.cv-model-2 .cv-section h2 {
    border-bottom: 1px solid #b9c8d5;
}
.cv-model-3 {
    border-top: 92px solid #243230;
    position: relative;
}
.cv-model-3 .cv-content {
    padding-top: 34px;
}
.cv-model-3 .cv-header {
    margin-top: -98px;
    padding: 24px 28px;
    background: #fff;
    border-left: 6px solid #d6a94f;
    box-shadow: 0 8px 24px rgba(20, 35, 31, .12);
}
.cv-model-3 .cv-header h1 {
    color: #243230;
}
.cv-model-3 .cv-section h2 {
    color: #243230;
    border-bottom: 1px solid #d6a94f;
}
.cv-model-3 .cv-tags li {
    background: #f5efdF;
}
.cv-model-4 .cv-sidebar {
    background: #8f4960;
}
.cv-model-4 .cv-content {
    padding: 38px 42px;
}
.cv-model-4 .cv-header {
    padding: 18px 20px;
    background: #f8eef1;
    border-radius: 8px;
}
.cv-model-4 .cv-header h1 {
    color: #8f4960;
}
.cv-model-4 .cv-section h2 {
    color: #8f4960;
    border-bottom: 1px solid #e3b6c3;
}
.cv-model-5 {
    border-left: 12px solid #2f5d62;
    background: #fff;
}
.cv-model-5 .cv-content {
    padding: 32px 44px 44px 58px;
}
.cv-model-5 .cv-header {
    min-height: 108px;
    margin-bottom: 24px;
    padding: 22px 112px 20px 24px;
    background: #fff;
    border-bottom: 3px solid #2f5d62;
    border-radius: 8px 8px 0 0;
    position: relative;
}
.cv-model-5 .cv-header h1 {
    color: #203533;
    font-size: 30px;
    line-height: 1.08;
}
.cv-model-5 .cv-header p {
    color: #566764;
}
.cv-model-5 .cv-section h2 {
    color: #2f5d62;
    border-bottom: 1px solid #b8cac7;
    padding-left: 10px;
    border-left: 4px solid #2f5d62;
}

.cv-model-5 .cv-photo {
    width: 88px;
    height: 108px;
    object-fit: cover;
    border-radius: 6px;
    position: absolute;
    top: 14px;
    right: 14px;
}

@media print {
    * {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .cv-page {
        width: 794px;
        min-height: 1123px;
        box-shadow: none;
    }
}
@media screen and (max-width: 820px) {
    .cv-content {
        padding: 30px 24px;
    }
    .cv-header {
        display: block;
    }
    .cv-header .cv-photo {
        margin-top: 16px;
    }
    .cv-model-2,
    .cv-model-4 {
        display: block;
    }
    .cv-model-3 {
        border-top-width: 64px;
    }
    .cv-model-5 {
        border-left-width: 8px;
        background: #fff;
    }
    .cv-model-5 .cv-content {
        padding: 30px 24px 30px 34px;
    }
    .cv-model-5 .cv-section h2::before {
        left: -20px;
    }
    .preview-stage {
        overflow-x: hidden;
    }
    .preview-frame {
        width: 100%;
        overflow: hidden;
    }
    .preview-actions {
        align-items: stretch;
    }
    .preview-actions .btn,
    .preview-actions .model-test-switch,
    .preview-actions .secondary,
    .preview-actions .primary {
        width: 100%;
    }
    .preview-actions .model-test-switch {
        justify-content: flex-start;
    }
    .cv-page {
        width: 100%;
        min-height: auto;
        box-shadow: none;
        font-size: 12px;
        line-height: 1.35;
    }
    .cv-page .cv-header {
        gap: 12px;
    }
    .cv-page .cv-header h1 {
        font-size: 24px;
    }
    .cv-page .cv-section h2 {
        font-size: 12px;
    }
    .cv-page .cv-item h3 {
        font-size: 13px;
    }
    .cv-photo,
    .cv-sidebar .cv-photo {
        width: 84px;
        height: 84px;
        border-radius: 50%;
    }
    .cv-model-1 .cv-content,
    .cv-model-2 .cv-content,
    .cv-model-3 .cv-content,
    .cv-model-4 .cv-content,
    .cv-model-5 .cv-content {
        padding: 24px 18px;
    }
    .cv-model-2,
    .cv-model-4 {
        display: block;
    }
    .cv-sidebar {
        padding: 22px 18px;
    }
    .cv-sidebar-block {
        margin-bottom: 18px;
    }
    .cv-model-3 {
        border-top-width: 58px;
    }
    .cv-model-3 .cv-header {
        margin-top: -58px;
        padding: 18px 16px;
    }
    .cv-model-5 {
        border-left-width: 10px;
        background: #fff;
    }
    .cv-model-5 .cv-content {
        padding: 24px 18px 24px 24px;
    }
    .cv-page.compacto .cv-content {
        padding: 22px 16px !important;
    }
    .cv-page.compacto .cv-header {
        margin-bottom: 10px !important;
    }
    .cv-page.compacto .cv-section {
        margin-top: 8px !important;
    }
    .cv-page.compacto .cv-item {
        margin-bottom: 5px !important;
    }
}

.resume-contact,
.cv-header p,
.resume-subtitle {
    font-size: 16px !important;
    line-height: 1.6;
    font-weight: 700;
}

.cv-sidebar p,
.cv-sidebar li,
.cv-sidebar .resume-contact,
.cv-sidebar .resume-subtitle {
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.6;
}

.cv-page.compacto .cv-content {
    padding: 28px 34px !important;
}

.cv-page.compacto .cv-section {
    margin-top: 10px !important;
}

.cv-page.compacto .cv-item {
    margin-bottom: 6px !important;
}

.cv-page.compacto ul {
    margin-top: 4px !important;
}

.cv-page.compacto li {
    margin-bottom: 2px !important;
    line-height: 1.15 !important;
}

.cv-page.compacto h2 {
    margin-bottom: 5px !important;
    padding-bottom: 3px !important;
}

.cv-page.compacto p {
    line-height: 1.18 !important;
}

.cv-page.compacto .cv-header {
    margin-bottom: 14px !important;
}

.cv-page.compacto .cv-header h1 {
    margin-bottom: 4px !important;
}

.cv-page.compacto .cv-photo {
    width: 82px !important;
    height: 100px !important;
    object-fit: cover !important;
}
.cv-page.compacto .cv-section {
    margin-top: 6px !important;
}

.cv-page.compacto .cv-item {
    margin-bottom: 4px !important;
}

.cv-page.compacto ul {
    margin-top: 2px !important;
}

.cv-page.compacto li {
    margin-bottom: 1px !important;
    line-height: 1.05 !important;
}

.cv-page.compacto h2 {
    margin-bottom: 3px !important;
    padding-bottom: 2px !important;
}

.cv-page.compacto p {
    line-height: 1.05 !important;
}

.cv-page.compacto .cv-header {
    margin-bottom: 10px !important;
}

.cv-page.compacto .cv-header h1 {
    margin-bottom: 2px !important;
}

.cv-section p {
    text-align: justify;
}

.cv-page.compacto .cv-section p {
    line-height: 1.18 !important;
}

.cv-page.compacto .cv-photo {
    width: 105px !important;
    height: 125px !important;
}

.cv-model-2.compacto .cv-photo,
.cv-model-4.compacto .cv-photo {
    width: 132px !important;
    height: 132px !important;
    border-radius: 50% !important;
}

.cv-hide-skills #secao-habilidades {
    display: none !important;
}

.cv-primeiro-emprego .cv-section h2 {
    font-size: 12px;
    letter-spacing: .04em;
}

.cv-primeiro-emprego .cv-item {
    margin-bottom: 8px;
}

.cv-primeiro-emprego .cv-item ul,
.cv-primeiro-emprego .cv-section ul {
    margin-top: 4px;
}

.cv-primeiro-emprego .cv-section p,
.cv-primeiro-emprego .cv-section li {
    line-height: 1.28;
}

.cv-primeiro-emprego .cv-section#secao-habilidades {
    margin-top: 12px;
}

body.preview-page {
    background:
        radial-gradient(circle at top left, rgba(13, 118, 110, .08), transparent 28%),
        radial-gradient(circle at top right, rgba(242, 184, 75, .10), transparent 24%),
        #eef2f1;
}

.preview-page .page {
    width: min(1280px, 94vw);
    max-width: none;
}

.preview-stage {
    display: flex;
    justify-content: center;
    padding: 10px 0 18px;
}

.preview-frame {
    width: min(1080px, 100%);
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62)),
        rgba(255,255,255,.35);
    border: 1px solid rgba(220, 229, 226, .9);
    box-shadow: 0 28px 80px rgba(20, 35, 31, .12);
}

.preview-note {
    margin-bottom: 18px;
}

.preview-note p {
    margin: 0;
}

@media screen {
    .preview-page .cv-page {
        margin: 0 auto;
        transform: scale(.96);
        transform-origin: top center;
    }
}

@media print {
    html, body {
        background: #fff !important;
    }

    body.preview-page {
        margin: 0 !important;
    }

    body.preview-page * {
        visibility: hidden !important;
    }

    body.preview-page .cv-page,
    body.preview-page .cv-page * {
        visibility: visible !important;
    }

    body.preview-page .cv-page {
        position: absolute !important;
        left: 0;
        top: 0;
        width: 794px;
        min-height: 1123px;
        margin: 0 !important;
        box-shadow: none !important;
        transform: none !important;
    }

    body.preview-page .preview-actions,
    body.preview-page .preview-note,
    body.preview-page .topbar,
    body.preview-page .footer,
    body.preview-page .no-print {
        display: none !important;
    }

    body.preview-page .cv-sidebar,
    body.preview-page .cv-sidebar * {
        visibility: visible !important;
    }

    body.preview-page .page {
        width: 100% !important;
        padding: 0 !important;
    }

    body.preview-page .cv-page * {
        visibility: visible !important;
    }
}
