/* WC Vagas Final - Modern Design with Roboto Font and Emojis */

/* REGRA GLOBAL: Todos os botões com border-radius arredondado */
button,
.wc-btn,
.wc-btn-primary,
.wc-btn-secondary,
.wc-btn-danger,
.wc-btn-success,
.wc-btn-edit,
.wc-btn-delete,
.wc-btn-remove,
.wc-btn-add,
.wc-btn-close,
.wc-btn-cancel,
.wc-btn-save,
.wc-btn-submit,
[class*="wc-btn"],
input[type="submit"],
input[type="button"],
a.wc-btn,
a[class*="wc-btn"] {
    border-radius: 500px !important;
}

/* Aplicar box-sizing apenas em elementos do plugin */
[class*="wc-"],
[class*="wc-"] * {
    box-sizing: border-box;
}

/* FORÇA TODOS OS SHORTCODES A OCUPAREM 100% DA LARGURA SEM PADDING */
.wc-vagas-container,
.wc-vagas-publicas-container,
.wc-vaga-detalhes-container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Container Principal */
.wc-vagas-container {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.wc-vagas-card {
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
}

/* Cabeçalho removido - formulário começa direto */

/* Formulários */
.wc-vagas-form {
    width: 100%;
}

.wc-form-section {
    margin-bottom: 35px;
}

.wc-form-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6vw; /* TÍTULO */
    font-weight: 500;
    color: #2d3748;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wc-form-section-title i {
    color: #041E42;
    font-size: 1.4vw; /* Ícone proporcional ao título */
}

.wc-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.wc-form-group {
    margin-bottom: 24px;
}

.wc-form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1vw; /* LABEL/PERGUNTA */
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.wc-form-required {
    color: #ef4444;
    margin-left: 4px;
}

.wc-form-control {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 1vw; /* CORPO DE TEXTO */
    font-weight: 400;
    color: #1f2937;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
    min-height: 50px;
    line-height: 1.6;
    box-sizing: border-box;
}

.wc-form-control:focus {
    border-color: #041E42;
    box-shadow: 0 0 0 4px rgba(4, 30, 66, 0.1);
}

.wc-form-control:hover {
    border-color: #A4D65E;
}

textarea.wc-form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

select.wc-form-control {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding: 14px 45px 14px 16px;
    min-height: 50px;
    height: auto;
    line-height: normal;
    vertical-align: middle;
    font-size: 1vw !important; /* Desktop: força 1vw nos selects */
}

/* Opções do select também ajustadas */
select.wc-form-control option {
    font-size: 16px; /* Tamanho fixo nas opções para melhor legibilidade */
    padding: 10px;
}

/* Helper Text */
.wc-form-helper {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 1vw; /* CORPO DE TEXTO */
    font-weight: 300;
    color: #6b7280;
    margin-top: 6px;
    line-height: 1.4;
}

/* Radio Buttons Modernos */
.wc-radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wc-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1vw; /* LABEL/PERGUNTA */
    font-weight: 400;
    color: #374151;
    padding: 10px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wc-radio-label:hover {
    border-color: #A4D65E;
    background: #f0f4f8;
}

.wc-radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #041E42;
}

.wc-radio-label input[type="radio"]:checked + span {
    font-weight: 500;
    color: #041E42;
}

/* Checkbox */
.wc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1vw; /* LABEL/PERGUNTA */
    font-weight: 400;
    color: #374151;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wc-checkbox-label:hover {
    border-color: #A4D65E;
    background: #f0f4f8;
}

.wc-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #041E42;
}

/* Campo Oculto */
.wc-form-hidden {
    display: none;
}

/* Botões */
.wc-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.wc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Roboto', sans-serif;
    font-size: 1vw; /* CORPO DE TEXTO */
    font-weight: 500;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
}

.wc-btn-primary {
    background: #041E42;
    color: #ffffff !important;
    box-shadow: none;
}

.wc-btn-primary:hover {
    background: #A4D65E;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: none;
}

.wc-btn-primary:active {
    transform: translateY(0);
    color: #ffffff !important;
}

.wc-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.wc-btn-secondary:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.wc-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Alertas */
.wc-vagas-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1vw; /* CORPO DE TEXTO */
    font-weight: 400;
    margin-bottom: 20px;
}

.wc-vagas-alert i {
    font-size: 1.2vw; /* Proporcional ao texto */
}

.wc-vagas-alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.wc-vagas-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

.wc-vagas-alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 2px solid #f59e0b;
}

.wc-vagas-alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 2px solid #3b82f6;
}

/* Loading */
.wc-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.wc-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    border: 3px solid #e5e7eb;
    border-top-color: #041E42;
    border-radius: 50%;
    animation: wc-spin 0.8s linear infinite;
}

@keyframes wc-spin {
    to { transform: rotate(360deg); }
}

/* Grid Responsivo */
.wc-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.wc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
    .wc-vagas-card {
        padding: 24px;
    }
    
    .wc-vagas-header h2 {
        font-size: 24px;
    }
    
    .wc-form-row,
    .wc-grid-2,
    .wc-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .wc-form-actions {
        flex-direction: column;
    }
    
    .wc-btn {
        width: 100%;
    }
    
    .wc-radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    /* MOBILE - Nova Padronização */
    
    /* TÍTULOS - 18px */
    .wc-form-section-title {
        font-size: 18px !important;
    }
    
    .wc-form-section-title i {
        font-size: 17px !important;
    }
    
    /* LABELS/PERGUNTAS - 16px */
    .wc-form-group label {
        font-size: 16px !important;
    }
    
    .wc-radio-label,
    .wc-checkbox-label {
        font-size: 16px !important;
    }
    
    /* CORPO DE TEXTO - 15px */
    .wc-form-control {
        font-size: 15px !important;
    }
    
    /* SELECTS - 15px */
    select.wc-form-control {
        font-size: 15px !important;
    }
    
    select.wc-form-control option {
        font-size: 15px !important;
    }
    
    .wc-btn {
        font-size: 15px !important;
    }
    
    /* Helpers - CORPO 15px */
    .wc-form-helper {
        font-size: 15px !important;
    }
}

