/* =============================================
   CONTENEDORES BASE
   ============================================= */
.cj-listing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cj-form-container {
    max-width: 660px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}

/* =============================================
   FORMULARIO — TÍTULOS Y SUBTÍTULOS
   ============================================= */
.cj-job-form h2,
.cj-form-title {
    font-size: 26px;
    font-weight: 900;
    color: #3E2723;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

/* Compatibilidad con el shortcode original */
.cj-job-form h2 {
    margin-bottom: 30px;
}

.cj-form-subtitle {
    font-size: 15px;
    color: rgba(62, 39, 35, 0.6);
    font-weight: 500;
    line-height: 1.65;
    margin: 0 0 32px 0;
}

/* =============================================
   SECCIONES DEL FORMULARIO
   ============================================= */
.cj-form-section {
    margin-bottom: 24px;
    padding: 26px;
    background: #FDFBF7;
    border-radius: 16px;
    border: 1px solid #E8E0D5;
}

.cj-form-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #3E2723;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #E8E0D5;
    padding-bottom: 12px;
}

/* =============================================
   GRUPOS DE CAMPO
   ============================================= */
.cj-form-group {
    margin-bottom: 20px;
}

.cj-form-group:last-child {
    margin-bottom: 0;
}

.cj-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cj-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #3E2723;
}

.cj-required {
    color: #D4A373;
    margin-left: 2px;
}

.cj-optional {
    color: rgba(62, 39, 35, 0.4);
    font-weight: 400;
    font-size: 12px;
}

.cj-field-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(62, 39, 35, 0.5);
    line-height: 1.5;
}

/* =============================================
   INPUTS, SELECTS Y TEXTAREAS
   ============================================= */
.cj-form-group input,
.cj-form-group select,
.cj-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #E8E0D5;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #3E2723;
    background: white;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

/* Select con flecha personalizada — regla base sin !important */
.cj-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D4A373' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    cursor: pointer;
}

/* === CAMPO DE SALARIO: moneda + monto en fila === */
.cj-salary-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 12px;
}

.cj-salary-row select,
.cj-salary-row input {
    width: 100%;
}

@media (max-width: 480px) {
    .cj-salary-row {
        grid-template-columns: 1fr;
    }
}

/* ── Overrides escopados a los nuevos formularios de 2 pasos ──────────────────
   El customizador de Astra inyecta inline:
     select          { padding: 6px 10px }
     input[type=...] { height: 40px }
   Usamos !important SOLO dentro de .cj-step1-container / .cj-step2-container
   para no afectar el buscador ni otros elementos del sitio.
   ──────────────────────────────────────────────────────────────────────────── */
.cj-step1-container .cj-form-group select,
.cj-step2-container .cj-form-group select {
    padding: 14px 42px 14px 16px !important;
    height: auto !important;
    min-height: 50px;
    line-height: 1.4;
}

.cj-step1-container .cj-form-group input,
.cj-step2-container .cj-form-group input {
    height: auto !important;
    min-height: 50px;
    padding: 14px 16px !important;
    line-height: 1.4;
}

.cj-form-group input::placeholder,
.cj-form-group textarea::placeholder {
    color: rgba(62, 39, 35, 0.35);
}

.cj-form-group input:focus,
.cj-form-group select:focus,
.cj-form-group textarea:focus {
    outline: none;
    border-color: #E9C46A;
    box-shadow: 0 0 0 3px rgba(233, 196, 106, 0.18);
}

/* =============================================
   BOTÓN SUBMIT
   ============================================= */
.cj-form-actions {
    text-align: center;
    margin-top: 32px;
}

.cj-submit-btn {
    background: #E9C46A;
    color: #3E2723;
    padding: 18px 52px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(233, 196, 106, 0.4);
    font-family: inherit;
}

.cj-submit-btn:hover {
    background: #ddb94f;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(233, 196, 106, 0.5);
}

.cj-submit-btn:active {
    transform: translateY(0);
}

