/* Variáveis */
:root {
    --cv-azul: #4285F4;
    --cv-roxo: #8D00FF;
    --cv-preto: #2c3e50;
    --cv-cinza-escuro: #333;
    --cv-cinza-medio: #666;
    --cv-cinza-claro: #f5f5f5;
    --cv-radius: 0;
}

/* Base comum para todos os modelos */
.voy2cur-curriculo-container {
    width: 210mm;
    min-height: 297mm;
    margin: 0 auto;
    background: #fff;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    font-size: 11pt;
    position: relative;
}

.voy2cur-curriculo-container * {
    box-sizing: border-box;
}

.voy2cur-curriculo-container h1,
.voy2cur-curriculo-container h2,
.voy2cur-curriculo-container h3,
.voy2cur-curriculo-container h4 {
    margin: 0 0 10px 0;
    line-height: 1.2;
    font-weight: bold;
}

.voy2cur-curriculo-container p {
    margin: 0 0 8px 0;
}

.voy2cur-curriculo-container a {
    color: inherit;
}

/* ===========================
   MODELO: CABEÇALHO PRETO
   =========================== */

.voy2cur-curriculo-cabecalho-preto {
    overflow: hidden;
}

/* Cabeçalho */
.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-cabecalho {
    background: #2c3e50;
    color: white;
    padding: 30px 40px;
    margin: 0;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-perfil-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-foto {
    flex-shrink: 0;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-foto img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-perfil-info h1 {
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 300;
    letter-spacing: -1px;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-perfil-info h2 {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 15px;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-contato {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-contato p {
    margin: 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-contato .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: white;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-contato a {
    color: white;
    text-decoration: none;
}

/* Conteúdo principal */
.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-principal {
    padding: 30px 40px;
}

/* Seções */
.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-secao {
    margin-bottom: 25px;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-secao h3 {
    font-size: 18px;
    color: #2c3e50;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Experiência */
.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-experiencia-item {
    margin-bottom: 20px;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-experiencia-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 3px;
    font-weight: bold;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-experiencia-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-experiencia-meta .voy2cur-curriculo-separador {
    margin: 0 5px;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-periodo {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-lista {
    margin: 8px 0;
    padding-left: 20px;
    list-style: disc;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-lista li {
    margin-bottom: 3px;
    color: #555;
    font-size: 14px;
}

/* Formação */
.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-formacao-item {
    margin-bottom: 15px;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-formacao-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 3px;
    font-weight: bold;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-formacao-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

/* Habilidades */
.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-habilidades-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-habilidade-tag {
    background: #e9e9e9;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 13px;
    color: #555;
}

/* ===========================
   MODELO: DUAS COLUNAS
   =========================== */

.voy2cur-curriculo-duas-colunas {
    display: flex;
    flex-direction: column;
}

/* Cabeçalho */
.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-cabecalho {
    background: white;
    padding: 30px;
    text-align: center;
    border-bottom: 2px solid #000;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-foto {
    margin: 0 auto 15px;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-foto img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-info-cabecalho h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-contato-header {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    color: #666;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-contato-header span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-contato-header .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* Layout de colunas */
.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-conteudo {
    display: flex;
    min-height: calc(297mm - 180px);
}

/* Coluna esquerda */
.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-coluna-esquerda {
    width: 35%;
    background: #f5f5f5;
    padding: 30px 25px;
}

/* Coluna direita */
.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-coluna-direita {
    width: 65%;
    padding: 30px;
    background: white;
}

/* Seções */
.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-secao {
    margin-bottom: 25px;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-secao h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-secao h3 .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Detalhes pessoais */
.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-coluna-esquerda p {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-coluna-esquerda a {
    color: #333;
    text-decoration: none;
}

/* Habilidades lista */
.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-habilidades-lista {
    list-style: none;
    padding: 0;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-habilidades-lista li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 13px;
    color: #555;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-habilidades-lista li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
}

/* Experiência */
.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-experiencia-item {
    margin-bottom: 20px;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-experiencia-item h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 3px;
    font-weight: bold;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-periodo {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    font-style: italic;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-lista {
    margin: 8px 0;
    padding-left: 20px;
    list-style: disc;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-lista li {
    margin-bottom: 3px;
    color: #555;
    font-size: 13px;
}

/* Idiomas */
.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-idioma-item {
    margin-bottom: 8px;
}

.voy2cur-curriculo-duas-colunas .voy2cur-curriculo-idioma-item p {
    font-size: 13px;
    color: #555;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-perfil-container {
        flex-direction: column;
        text-align: center;
    }
    
    .voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-contato {
        justify-content: center;
    }
    
    .voy2cur-curriculo-duas-colunas .voy2cur-curriculo-conteudo {
        flex-direction: column;
    }
    
    .voy2cur-curriculo-duas-colunas .voy2cur-curriculo-coluna-esquerda,
    .voy2cur-curriculo-duas-colunas .voy2cur-curriculo-coluna-direita {
        width: 100%;
    }
}

/* Impressão */
@media print {
    .voy2cur-curriculo-container {
        width: 100%;
        max-width: 100%;
        box-shadow: none;
    }
    
    .voy2cur-curriculo-cabecalho-preto .voy2cur-curriculo-cabecalho {
        background: #2c3e50 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .voy2cur-curriculo-duas-colunas .voy2cur-curriculo-coluna-esquerda {
        background: #f5f5f5 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .voy2cur-curriculo-secao {
        page-break-inside: avoid;
    }
}

/* ===========================
   ESTILOS PARA VISUALIZAÇÃO
   =========================== */

.voy2cur-visualizacao {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
    max-width: 210mm;
    min-height: 297mm;
    margin: 0 auto;
}

.voy2cur-visualizacao * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Modelo Cabeçalho Preto - Visualização */
.voy2cur-visualizacao.modelo-cabecalho-preto .voy2cur-header {
    background-color: #282828;
    color: #fff;
    padding: 30px 40px;
}

.voy2cur-visualizacao.modelo-cabecalho-preto .voy2cur-header-content {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.voy2cur-visualizacao.modelo-cabecalho-preto .voy2cur-foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 30px;
    border: 3px solid #fff;
}

.voy2cur-visualizacao.modelo-cabecalho-preto h1 {
    font-size: 2em;
    margin-bottom: 5px;
    color: #fff;
}

.voy2cur-visualizacao.modelo-cabecalho-preto h2 {
    font-size: 1.1em;
    color: #ccc;
    font-weight: normal;
}

.voy2cur-visualizacao.modelo-cabecalho-preto .voy2cur-contatos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 0.9em;
}

.voy2cur-visualizacao.modelo-cabecalho-preto .voy2cur-contatos a {
    color: #fff;
    text-decoration: none;
}

.voy2cur-visualizacao.modelo-cabecalho-preto .voy2cur-body {
    padding: 30px 40px;
}

.voy2cur-visualizacao.modelo-cabecalho-preto h3 {
    font-size: 1.5em;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 8px;
    margin-bottom: 20px;
    font-weight: bold;
}

.voy2cur-visualizacao .voy2cur-habilidades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.voy2cur-visualizacao .voy2cur-habilidade-tag {
    background-color: #e9e9e9;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.9em;
}

/* Modelo Duas Colunas - Visualização */
.voy2cur-visualizacao.modelo-duas-colunas {
    padding: 30px;
}

.voy2cur-visualizacao.modelo-duas-colunas .voy2cur-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #000;
}

.voy2cur-visualizacao.modelo-duas-colunas .voy2cur-foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #333;
}

.voy2cur-visualizacao.modelo-duas-colunas h1 {
    font-size: 2.2em;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.voy2cur-visualizacao.modelo-duas-colunas h2 {
    font-size: 1.3em;
    color: #666;
    font-weight: normal;
    margin-bottom: 15px;
}

.voy2cur-visualizacao.modelo-duas-colunas .voy2cur-body {
    display: flex;
    gap: 30px;
}

.voy2cur-visualizacao.modelo-duas-colunas .voy2cur-coluna-esquerda {
    flex: 0 0 35%;
    background: #f5f5f5;
    padding: 25px;
}

.voy2cur-visualizacao.modelo-duas-colunas .voy2cur-coluna-direita {
    flex: 0 0 65%;
    padding: 25px;
}

.voy2cur-visualizacao h3 {
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: bold;
}

.voy2cur-visualizacao.modelo-duas-colunas .voy2cur-coluna-esquerda h3 {
    text-transform: uppercase;
    text-align: center;
}

.voy2cur-visualizacao.modelo-duas-colunas .voy2cur-coluna-direita h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

/* Estilos gerais para items */
.voy2cur-visualizacao .voy2cur-item {
    margin-bottom: 20px;
}

.voy2cur-visualizacao .voy2cur-item h4 {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 3px;
    font-weight: bold;
}

.voy2cur-visualizacao .voy2cur-item-subtitulo {
    font-size: 0.95em;
    color: #555;
    font-style: italic;
    margin-bottom: 5px;
}

.voy2cur-visualizacao .voy2cur-item-data {
    font-size: 0.85em;
    color: #777;
    margin-bottom: 8px;
}

.voy2cur-visualizacao .voy2cur-item ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 8px;
}

.voy2cur-visualizacao .voy2cur-item li {
    margin-bottom: 5px;
    font-size: 0.95em;
}

/* Habilidades com barras */
.voy2cur-visualizacao .voy2cur-habilidades-lista {
    list-style: none;
    padding: 0;
}

.voy2cur-visualizacao .voy2cur-habilidade {
    margin-bottom: 8px;
}

.voy2cur-visualizacao .voy2cur-habilidade-nome {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 3px;
}

.voy2cur-visualizacao .voy2cur-habilidade-barra {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.voy2cur-visualizacao .voy2cur-habilidade-nivel {
    height: 100%;
    background: #333;
    border-radius: 4px;
}

/* Idiomas */
.voy2cur-visualizacao .voy2cur-idioma {
    margin-bottom: 10px;
}

.voy2cur-visualizacao .voy2cur-idioma-nome {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 5px;
}

.voy2cur-visualizacao .voy2cur-idioma-pontos {
    display: flex;
    gap: 5px;
}

.voy2cur-visualizacao .voy2cur-idioma-ponto {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
}

.voy2cur-visualizacao .voy2cur-idioma-ponto.preenchido {
    background: #333;
}

/* Listas */
.voy2cur-visualizacao .voy2cur-lista {
    list-style: none;
    padding: 0;
}

.voy2cur-visualizacao .voy2cur-lista li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #555;
}

.voy2cur-visualizacao .voy2cur-lista li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}