/* WIDE SCREEN - Limitar tamanhos máximos (>1920px) */
@media (min-width: 1920px) {
    /* TÍTULOS - máximo 30px */
    .wc-form-section-title {
        font-size: 30px !important;
    }
    
    .wc-form-section-title i {
        font-size: 28px !important;
    }
    
    /* LABELS/PERGUNTAS - máximo 21px */
    .wc-form-group label {
        font-size: 21px !important;
    }
    
    .wc-radio-label,
    .wc-checkbox-label {
        font-size: 21px !important;
    }
    
    /* CORPO DE TEXTO - máximo 19px */
    .wc-form-control {
        font-size: 19px !important;
    }
    
    .wc-form-helper {
        font-size: 19px !important;
    }
    
    .wc-btn {
        font-size: 19px !important;
    }
    
    /* SELECTS - máximo 18px */
    select.wc-form-control {
        font-size: 18px !important;
    }
    
    select.wc-form-control option {
        font-size: 17px !important;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wc-vagas-card {
    animation: fadeIn 0.4s ease;
}

/* Estados de Validação */
.wc-form-control.wc-invalid {
    border-color: #ef4444;
    background: #fef2f2;
}

.wc-form-control.wc-valid {
    border-color: #10b981;
}

.wc-error-message {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #ef4444;
    margin-top: 6px;
}

/* Área de Requisitos Dinâmica */
.wc-requisitos-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.wc-requisito-item {
    display: flex;
    gap: 10px;
}

.wc-btn-add-requisito {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #041E42;
    background: #f0f4f8;
    border: 2px dashed #A4D65E;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wc-btn-add-requisito:hover {
    background: #A4D65E;
    color: #041E42;
    border-color: #041E42;
}

.wc-btn-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: #fee2e2;
    color: #ef4444;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wc-btn-remove:hover {
    background: #fecaca;
}

/* Emojis - Substituindo Font Awesome */
.wc-emoji {
    display: inline-block;
    font-style: normal;
    font-size: 1.2em;
    line-height: 1;
    vertical-align: middle;
    margin-right: 8px;
}

/* Emojis nos títulos de seção */
.wc-form-section-title .wc-emoji {
    font-size: 1.1em;
}

/* Emojis nos botões */
.wc-btn .wc-emoji {
    font-size: 1em;
    margin-right: 6px;
}

/* Emojis em alertas */
.wc-vagas-alert .wc-emoji {
    font-size: 1.3em;
    margin-right: 10px;
}

/* ============================================
   PÁGINA MINHAS VAGAS - Layout em 3 Colunas
   ============================================ */

/* Cabeçalho da Página */
.wc-minhas-vagas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 0;
    border-bottom: none;
}

/* Contador principal */
.wc-vagas-count-main {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

/* Botão Adicionar Redondo */
.wc-btn-add-round {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #041E42;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(4, 30, 66, 0.15);
}

.wc-btn-add-round .wc-emoji {
    font-size: 20px;
    margin: 0;
    filter: brightness(0) invert(1);
}

.wc-btn-add-round:hover {
    background: #A4D65E;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(164, 214, 94, 0.3);
}

/* Grid de 3 Colunas */
.wc-vagas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Card Individual da Vaga */
.wc-vaga-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.wc-vaga-card:hover {
    border-color: #A4D65E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Header do Card (Título) */
.wc-vaga-card-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 0;
    border-bottom: none;
}

/* Linha superior com badge e lápis */
.wc-vaga-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.wc-vaga-card-header h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2vw;  /* Desktop: 1.2vw (responsivo) */
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Botão Editar inline (ao lado do badge) */
.wc-btn-edit-inline {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.wc-btn-edit-inline .wc-emoji {
    font-size: 16px;
    margin: 0;
}

.wc-btn-edit-inline:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: scale(1.05);
}

.wc-btn-edit-inline:hover .wc-emoji {
    filter: grayscale(100%) brightness(200%);
}

/* Botão de Enviar Email Inline (ao lado do editar) */
.wc-btn-email-inline {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.wc-btn-email-inline .wc-emoji {
    font-size: 16px;
    margin: 0;
}

.wc-btn-email-inline:hover {
    background: #A4D65E;
    border-color: #A4D65E;
    transform: scale(1.05);
}

.wc-btn-email-inline:hover .wc-emoji {
    filter: grayscale(100%) brightness(200%);
}

.wc-btn-email-inline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Badge Tipo de Vaga */
.wc-vaga-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 500;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: fit-content;
}

.wc-badge-clt {
    background: #e0f2fe;
    color: #075985;
}

.wc-badge-pj {
    background: #fef3c7;
    color: #92400e;
}

.wc-badge-estagio {
    background: #d1fae5;
    color: #065f46;
}

.wc-badge-temporario {
    background: #fce7f3;
    color: #9f1239;
}

.wc-badge-jovem-aprendiz {
    background: #e0e7ff;
    color: #3730a3;
}

.wc-badge-freelancer {
    background: #fef3c7;
    color: #78350f;
}

.wc-badge-voluntario {
    background: #f3e8ff;
    color: #6b21a8;
}

/* Informações da Vaga */
.wc-vaga-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.wc-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 1vw;  /* Desktop: 1vw (responsivo) */
    color: #6b7280;
    line-height: 1.4;
}

.wc-info-item .wc-emoji {
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 2px;
}

.wc-info-item strong {
    font-weight: 500;
    color: #374151;
}

/* Datas e Visualizações */
.wc-info-date,
.wc-info-views {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #9ca3af;
}

.wc-info-date .wc-emoji,
.wc-info-views .wc-emoji {
    font-size: 13px;
    margin-right: 2px;
}

/* Ações do Card */
.wc-vaga-card-actions {
    display: flex;
    gap: 8px;
    padding-top: 0;
    border-top: none;
    margin-top: 8px;
}

.wc-btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 10px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wc-btn-action .wc-emoji {
    font-size: 15px;
    margin-right: 4px;
}

.wc-btn-curriculos {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
    flex: 1;
}

.wc-btn-curriculos:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-1px);
}

.wc-btn-delete {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
    flex: 1;
}

.wc-btn-delete:hover {
    background: #dc2626;
    border-color: #dc2626;
    transform: translateY(-1px);
}

/* Estado Vazio */
.wc-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    margin: 40px 0;
}

.wc-empty-state .wc-emoji {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
}

.wc-empty-state h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 12px 0;
}

.wc-empty-state p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

/* Responsivo - Tablet (2 colunas) */
@media (max-width: 1024px) {
    .wc-vagas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wc-minhas-vagas-title h2 {
        font-size: 24px;
    }
    
    .wc-vaga-card {
        padding: 20px;
    }
}