.cj-submit-btn:disabled {
    background: #E8E0D5;
    color: rgba(62, 39, 35, 0.4);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* =============================================
   MENSAJES DE RESPUESTA
   ============================================= */
.cj-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
}

.cj-success {
    background: rgba(233, 196, 106, 0.12);
    color: #3E2723;
    border: 1.5px solid rgba(233, 196, 106, 0.45);
}

.cj-error {
    background: rgba(200, 60, 40, 0.06);
    color: #7A2000;
    border: 1.5px solid rgba(200, 60, 40, 0.2);
}

/* =============================================
   PASO 2 — RESUMEN DEL PASO 1
   ============================================= */
.cj-step2-summary {
    background: rgba(233, 196, 106, 0.1);
    border: 1.5px solid rgba(233, 196, 106, 0.4);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 28px;
    font-size: 14px;
    color: #3E2723;
    font-weight: 500;
}

.cj-step2-summary p {
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   PANTALLA DE ÉXITO (post-submit paso 2)
   ============================================= */
.cj-success-screen {
    text-align: center;
    padding: 60px 20px 80px;
    max-width: 500px;
    margin: 0 auto;
}

.cj-success-icon {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 24px;
    display: block;
}

.cj-success-title {
    font-size: 32px;
    font-weight: 900;
    color: #3E2723;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.cj-success-text {
    font-size: 16px;
    color: rgba(62, 39, 35, 0.65);
    font-weight: 500;
    line-height: 1.7;
    margin: 0 0 36px 0;
}

.cj-success-btn {
    display: inline-block;
    background: #E9C46A;
    color: #3E2723;
    padding: 16px 44px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 196, 106, 0.4);
    letter-spacing: 0.3px;
}

.cj-success-btn:hover {
    background: #ddb94f;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(233, 196, 106, 0.5);
    color: #3E2723;
}

/* === BUSCADOR HERO STYLE === */
.cj-hero-search-wrapper {
    margin: 40px 0;
}

.search-box-hero {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    gap: 0;
}

.search-box-listing {
    max-width: 100%;
    margin-bottom: 30px;
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 0 20px;
    position: relative;
    min-height: 50px;
}

.search-input-group input {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
    padding: 14px 0;
    color: #333;
    background: transparent;
    cursor: text;
    line-height: 1.4;
}

/* === SELECTS ARREGLADOS === */
.search-input-group select.search-select {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
    padding: 14px 30px 14px 0;
    color: #333;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D4A373' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 5px center;
    line-height: 1.4;
    min-height: 48px;
    height: auto;
}

.search-input-group select.search-select option {
    padding: 12px;
    font-size: 15px;
}

.search-input-group input::placeholder {
    color: #999;
}

.search-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
    flex-shrink: 0;
}

.btn-search-primary {
    background: #D4A373;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-search-primary:hover {
    background: #c08d5a;
    transform: scale(1.05);
}

.btn-clear-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 5px;
}

.btn-clear-filters:hover {
    background: #e0e0e0;
    color: #333;
}

/* === RESULTADOS DE BÚSQUEDA === */
.cj-search-results-header {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #D4A373;
}

.cj-search-results-header h2 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 24px;
}

.cj-search-results-header p {
    margin: 5px 0;
    color: #666;
}

.cj-clear-search {
    display: inline-block;
    margin-top: 15px;
    color: #D4A373;
    text-decoration: none;
    font-weight: 600;
}

.cj-clear-search:hover {
    text-decoration: underline;
}