/* Responsivo - Mobile (1 coluna) */
@media (max-width: 768px) {
    .wc-vagas-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .wc-minhas-vagas-header {
        margin-bottom: 20px;
    }
    
    .wc-vagas-count-main {
        font-size: 13px;
    }
    
    .wc-btn-add-round {
        width: 44px;
        height: 44px;
    }
    
    .wc-btn-add-round .wc-emoji {
        font-size: 18px;
    }
    
    .wc-vaga-card {
        padding: 16px;
    }
    
    .wc-btn-edit-inline {
        width: 30px;
        height: 30px;
    }
    
    .wc-btn-edit-inline .wc-emoji {
        font-size: 14px;
    }
    
    .wc-vaga-card-header h3 {
        font-size: 15px;
    }
    
    .wc-vaga-card-actions {
        gap: 8px;
        flex-direction: column;
    }
    
    .wc-btn-action {
        font-size: 13px;
        padding: 10px 16px;
        width: 100%;
    }
    
    .wc-btn-action .wc-emoji {
        font-size: 14px;
    }
    
    .wc-empty-state {
        padding: 40px 16px;
    }
    
    .wc-empty-state .wc-emoji {
        font-size: 48px;
    }
    
    .wc-empty-state h3 {
        font-size: 18px;
    }
    
    .wc-empty-state p {
        font-size: 14px;
    }
}

/* ============================================
   UPLOAD DE LOGO DA EMPRESA
   ============================================ */

/* Input File Customizado */
.wc-input-file {
    padding: 12px;
    border: 2px dashed #616469;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Roboto', sans-serif;
}

.wc-input-file:hover {
    border-color: #A4D65E;
    background: #f0f9ff;
}

.wc-input-file:focus {
    outline: none;
    border-color: #041E42;
    box-shadow: 0 0 0 3px rgba(4, 30, 66, 0.1);
}

/* Preview do Logo */
.wc-logo-preview {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 16px;
}

.wc-logo-preview-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border: 2px solid #616469;
    border-radius: 8px;
    background: transparent;
    padding: 10px;
}

.wc-btn-remove-logo {
    padding: 10px 20px;
    background: #dc3545;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wc-btn-remove-logo:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.wc-btn-remove-logo .wc-emoji {
    font-size: 16px;
}

/* ============================================
   LISTAGEM PÚBLICA DE VAGAS - Layout com Sidebar
   ============================================ */

/* Container Principal */
.wc-vagas-publicas-container {
    display: grid;
    grid-template-columns: 20vw 1fr;  /* 20% da largura da tela para filtros */
    gap: 2vw;  /* Gap proporcional */
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Roboto', sans-serif;
}

/* ========== SIDEBAR FILTROS ========== */
.wc-vagas-sidebar {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5vw;  /* Padding proporcional */
    height: fit-content;
    position: static;
}

.wc-filtros-header h3 {
    font-size: 1.1vw;  /* Desktop: 1.1vw */
    font-weight: 600;
    color: #041E42;
    margin: 0 0 1.5vw 0;
    padding-bottom: 0.8vw;
    border-bottom: 2px solid #A4D65E;
    font-family: 'Roboto', sans-serif;
}

/* Grupos de Filtros */
.wc-filtro-grupo {
    margin-bottom: 1.5vw;
}

.wc-filtro-label {
    display: block;
    font-size: clamp(11px, 1vw, 14px);  /* Desktop: mínimo 11px, máximo 14px */
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.7vw;
    font-family: 'Roboto', sans-serif;
}

/* Campo de Busca */
.wc-search-box {
    display: flex;
    gap: 0.5vw;
}

.wc-filtro-input {
    flex: 1;
    padding: 0.7vw 0.8vw;
    font-size: clamp(13px, 1vw, 15px);  /* Desktop: mínimo 13px, máximo 15px */
    font-family: 'Roboto', sans-serif;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.2s;
    background: #ffffff;
    min-height: 44px;
    line-height: 1.5;
}

.wc-filtro-input:focus {
    outline: none;
    border-color: #041E42;
}

.wc-search-btn {
    width: 2.2vw;
    height: 2.2vw;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #041E42;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    padding: 0;
    flex-shrink: 0;
}

.wc-search-btn:hover {
    background: #A4D65E;
}

/* Lista de Radios */
.wc-radio-list {
    display: flex;
    flex-direction: column;
    gap: 0.3vw;
}

.wc-radio-item {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    padding: 0.4vw 0.5vw;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

/* Hover removido conforme solicitado */
.wc-radio-item:hover {
    /* background: #e2e8f0; */
}

.wc-radio-item input[type="radio"] {
    width: 1vw;
    height: 1vw;
    min-width: 16px;
    min-height: 16px;
    cursor: pointer;
    accent-color: #041E42;
}

.wc-radio-item span {
    font-size: clamp(13px, 1vw, 15px);  /* Desktop: mínimo 13px, máximo 15px */
    color: #4a5568;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

/* Filtros Colapsáveis */
.wc-filtro-collapsible {
    border-top: 1px solid #616469;
    padding-top: 1vw;
}

.wc-filtro-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-bottom: 0.8vw;
}

/* Remover hover e efeitos do toggle */
.wc-filtro-toggle:hover,
.wc-filtro-toggle:focus,
.wc-filtro-toggle:active {
    background: transparent !important;
    outline: none;
}

.wc-toggle-icon {
    font-size: clamp(16px, 1.2vw, 18px);
    color: #718096;
}

/* Lista de Checkboxes */
.wc-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.3vw;
}

.wc-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    padding: 0.4vw 0.5vw;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

/* Hover removido conforme solicitado */
.wc-checkbox-item:hover {
    /* background: #e2e8f0; */
}

.wc-checkbox-item input[type="checkbox"] {
    width: 1vw;
    height: 1vw;
    min-width: 16px;
    min-height: 16px;
    cursor: pointer;
    accent-color: #041E42;
}

.wc-checkbox-item span {
    font-size: clamp(13px, 1vw, 15px);  /* Desktop: mínimo 13px, máximo 15px */
    color: #4a5568;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

/* Grupo de Botões (PCD) */
.wc-btn-group {
    display: flex;
    gap: 0.4vw;
}

.wc-btn-filter {
    flex: 1;
    padding: 0.5vw 0.8vw;
    font-size: clamp(12px, 1vw, 14px);  /* Desktop: mínimo 12px, máximo 14px */
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s;
}

/* Hover removido conforme solicitado */
.wc-btn-filter:hover {
    /* border-color: #041E42; */
    /* color: #041E42; */
}

.wc-btn-filter.active {
    background: #041E42;
    border-color: #041E42;
    color: #ffffff;
}

/* Ações dos Filtros */
.wc-filtros-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7vw;
    margin-top: 1.5vw;
    padding-top: 1.2vw;
    border-top: 1px solid #616469;
}

.wc-btn-aplicar {
    width: 100%;
    padding: 0.8vw;
    font-size: clamp(13px, 1vw, 15px);  /* Desktop: mínimo 13px, máximo 15px */
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    background: #041E42;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.wc-btn-aplicar:hover {
    background: #A4D65E;
    color: #041E42;
}

/* ========== ÁREA DE CONTEÚDO ========== */
.wc-vagas-content {
    min-width: 0;
}

/* Header de Resultados */
.wc-vagas-result-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.wc-result-count {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
}

/* Sem Resultados */
.wc-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
}