/* === CONTADOR DE RESULTADOS === */
.cj-results-count {
    background: linear-gradient(135deg, #faf8f5 0%, #fff 100%);
    border: 1px solid #e8e0d5;
    border-left: 4px solid #D4A373;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #666;
}

.cj-results-count .cj-results-number {
    font-weight: 700;
    font-size: 18px;
    color: #D4A373;
}

/* === GRID DE OFERTAS === */
.cj-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

/* === CARD DE OFERTA === */
.cj-job-card {
    background: white;
    border: 1px solid #e8e0d5;
    border-radius: 16px;
    padding: 32px 25px 25px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.cj-job-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* === OFERTA DESTACADA === */
.cj-job-card.cj-featured {
    border: 2px solid #E9C46A;
    background: linear-gradient(145deg, #fffef5 0%, #fff9e6 50%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(233, 196, 106, 0.25);
}

.cj-job-card.cj-featured:hover {
    box-shadow: 0 8px 30px rgba(233, 196, 106, 0.35);
    transform: translateY(-5px);
}

.cj-featured-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #E9C46A 0%, #F4D03F 100%);
    color: #5D4E37;
    padding: 8px 16px;
    border-radius: 0 0 12px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(233, 196, 106, 0.4);
    text-transform: uppercase;
}

.cj-featured-badge svg {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* === HEADER DE CARD === */
.cj-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.cj-job-title-section {
    flex: 1;
}

.cj-job-title {
    margin: 0 0 6px 0;
    color: #2d2d2d;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.cj-job-company {
    color: #D4A373;
    font-size: 15px;
    font-weight: 600;
}

.cj-job-type-badge {
    background: #3E2723;
    color: #E9C46A;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 10px;
}

/* === META INFO === */
.cj-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.cj-job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #777;
    font-size: 14px;
}

.cj-job-meta-item svg {
    color: #D4A373;
    flex-shrink: 0;
}

/* === EXCERPT === */
.cj-job-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* === FOOTER DE CARD === */
.cj-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0ebe3;
    margin-top: auto;
}

.cj-job-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 13px;
}

.cj-job-date svg {
    color: #ccc;
}

.cj-btn-details {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #D4A373;
    border: 2px solid #D4A373;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cj-btn-details:hover {
    background: #D4A373;
    color: white;
}

.cj-btn-details svg {
    transition: transform 0.3s;
}

.cj-btn-details:hover svg {
    transform: translateX(3px);
}

/* === NO RESULTS === */
.cj-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #faf8f5;
    border-radius: 16px;
    border: 2px dashed #e0d6c8;
}

.cj-no-results svg {
    margin-bottom: 20px;
    opacity: 0.5;
}

.cj-no-results p {
    color: #888;
    font-size: 18px;
    margin: 0 0 20px 0;
}

.cj-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #D4A373;
    border: 2px solid #D4A373;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.cj-btn-secondary:hover {
    background: #D4A373;
    color: white;
}

/* ===================== */
/* === MODAL STYLES === */
/* ===================== */
.cj-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
}

.cj-modal.cj-modal-active {
    display: flex;
}

.cj-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: cjModalSlideIn 0.3s ease;
}

@keyframes cjModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal destacado */
.cj-modal-content.cj-modal-featured {
    border: 3px solid #E9C46A;
}

.cj-modal-featured-banner {
    background: linear-gradient(135deg, #E9C46A 0%, #F4D03F 100%);
    color: #5D4E37;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cj-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.cj-modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.cj-modal-header {
    padding: 30px 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cj-modal-title {
    margin: 0 0 8px 0;
    font-size: 26px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.3;
}

.cj-modal-company {
    color: #D4A373;
    font-size: 17px;
    font-weight: 600;
}

.cj-modal-type-badge {
    background: #3E2723;
    color: #E9C46A;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.cj-modal-meta {
    padding: 20px 30px;
    background: #faf8f5;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.cj-modal-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 15px;
}

.cj-modal-section {
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
}

.cj-modal-section:last-of-type {
    border-bottom: none;
}

.cj-modal-section h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 700;
    color: #3E2723;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cj-modal-section p {
    margin: 0;
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

/* === CONTACT GRID === */
.cj-modal-contact {
    background: #faf8f5;
}

.cj-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cj-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e8e0d5;
}

.cj-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.cj-contact-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cj-contact-value {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    word-break: break-word;
}

a.cj-contact-value {
    color: #D4A373;
    text-decoration: none;
}

a.cj-contact-value:hover {
    text-decoration: underline;
}

/* === MODAL ACTIONS === */
.cj-modal-actions {
    padding: 25px 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    background: #faf8f5;
    border-radius: 0 0 20px 20px;
}

.cj-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #D4A373 0%, #c08d5a 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}

.cj-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.5);
    color: white;
}

.cj-modal-actions .cj-btn-secondary {
    background: white;
    padding: 14px 25px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .search-box-hero {
        flex-wrap: wrap;
        border-radius: 20px;
        padding: 15px;
    }
    
    .search-input-group {
        min-width: 200px;
    }
    
    .btn-search-primary {
        padding: 14px 30px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .cj-form-row {
        grid-template-columns: 1fr;
    }

    .cj-form-section {
        padding: 20px;
    }

    .cj-submit-btn {
        width: 100%;
        padding: 18px 24px;
    }

    .cj-form-container {
        padding: 16px 16px 40px;
    }

    .search-box-hero {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
    }
    
    .search-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }
    
    .search-input-group {
        padding: 0;
        width: 100%;
        min-height: 45px;
    }
    
    .btn-search-primary {
        width: 100%;
        margin-top: 15px;
    }
    
    .btn-clear-filters {
        width: 100%;
        border-radius: 12px;
        margin-left: 0;
        margin-top: 10px;
        height: 50px;
    }
    
    .cj-jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .cj-job-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .cj-job-type-badge {
        align-self: flex-start;
    }
    
    /* Modal responsive */
    .cj-modal {
        padding: 10px;
    }
    
    .cj-modal-content {
        border-radius: 16px;
        max-height: 95vh;
    }
    
    .cj-modal-header {
        padding: 25px 20px 20px;
        flex-direction: column;
    }
    
    .cj-modal-title {
        font-size: 22px;
    }
    
    .cj-modal-meta {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .cj-modal-section {
        padding: 20px;
    }
    
    .cj-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cj-modal-actions {
        padding: 20px;
        flex-direction: column;
    }
    
    .cj-modal-actions .cj-btn-primary,
    .cj-modal-actions .cj-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* =====================================================
   PÁGINA DE REGISTRO - BENEFICIOS BARISTAS
   Agregar en: Apariencia > Personalizar > CSS Adicional
   ===================================================== */

/* === HERO SECTION === */
.tc-register-hero {
    text-align: center;
    padding: 60px 20px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.tc-register-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 196, 106, 0.15);
    color: #3E2723;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
    border: 1px solid rgba(233, 196, 106, 0.3);
}

.tc-register-title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.15;
    color: #3E2723;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.tc-register-title span {
    color: #D4A373;
}

.tc-register-subtitle {
    font-size: 18px;
    color: rgba(62, 39, 35, 0.6);
    font-weight: 500;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* === BENEFITS GRID === */
.tc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px 60px;
    align-items: stretch; /* Todas las cards misma altura */
}

/* === BENEFIT CARD BASE === */
.tc-benefit-card {
    background: white;
    padding: 45px 35px;
    border-radius: 35px;
    border: 1px solid rgba(212, 163, 115, 0.2);
    box-shadow: 0 8px 30px rgba(62, 39, 35, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Asegura misma altura */
    box-sizing: border-box;
}

.tc-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.12);
}

/* === BENEFIT CARD DESTACADA (Alertas) === */
.tc-benefit-card.tc-benefit-featured {
    background: #3E2723;
    color: white;
    border: none;
    box-shadow: 0 15px 50px rgba(62, 39, 35, 0.35);
}

.tc-benefit-card.tc-benefit-featured:hover {
    box-shadow: 0 20px 60px rgba(62, 39, 35, 0.45);
    transform: translateY(-8px);
}

.tc-benefit-card.tc-benefit-featured .tc-benefit-title {
    color: #E9C46A;
}