.wc-no-results .wc-emoji {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
}

.wc-no-results h3 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 8px 0;
    font-family: 'Roboto', sans-serif;
}

.wc-no-results p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Lista de Vagas */
.wc-vagas-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Item de Vaga - Layout com duas áreas */
.wc-vaga-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background: transparent;
}

.wc-vaga-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Link do Card (todo o card clicável) */
.wc-vaga-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.wc-vaga-item-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Header do Item - Área Cinza */
.wc-vaga-item-header {
    background: #041E42;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.wc-vaga-item-titulo {
    font-size: 1.2vw;  /* Desktop: 1.2vw */
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.3;
    font-family: 'Roboto', sans-serif;
    color: #ffffff !important;
}

/* Garantir que o título permaneça branco em todos os estados */
.wc-vaga-item-link .wc-vaga-item-titulo,
.wc-vaga-item-link:visited .wc-vaga-item-titulo,
.wc-vaga-item-link:hover .wc-vaga-item-titulo,
.wc-vaga-item-link:active .wc-vaga-item-titulo,
.wc-vaga-item-link:focus .wc-vaga-item-titulo {
    color: #ffffff !important;
}

.wc-vaga-item-data {
    font-size: 10px;
    color: #ffffff;
    white-space: nowrap;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    background: transparent;
    padding: 4px 0;
}

/* Metadados da Vaga - Área Branca */
.wc-vaga-item-meta {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    padding: 12px 20px;  /* Reduzido de 16px para 12px */
    display: flex;
    flex-wrap: wrap;
    gap: 10px;  /* Reduzido de 16px para 10px */
}

.wc-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;  /* Reduzido de 6px para 4px */
    font-size: 13px;
    color: #4a5568;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.wc-meta-item .wc-emoji {
    font-size: 14px;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 968px) {
    .wc-vagas-publicas-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wc-vagas-sidebar {
        position: static;
    }
    
    .wc-filtros-header h3 {
        text-align: center;
    }
}

/* Botão Filtros Mobile */
.wc-filtros-toggle-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #A4D65E;
    color: #041E42;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: all 0.3s;
}

/* Hover removido conforme solicitado */
.wc-filtros-toggle-btn:hover {
    /* background: #A4D65E; */
    /* transform: translateX(-50%) scale(1.05); */
}

.wc-filtros-toggle-btn:active {
    transform: translateX(-50%) scale(0.95);
}

/* Offcanvas Overlay */
.wc-filtros-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.wc-filtros-overlay.active {
    display: block;
    opacity: 1;
}

/* Esconder header com botão X no desktop */
.wc-filtros-close {
    display: none;
}

@media (max-width: 768px) {
    .wc-vagas-publicas-container {
        padding: 0 !important;
        grid-template-columns: 1fr;
    }
    
    /* Mostrar botão de filtros no mobile */
    .wc-filtros-toggle-btn {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Sidebar como offcanvas */
    .wc-vagas-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        z-index: 1001;
        overflow-y: auto;
        padding: 20px;
        box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
        transition: left 0.3s ease-in-out;
    }
    
    .wc-vagas-sidebar.active {
        left: 0;
    }
    
    /* Botão fechar offcanvas */
    .wc-filtros-close {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #e2e8f0;
    }
    
    .wc-filtros-close-btn {
        background: #f0f0f0;
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 20px;
        color: #616469;
        transition: all 0.2s;
    }
    
    .wc-filtros-close-btn:hover {
        background: #e0e0e0;
        color: #041E42;
    }
    
    /* Ocultar header duplicado no mobile */
    .wc-filtros-header {
        display: none;
    }
    
    /* Ajustar espaçamento do primeiro filtro */
    .wc-filtro-grupo:first-of-type {
        margin-top: 0;
    }
    
    /* Mobile: Fontes fixas em px */
    .wc-filtros-header h3 {
        font-size: 20px !important;  /* Mobile: 20px fixo */
    }
    
    .wc-filtro-label {
        font-size: 16px !important;  /* Mobile: 16px fixo */
    }
    
    .wc-filtro-input {
        font-size: 16px !important;  /* Mobile: 16px fixo */
    }
    
    .wc-radio-item span {
        font-size: 16px !important;  /* Mobile: 16px fixo */
    }
    
    .wc-checkbox-item span {
        font-size: 16px !important;  /* Mobile: 16px fixo */
    }
    
    .wc-btn-filter {
        font-size: 16px !important;  /* Mobile: 16px fixo */
    }
    
    .wc-btn-aplicar {
        font-size: 16px !important;  /* Mobile: 16px fixo */
    }
    
    .wc-vaga-item-titulo {
        font-size: 20px !important;  /* Mobile: 20px fixo */
    }
    
    .wc-vaga-card-header h3 {
        font-size: 17px !important;  /* Mobile: 17px fixo */
    }
    
    .wc-info-item {
        font-size: 15px !important;  /* Mobile: 15px fixo */
    }
    
    .wc-vaga-item-meta {
        padding: 10px 16px !important;  /* Mobile: espaçamento reduzido */
        gap: 8px !important;  /* Mobile: gap reduzido */
    }
    
    .wc-meta-item {
        gap: 3px !important;  /* Mobile: gap ainda menor */
    }
    
    .wc-vaga-item {
        padding: 16px;
    }
    
    .wc-vaga-item-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .wc-vaga-item-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Reduzir espaçamento entre palavras nos cards mobile */
    .wc-meta-item {
        gap: 4px;  /* Reduzido de 6px para 4px */
    }
}

/* ============================================
   PÁGINA DE DETALHES DA VAGA
   ============================================ */

/* Container Principal */
.wc-vaga-detalhes-container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Roboto', sans-serif;
}

/* Breadcrumb */
.wc-breadcrumb {
    margin-bottom: 24px;
}

.wc-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    transition: color 0.2s;
}

.wc-breadcrumb a:hover {
    color: #041E42;
}

/* Header da Vaga */
.wc-vaga-detalhes-header {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.wc-vaga-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #A4D65E;
}

.wc-vaga-title-section {
    flex: 1;
}

.wc-vaga-titulo-principal {
    font-size: 32px;
    font-weight: 700;
    color: #041E42;
    margin: 0 0 12px 0;
    line-height: 1.3;
    font-family: 'Roboto', sans-serif;
}

.wc-vaga-empresa-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #4a5568;
    font-family: 'Roboto', sans-serif;
}