.tc-benefit-card.tc-benefit-featured .tc-benefit-text {
    color: rgba(255, 255, 255, 0.75);
}

/* Icono de fondo en card destacada */
.tc-benefit-bg-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    opacity: 0.08;
    transition: transform 0.7s ease;
    color: white;
}

.tc-benefit-card.tc-benefit-featured:hover .tc-benefit-bg-icon {
    transform: scale(1.15) rotate(5deg);
}

/* === BENEFIT ICONS === */
.tc-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FDFBF7 0%, #f5f0e8 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #D4A373;
    border: 1px solid rgba(212, 163, 115, 0.15);
    flex-shrink: 0;
}

.tc-benefit-icon-alert {
    background: linear-gradient(135deg, #E9C46A 0%, #f0d080 100%);
    color: #3E2723;
    box-shadow: 0 8px 25px rgba(233, 196, 106, 0.5);
    border: none;
}

.tc-benefit-icon-alert svg {
    animation: bell-ring 3s ease-in-out infinite;
}

@keyframes bell-ring {
    0%, 100% { transform: rotate(0deg); }
    5%, 15% { transform: rotate(-12deg); }
    10%, 20% { transform: rotate(12deg); }
    25% { transform: rotate(0deg); }
}

.tc-benefit-icon-green {
    color: #4A5D4E;
}

/* === BENEFIT CONTENT === */
.tc-benefit-title {
    font-size: 22px;
    font-weight: 800;
    color: #3E2723;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tc-benefit-text {
    font-size: 15px;
    color: rgba(62, 39, 35, 0.6);
    line-height: 1.75;
    font-weight: 500;
    flex-grow: 1; /* Empuja el contenido para igualar alturas */
    margin: 0;
}

/* === CTA SECTION === */
.tc-register-cta {
    max-width: 750px;
    margin: 0 auto;
    padding: 20px 20px 80px;
    text-align: center;
}

.tc-register-cta-box {
    background: linear-gradient(135deg, #FDFBF7 0%, #faf6f0 100%);
    border: 2px dashed rgba(212, 163, 115, 0.35);
    padding: 55px 45px;
    border-radius: 45px;
    transition: border-color 0.3s ease;
}

.tc-register-cta-box:hover {
    border-color: rgba(212, 163, 115, 0.5);
}

.tc-register-cta-title {
    font-size: 30px;
    font-weight: 900;
    color: #3E2723;
    margin-bottom: 12px;
}

.tc-register-cta-subtitle {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(62, 39, 35, 0.4);
    margin-bottom: 35px;
}

.tc-register-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3E2723 0%, #5D3A36 100%);
    color: white !important;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 10px 35px rgba(62, 39, 35, 0.35);
}

.tc-register-cta-btn:hover {
    background: linear-gradient(135deg, #5D3A36 0%, #3E2723 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(62, 39, 35, 0.45);
    color: white !important;
}

.tc-register-cta-btn svg {
    transition: transform 0.3s ease;
}

.tc-register-cta-btn:hover svg {
    transform: translateX(5px);
}

/* === ELEMENTOR OVERRIDES === */
/* Asegurar que las columnas de Elementor tengan la misma altura */
.tc-benefits-grid .elementor-column {
    display: flex !important;
}

.tc-benefits-grid .elementor-column .elementor-widget-wrap {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

.tc-benefits-grid .elementor-column .elementor-widget-wrap > .elementor-widget {
    flex: 1 !important;
    display: flex !important;
}

.tc-benefits-grid .elementor-column .elementor-widget-wrap > .elementor-widget > .elementor-widget-container {
    display: flex !important;
    width: 100% !important;
}

.tc-benefits-grid .elementor-column .elementor-widget-wrap > .elementor-widget > .elementor-widget-container > .tc-benefit-card {
    flex: 1 !important;
    width: 100% !important;
}

/* Quitar padding extra de Elementor */
.tc-benefits-grid .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 0 !important;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .tc-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 20px;
    }
    
    .tc-benefit-card {
        padding: 40px 30px;
        border-radius: 30px;
    }
    
    /* En móvil, resetear el flex de Elementor */
    .tc-benefits-grid .elementor-column,
    .tc-benefits-grid .elementor-column .elementor-widget-wrap,
    .tc-benefits-grid .elementor-column .elementor-widget-wrap > .elementor-widget,
    .tc-benefits-grid .elementor-column .elementor-widget-wrap > .elementor-widget > .elementor-widget-container {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .tc-register-hero {
        padding: 50px 20px 40px;
    }
    
    .tc-register-badge {
        font-size: 10px;
        padding: 10px 20px;
        margin-bottom: 25px;
    }
    
    .tc-register-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .tc-register-subtitle {
        font-size: 16px;
    }
    
    .tc-benefit-icon {
        width: 54px;
        height: 54px;
    }
    
    .tc-benefit-title {
        font-size: 20px;
    }
    
    .tc-register-cta {
        padding: 10px 20px 60px;
    }
    
    .tc-register-cta-box {
        padding: 40px 25px;
        border-radius: 30px;
    }
    
    .tc-register-cta-title {
        font-size: 24px;
    }
    
    .tc-register-cta-btn {
        padding: 18px 35px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   COLUMNA IZQUIERDA — PÁGINA PUBLICAR EMPLEO
   ============================================= */

.cj-sidebar-title {
    font-size: 26px;
    font-weight: 900;
    color: #3E2723;
    margin: 0 0 8px;
    line-height: 1.2;
    padding: 21px 0;
}

.cj-sidebar-subtitle {
    font-size: 15px;
    color: rgba(62, 39, 35, 0.6);
    font-weight: 500;
    margin: 0 0 28px;
    line-height: 1.6;
}

/* ── Pasos ── */
.cj-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.cj-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cj-step-number {
    min-width: 40px;
    height: 40px;
    background: #3E2723;
    color: #E9C46A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
}

.cj-step-connector {
    width: 2px;
    height: 16px;
    background: #e8e0d5;
    margin-left: 19px;
    margin-top: -16px;
    margin-bottom: -16px;
}

.cj-step-title {
    font-weight: 800;
    font-size: 14px;
    color: #3E2723;
    margin-bottom: 4px;
}

.cj-step-desc {
    font-size: 15px;
    color: rgba(62, 39, 35, 0.6);
    font-weight: 500;
    line-height: 1.6;
}

/* ── Separador ── */
.cj-sidebar-divider {
    height: 1px;
    background: #e8e0d5;
    margin-bottom: 28px;
}

/* ── Cards de precio ── */
.cj-pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cj-pricing-card {
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.cj-pricing-card--free {
    background: #fdfbf7;
    border: 1px solid #e8e0d5;
}

.cj-pricing-card--featured {
    background: #3E2723;
    position: relative;
    overflow: hidden;
}

.cj-pricing-card__icon {
    font-size: 28px;
    flex-shrink: 0;
}

.cj-pricing-card__bg-icon {
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 60px;
    opacity: 0.08;
    line-height: 1;
}

.cj-pricing-card__title {
    font-weight: 800;
    font-size: 14px;
    color: #3E2723;
}

.cj-pricing-card--featured .cj-pricing-card__title {
    color: #E9C46A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cj-pricing-card__badge {
    background: #E9C46A;
    color: #3E2723;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 13px;
}

.cj-pricing-card__desc {
    font-size: 13px;
    color: rgba(62, 39, 35, 0.6);
    margin-top: 2px;
    line-height: 1.5;
}

.cj-pricing-card--featured .cj-pricing-card__desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ── Responsive mobile ── */
@media (max-width: 768px) {
    .cj-sidebar-title {
        font-size: 22px;
    }
    .cj-step-desc,
    .cj-sidebar-subtitle {
        font-size: 14px;
    }
}
}