.wc-empresa-nome {
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.wc-vaga-meta-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.wc-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wc-badge-tipo {
    background: #041E42;
    color: #ffffff;
}

.wc-badge-home-office {
    background: #A4D65E;
    color: #041E42;
}

/* Informações Rápidas */
.wc-vaga-info-rapida {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.wc-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.wc-info-item .wc-emoji {
    font-size: 20px;
    line-height: 1;
}

.wc-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wc-info-label {
    font-size: 1.1vw;  /* Desktop: 1.1vw */
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
}

.wc-info-value {
    font-size: 1.1vw;  /* Desktop: 1.1vw */
    font-weight: 500;
    color: #1f2937;
    font-family: 'Roboto', sans-serif;
}

.wc-info-secundario {
    font-size: 1.1vw;  /* Desktop: 1.1vw */
    font-weight: 400;
    color: #9ca3af;
}

/* Layout Principal: 2 Colunas */
.wc-vaga-detalhes-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* Coluna Principal */
.wc-vaga-content-principal {
    min-width: 0;
}

.wc-content-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.wc-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #041E42;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #A4D65E;
    font-family: 'Roboto', sans-serif;
}

.wc-section-content {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    font-family: 'Roboto', sans-serif;
}

/* Seção de Candidatura */
.wc-candidatura-section {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.wc-btn-candidatar {
    width: 100%;
    max-width: 400px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    background: #041E42;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: not-allowed;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.wc-btn-candidatar:not([disabled]) {
    cursor: pointer;
}

.wc-btn-candidatar:not([disabled]):hover {
    background: #A4D65E;
    color: #041E42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wc-btn-candidatar[disabled] {
    opacity: 0.6;
}

.wc-btn-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #A4D65E;
    color: #041E42;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.wc-candidatura-info {
    margin-top: 16px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
}

/* Sidebar de Informações */
.wc-vaga-sidebar-info {
    min-width: 0;
}

.wc-info-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.wc-info-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #041E42;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #A4D65E;
    font-family: 'Roboto', sans-serif;
}

.wc-info-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wc-info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.wc-info-icon {
    font-size: 18px;
    line-height: 1;
}

.wc-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.wc-info-label-small {
    font-size: 1.1vw;  /* Desktop: 1.1vw */
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wc-info-value-small {
    font-size: 1.1vw;  /* Desktop: 1.1vw */
    font-weight: 500;
    color: #1f2937;
}

/* Botões de Compartilhamento */
.wc-share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wc-btn-share {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    color: #4a5568;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wc-btn-share:hover {
    background: #041E42;
    color: #ffffff;
    border-color: #041E42;
}

/* Botão de Denúncia */
.wc-btn-report {
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    background: transparent;
    color: #ef4444;
    border: 1px solid #ef4444;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wc-btn-report:hover {
    background: #ef4444;
    color: #ffffff;
}

/* Mensagem de Erro */
.wc-error-message {
    background: #fee2e2;
    border: 1px solid #ef4444;
    border-radius: 8px;
    padding: 16px;
    color: #991b1b;
    text-align: center;
    font-weight: 500;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 968px) {
    .wc-vaga-detalhes-content {
        grid-template-columns: 1fr;
    }
    
    .wc-vaga-sidebar-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .wc-vaga-detalhes-container {
        padding: 0 !important;
    }
    
    .wc-vaga-detalhes-header {
        padding: 20px;
    }
    
    .wc-vaga-header-top {
        flex-direction: column;
        gap: 16px;
    }
    
    .wc-vaga-titulo-principal {
        font-size: 24px;
    }
    
    .wc-vaga-info-rapida {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .wc-content-section {
        padding: 20px;
    }
    
    .wc-candidatura-section {
        padding: 20px;
    }
    
    .wc-btn-candidatar {
        font-size: 14px;
        padding: 14px 24px;
    }
    
    .wc-info-label {
        font-size: 18px !important;  /* Mobile: 18px fixo */
    }
    
    .wc-info-value {
        font-size: 18px !important;  /* Mobile: 18px fixo */
    }
    
    .wc-info-secundario {
        font-size: 18px !important;  /* Mobile: 18px fixo */
    }
    
    .wc-info-label-small {
        font-size: 18px !important;  /* Mobile: 18px fixo */
    }
    
    .wc-info-value-small {
        font-size: 18px !important;  /* Mobile: 18px fixo */
    }
}

/* ============================================
   VAGAS EM DESTAQUE - SLIDER
   ============================================ */

/* Container Principal */
.wc-vagas-destaque-container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 40px 20px !important;
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: block !important;  /* Forçar display block */
    flex-direction: column !important;  /* Sobrescrever qualquer row */
}

/* Slider Container */
.wc-vagas-destaque-slider {
    position: relative;
    width: 100% !important;
}

/* Splide Track - Largura Total */
.wc-vagas-destaque-slider .splide__track {
    width: 100% !important;
}

/* Splide List - Largura Total */
.wc-vagas-destaque-slider .splide__list {
    width: 100% !important;
}

/* Slides - Largura Calculada para 3 Colunas */
.wc-vagas-destaque-slider .splide__slide {
    /* Desktop: 3 colunas com gap de 20px */
    width: calc(33.333% - 14px) !important;  /* (100% / 3) - (20px gap) */
    max-width: calc(33.333% - 14px) !important;
    flex-shrink: 0;
}

/* Customizar Arrows do Splide - Texto Simples < e > */
.wc-vagas-destaque-slider .splide__arrow {
    background: #041E42;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #616469;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.wc-vagas-destaque-slider .splide__arrow:hover {
    background: #A4D65E;
    opacity: 1;
    transform: scale(1.1);
}

/* Esconder SVG padrão do Splide */
.wc-vagas-destaque-slider .splide__arrow svg {
    display: none;
}

/* Seta Esquerda - Símbolo < */
.wc-vagas-destaque-slider .splide__arrow--prev {
    left: -70px;
}

.wc-vagas-destaque-slider .splide__arrow--prev::after {
    content: '<';
    font-family: Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
}

/* Seta Direita - Símbolo > */
.wc-vagas-destaque-slider .splide__arrow--next {
    right: -70px;
}

.wc-vagas-destaque-slider .splide__arrow--next::after {
    content: '>';
    font-family: Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
}

/* Card Individual */
.wc-vaga-destaque-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #616469;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.wc-vaga-destaque-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(65, 100, 105, 0.15);
    border-color: #A4D65E;
}

/* Cabeçalho Verde */
.wc-vaga-destaque-header {
    background: #A4D65E;
    padding: 16px 18px;
    border-bottom: 1px solid #616469;
}

.wc-vaga-destaque-titulo {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2vw;  /* Desktop: 1.2vw */
    font-weight: 700;
    color: #041E42;
    margin: 0;
    text-align: left;
    line-height: 1.3;
}

/* Corpo Branco com Informações */
.wc-vaga-destaque-body {
    background: #ffffff;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    align-items: center;
}

/* Coluna de Informações */
.wc-vaga-destaque-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wc-vaga-destaque-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #616469;
    font-weight: 400;
    line-height: 1.4;
}

.wc-vaga-destaque-item .wc-emoji {
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.wc-vaga-destaque-item span:not(.wc-emoji) {
    line-height: 1.3;
}

/* Logo da Empresa */
.wc-vaga-destaque-logo {
    width: 120px;
    height: 120px;
    border: 2px solid #616469;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    flex-shrink: 0;
}

.wc-vaga-destaque-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.wc-vaga-destaque-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.wc-vaga-destaque-logo-fallback .wc-emoji {
    font-size: 48px;
}

/* Link Invisível sobre Todo Card */
.wc-vaga-destaque-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    text-decoration: none;
}

/* Mensagem Vazio */
.wc-vagas-destaque-vazio {
    text-align: center;
    padding: 60px 20px;
    color: #616469;
}

.wc-vagas-destaque-vazio .wc-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.wc-vagas-destaque-vazio p {
    font-size: 16px;
    margin: 0;
}

/* Checkbox Destaque no Formulário */
.wc-destaque-checkbox {
    background: #f8f9fa;
    border: 2px solid #A4D65E;
    border-radius: 8px;
    padding: 20px;
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.wc-destaque-checkbox:hover {
    background: #f0f9ff;
    border-color: #041E42;
}

.wc-destaque-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.wc-destaque-checkbox span {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wc-destaque-checkbox strong {
    font-size: 16px;
    font-weight: 600;
    color: #041E42;
}

.wc-destaque-checkbox small {
    font-size: 13px;
    color: #616469;
    font-weight: 400;
}

/* ========== RESPONSIVO ========== */

/* Tablet - 2 cards per slide */
@media (max-width: 1024px) {
    .wc-vagas-destaque-container {
        padding: 30px 15px !important;
    }
    
    /* Tablet: 2 colunas */
    .wc-vagas-destaque-slider .splide__slide {
        width: calc(50% - 8px) !important;  /* (100% / 2) - (15px gap / 2) */
        max-width: calc(50% - 8px) !important;
    }
    
    .wc-vagas-destaque-slider .splide__arrow {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .wc-vagas-destaque-slider .splide__arrow--prev {
        left: -55px;  /* Menos afastado no tablet */
    }
    
    .wc-vagas-destaque-slider .splide__arrow--next {
        right: -55px;  /* Menos afastado no tablet */
    }
    
    .wc-vagas-destaque-slider .splide__arrow--prev::after,
    .wc-vagas-destaque-slider .splide__arrow--next::after {
        font-size: 24px;
    }
    
    .wc-vaga-destaque-body {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .wc-vaga-destaque-logo {
        width: 90px;
        height: 90px;
        margin: 0 auto;
    }
    
    .wc-vaga-destaque-logo-fallback .wc-emoji {
        font-size: 42px;
    }
}

/* Mobile - 1 card per slide */
@media (max-width: 768px) {
    .wc-vagas-destaque-container {
        padding: 20px 10px !important;
    }
    
    /* Mobile: 1 coluna */
    .wc-vagas-destaque-slider .splide__slide {
        width: calc(100% - 5px) !important;  /* (100%) - (10px gap / 2) */
        max-width: calc(100% - 5px) !important;
    }
    
    .wc-vagas-destaque-slider .splide__arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .wc-vagas-destaque-slider .splide__arrow--prev {
        left: -45px;  /* Ainda mais próximo no mobile */
    }
    
    .wc-vagas-destaque-slider .splide__arrow--next {
        right: -45px;  /* Ainda mais próximo no mobile */
    }
    
    .wc-vagas-destaque-slider .splide__arrow--prev::after,
    .wc-vagas-destaque-slider .splide__arrow--next::after {
        font-size: 22px;
    }
    
    .wc-vaga-destaque-header {
        padding: 14px 16px;
    }
    
    .wc-vaga-destaque-titulo {
        font-size: 20px !important;  /* Mobile: 20px fixo */
    }
    
    .wc-vaga-destaque-body {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .wc-vaga-destaque-info {
        gap: 5px;
    }
    
    .wc-vaga-destaque-item {
        font-size: 12px;
        gap: 6px;
    }
    
    .wc-vaga-destaque-logo {
        width: 70px;
        height: 70px;
    }
    
    .wc-vaga-destaque-logo-fallback .wc-emoji {
        font-size: 32px;
    }
}

/* ===========================
   SISTEMA DE PLANOS E CRÉDITOS - PREMIUM DESIGN
   Cores da marca: #041E42 (Azul) + #A4D65E (Verde Lima)
   =========================== */

/* Shortcode [wc_meu_plano] - Plano Atual CLEAN */
.wc-plano-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 20px !important;
    background: transparent;
}

@media (max-width: 768px) {
    .wc-plano-container {
        padding: 0 15px;
    }
}

.wc-plano-header {
    display: none;
}

.wc-plano-title {
    display: none;
}

.wc-plano-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(4, 30, 66, 0.08);
    padding: 40px;
    position: relative;
    border: 1px solid rgba(164, 214, 94, 0.15);
    transition: all 0.3s ease;
    width: 100%;
}

.wc-plano-card:hover {
    box-shadow: 0 15px 60px rgba(4, 30, 66, 0.12);
    transform: translateY(-2px);
}

.wc-plano-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wc-plano-badge.active {
    background: linear-gradient(135deg, #A4D65E 0%, #8bc34a 100%);
    color: #ffffff;
}

.wc-plano-badge.inactive {
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    color: #666666;
}

.wc-plano-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 35px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(164, 214, 94, 0.05) 0%, rgba(4, 30, 66, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(164, 214, 94, 0.2);
}

.wc-plano-info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.wc-plano-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.wc-plano-label {
    font-size: 0.85rem;
    color: #041E42;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.wc-plano-value {
    font-size: 1.3rem;
    color: #041E42;
    font-weight: 700;
}

.wc-plano-actions {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Shortcode [wc_contratar_plano] - Lista de Planos CLEAN */
.wc-planos-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 20px !important;
    background: transparent;
}

.wc-planos-header {
    display: none;
}

.wc-planos-title {
    display: none;
}

.wc-planos-subtitle {
    display: none;
}

.wc-planos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 1400px) {
    .wc-planos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wc-planos-grid {
        grid-template-columns: 1fr;
    }
    
    .wc-planos-container {
        padding: 0 15px;
    }
}

.wc-plano-card-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 480px;
}

.wc-plano-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #A4D65E;
}

.wc-plano-card-item.popular {
    border: 2px solid #A4D65E;
    box-shadow: 0 4px 12px rgba(164, 214, 94, 0.15);
}

.wc-plano-popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #A4D65E 0%, #8bc34a 100%);
    color: #041E42;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(164, 214, 94, 0.3);
    white-space: nowrap;
}

.wc-plano-card-header {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 10px;
}

.wc-plano-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #041E42;
    margin: 0 0 16px 0;
    letter-spacing: -0.2px;
    padding-top: 5px;
}

.wc-plano-card-price {
    margin: 20px 0;
}

.wc-price {
    font-size: 3rem;
    font-weight: 700;
    color: #041E42;
    line-height: 1;
}

.wc-price-period {
    font-size: 1rem;
    color: #9CA3AF;
    font-weight: 500;
    display: block;
    margin-top: 8px;
}

.wc-plano-card-desc {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 15px 0 0 0;
    min-height: 50px;
}

.wc-plano-features {
    list-style: none;
    padding: 20px 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.wc-plano-features li {
    padding: 10px 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.wc-plano-features li:last-child {
    border-bottom: none;
}

.wc-btn-plano {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: auto;
    border-radius: 8px;
    background: #041E42;
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wc-btn-plano:hover {
    background: #0a2f5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 30, 66, 0.2);
}

.wc-plano-card-item.popular .wc-btn-plano {
    background: #A4D65E;
    color: #041E42;
}

.wc-plano-card-item.popular .wc-btn-plano:hover {
    background: #8bc34a;
}

.wc-planos-info {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    box-shadow: none;
}

.wc-info-text {
    margin: 0;
    color: #6B7280;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Shortcode [wc_contratar_creditos] - Pacotes de Créditos CLEAN */
.wc-creditos-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 20px !important;
    background: transparent;
}

@media (max-width: 768px) {
    .wc-creditos-container {
        padding: 0 15px;
    }
}

.wc-creditos-header {
    display: none;
}

.wc-creditos-title {
    display: none;
}

.wc-creditos-subtitle {
    display: none;
}

.wc-creditos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 30px;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-items: start;
}

@media (max-width: 1200px) {
    .wc-creditos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .wc-creditos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .wc-creditos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .wc-creditos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.wc-credito-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 992px) {
    .wc-credito-card {
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .wc-credito-card {
        padding: 1.5rem;
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .wc-credito-card {
        min-height: auto;
        padding: 2rem;
    }
}

.wc-credito-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #A4D65E;
}

.wc-credito-card.popular {
    border: 2px solid #A4D65E;
    box-shadow: 0 4px 12px rgba(164, 214, 94, 0.15);
}

.wc-credito-popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #A4D65E 0%, #8bc34a 100%);
    color: #041E42;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(164, 214, 94, 0.3);
    white-space: nowrap;
}

.wc-credito-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    margin-top: 10px;
    filter: drop-shadow(0 4px 8px rgba(4, 30, 66, 0.1));
}

.wc-credito-nome {
    font-size: 1.5rem;
    font-weight: 600;
    color: #041E42;
    margin: 0 0 20px 0;
    letter-spacing: -0.2px;
    padding-top: 5px;
}

.wc-credito-quantidade {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(164, 214, 94, 0.08) 0%, rgba(4, 30, 66, 0.02) 100%);
    border-radius: 16px;
}

.wc-credito-numero {
    font-size: 3.5rem;
    font-weight: 700;
    color: #041E42;
    line-height: 1;
}

.wc-credito-label {
    font-size: 1rem;
    color: #041E42;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    opacity: 0.7;
}

.wc-credito-preco {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.wc-preco-valor {
    font-size: 2.5rem;
    font-weight: 800;
    color: #041E42;
    line-height: 1;
}

.wc-preco-unit {
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 500;
}

.wc-credito-economia {
    background: linear-gradient(135deg, #A4D65E 0%, #8bc34a 100%);
    color: #041E42;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(164, 214, 94, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wc-credito-desc {
    font-size: 1rem;
    color: #6B7280;
    margin: 20px 0 30px 0;
    line-height: 1.6;
    min-height: 50px;
}

.wc-btn-credito {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    background: #041E42;
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wc-btn-credito:hover {
    background: #0a2f5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 30, 66, 0.2);
}

.wc-credito-card.popular .wc-btn-credito {
    background: #A4D65E;
    color: #041E42;
}

.wc-credito-card.popular .wc-btn-credito:hover {
    background: #8bc34a;
}

.wc-creditos-info-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 30px;
    box-shadow: none;
}

.wc-creditos-info-box h4 {
    display: none;
}

.wc-creditos-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.wc-creditos-info-box li {
    padding: 18px 20px;
    color: #041E42;
    font-size: 1rem;
    border-bottom: none;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.wc-creditos-info-box li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Responsive - Planos e Créditos PREMIUM */
@media (max-width: 1024px) {
    .wc-planos-grid,
    .wc-creditos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .wc-plano-title,
    .wc-planos-title,
    .wc-creditos-title {
        font-size: 2.2rem;
    }
    
    .wc-planos-subtitle,
    .wc-creditos-subtitle {
        font-size: 1rem;
    }
    
    .wc-planos-container,
    .wc-creditos-container,
    .wc-plano-container {
        padding: 0;
    }
    
    .wc-planos-grid,
    .wc-creditos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .wc-plano-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .wc-plano-actions {
        flex-direction: column;
    }
    
    .wc-plano-card,
    .wc-plano-card-item,
    .wc-credito-card {
        padding: 30px 20px;
    }
    
    .wc-price {
        font-size: 2.8rem;
    }
    
    .wc-credito-numero {
        font-size: 3.5rem;
    }
    

    
    .wc-creditos-info-box ul {
        grid-template-columns: 1fr;
    }
    
    .wc-btn-plano,
    .wc-btn-credito {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .wc-plano-title,
    .wc-planos-title,
    .wc-creditos-title {
        font-size: 1.8rem;
    }
    
    .wc-plano-popular-badge,
    .wc-credito-popular-badge {
        font-size: 0.6rem;
        padding: 4px 12px;
        top: -8px;
    }
    
    .wc-plano-card-item,
    .wc-credito-card {
        padding: 25px 18px;
    }
}

/* ========================================
   ESTILOS PARA ALERTAS DE CANDIDATURA
   ======================================== */

/* Alertas de informação (Login) */
.wc-alert-info {
    background: #EFF6FF;
    border-left: 4px solid #3B82F6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-family: 'Roboto', sans-serif;
}

/* Alertas de aviso (Sem currículo) */
.wc-alert-warning {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-family: 'Roboto', sans-serif;
}

/* Melhorar hover dos botões dentro dos alertas */
.wc-alert a.wc-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsividade para alertas */
@media (max-width: 768px) {
    .wc-alert-info,
    .wc-alert-warning {
        padding: 16px;
    }
    
    .wc-alert-info span,
    .wc-alert-warning span {
        font-size: 24px !important;
    }
    
    .wc-alert-info p,
    .wc-alert-warning p {
        font-size: 13px !important;
    }
    
    .wc-alert a.wc-btn {
        padding: 8px 16px !important;
        font-size: 13px !important;
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   ESTILOS DO BOTÃO DOWNLOAD PDF NO MODAL
   ======================================== */

.wc-modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wc-btn-download-curriculum {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.3);
}

.wc-btn-download-curriculum:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(76, 175, 80, 0.4);
}

/* ========================================
   ESTILOS DE IMPRESSÃO DO MODAL
   ======================================== */

@media print {
    /* Ocultar tudo exceto o conteúdo do currículo */
    body * {
        visibility: hidden;
    }
    
    #wc-modal-curriculum-content,
    #wc-modal-curriculum-content * {
        visibility: visible;
    }
    
    #wc-modal-curriculum-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white;
    }
    
    /* Ocultar elementos do modal */
    .wc-modal-overlay {
        background: white !important;
        position: static !important;
    }
    
    .wc-modal-container {
        position: static !important;
        max-width: 100% !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    .wc-modal-header {
        display: none !important;
    }
    
    /* Exibir cabeçalho de impressão - Logo MAIOR e NO TOPO */
    .wc-print-header {
        display: block !important;
        text-align: center;
        margin: 0 !important;
        margin-bottom: 10px !important;
        padding: 0 !important;
        border-bottom: 2px solid #041E42;
        page-break-after: avoid;
    }
    
    .wc-print-logo {
        max-width: 250px !important;
        height: auto;
        margin: 0 auto 8px !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .wc-print-title {
        font-size: 16pt !important;  /* Aumentado de 14pt para 16pt */
        font-weight: bold;
        color: #041E42;
        margin: 0 !important;
    }
    
    /* Ajustes gerais ULTRA COMPACTOS */
    body {
        background: white !important;
        color: black !important;
        font-size: 8pt !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Container principal - SEM padding no topo */
    .wc-curriculum-container,
    #wc-modal-curriculum-content {
        padding: 0 10px 5px 10px !important;
        margin: 0 !important;
    }
    
    /* Remover qualquer margem do body e html */
    html, body {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Seções ULTRA COMPACTAS */
    .wc-view-section {
        page-break-inside: avoid;
        margin-bottom: 5px !important;
        border: none !important;
        border-left: 2px solid #A4D65E !important;
        padding: 4px 6px !important;
    }
    
    .wc-view-section-title {
        font-size: 10pt !important;
        font-weight: bold;
        color: #041E42 !important;
        border-bottom: 1px solid #A4D65E;
        padding-bottom: 3px !important;
        margin-bottom: 4px !important;
    }
    
    /* Grid de informações 3 COLUNAS */
    .wc-view-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 4px !important;
    }
    
    .wc-view-item {
        break-inside: avoid;
        margin-bottom: 2px !important;
    }
    
    .wc-view-label {
        font-weight: bold;
        font-size: 7pt !important;
        color: #666 !important;
        margin-bottom: 1px !important;
    }
    
    .wc-view-value {
        font-size: 8pt !important;
        color: #333 !important;
        line-height: 1.1 !important;
    }
    
    /* Cards ULTRA COMPACTOS */
    .wc-view-card {
        break-inside: avoid;
        margin-bottom: 4px !important;
        padding: 3px 5px !important;
        border: 1px solid #e0e0e0;
        border-left: 2px solid #A4D65E !important;
    }
    
    .wc-view-card h4 {
        font-size: 9pt !important;
        font-weight: bold;
        color: #041E42 !important;
        margin: 0 0 2px 0 !important;
        line-height: 1.1 !important;
    }
    
    .wc-view-card p,
    .wc-view-card div,
    .wc-view-card span {
        font-size: 7pt !important;
        line-height: 1.2 !important;
        margin: 1px 0 !important;
        color: #333 !important;
    }
    
    .wc-view-card .wc-view-label {
        font-size: 6.5pt !important;
    }
    
    .wc-view-card .wc-view-value {
        font-size: 7pt !important;
    }
    
    /* Tags ULTRA COMPACTAS */
    .wc-view-tags {
        display: flex !important;
        flex-wrap: wrap;
        gap: 2px !important;
    }
    
    .wc-view-tag {
        background: #f5f5f5 !important;
        border: 1px solid #e0e0e0;
        padding: 1px 6px !important;
        border-radius: 10px;
        font-size: 6.5pt !important;
        color: #333 !important;
        line-height: 1.1 !important;
    }
    
    /* Foto CIRCULAR e COMPACTA - FORÇAR EXIBIÇÃO */
    .wc-view-foto,
    .wc-view-foto img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .wc-view-foto {
        float: right !important;
        margin: 0 0 5px 8px !important;
        width: 80px !important;
        height: 80px !important;
        overflow: hidden !important;
        position: relative !important;
    }
    
    .wc-view-foto img {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
        min-height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
        border: 2px solid #041E42 !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        object-position: center !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }
    
    /* Tipografia geral */
    h1, h2, h3, h4, h5, h6 {
        margin-top: 2px !important;
        margin-bottom: 2px !important;
        line-height: 1.1 !important;
    }
    
    p {
        margin: 1px 0 !important;
        line-height: 1.2 !important;
    }
    
    ul, ol {
        margin: 2px 0 !important;
        padding-left: 15px !important;
    }
    
    li {
        margin: 1px 0 !important;
        line-height: 1.2 !important;
    }
    
    /* Emojis menores */
    .wc-emoji {
        font-size: 8pt !important;
    }
    
    /* Margens da página MÍNIMAS - Logo no topo absoluto */
    @page {
        margin-top: 0 !important;
        margin-bottom: 0.5cm !important;
        margin-left: 0.5cm !important;
        margin-right: 0.5cm !important;
        size: A4;
    }
    
    /* Remover efeitos desnecessários */
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
}

/* ============================================
   FORÇA COR BRANCA EM BOTÕES VERDES - GLOBAL
   ============================================ */
button[style*="#A4D65E"],
.button[style*="#A4D65E"],
a[style*="#A4D65E"],
[class*="btn"][style*="#A4D65E"],
.wc-btn-primary:hover,
.wc-btn-primary:focus,
.wc-btn-primary:active {
    color: #ffffff !important;
}

/* Força cor branca em todos elementos com background verde */
[style*="background: #A4D65E"],
[style*="background:#A4D65E"],
[style*="background-color: #A4D65E"],
[style*="background-color:#A4D65E"] {
    color: #ffffff !important;
}

/* Força cor branca em links e textos dentro de botões verdes */
button[style*="#A4D65E"] *,
.button[style*="#A4D65E"] *,
a[style*="#A4D65E"] *,
[style*="background: #A4D65E"] *,
[style*="background-color: #A4D65E"] * {
    color: #ffffff !important;
}
