/**
 * CINIA - Vacancy Individual Page Styles
 * Estilos para páginas individuales de vacantes
 */

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #666;
    font-size: 18px;
}

.breadcrumb-item a {
    color: #ad060e;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
}

/* ========================================
   VACANCY HEADER
   ======================================== */

.vacancy-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 30px;
}

.vacancy-header .badge {
    font-size: 0.9rem;
    padding: 8px 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vacancy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.vacancy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    font-size: 1rem;
    color: #666;
}

.vacancy-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vacancy-meta i {
    font-size: 20px;
    color: #ad060e;
}

/* ========================================
   VACANCY CONTENT
   ======================================== */

.vacancy-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    border-left: 4px solid #ad060e;
    padding-left: 16px;
}

.vacancy-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.vacancy-content .list-styled {
    list-style: none;
    padding-left: 0;
}

.vacancy-content .list-styled li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.vacancy-content .list-styled li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ad060e;
    font-weight: bold;
    font-size: 18px;
}

/* ========================================
   VACANCY APPLY BOX
   ======================================== */

.vacancy-apply {
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ad060e;
    padding: 30px;
    margin-top: 50px;
}

.vacancy-apply h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.vacancy-apply p {
    font-size: 1rem;
    color: #666;
}

/* ========================================
   SIDEBAR CARDS
   ======================================== */

.card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.card-body {
    padding: 30px;
}

.card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.card .list-styled {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.card .list-styled li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    font-size: 0.95rem;
}

.card .list-styled li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ad060e;
    font-weight: bold;
    font-size: 20px;
}

/* ========================================
   SOCIAL SHARE
   ======================================== */

.social-share {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-share a {
    text-decoration: none;
}

/* ========================================
   APPLY FORM
   ======================================== */

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ad060e;
    box-shadow: 0 0 0 3px rgba(173, 6, 14, 0.1);
    outline: none;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.form-check-input:checked {
    background-color: #ad060e;
    border-color: #ad060e;
}

.form-check-label {
    margin-left: 8px;
    font-size: 0.95rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .vacancy-header h1 {
        font-size: 2rem;
    }
    
    .vacancy-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .vacancy-apply {
        padding: 20px;
    }
    
    .card-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .vacancy-header h1 {
        font-size: 1.75rem;
    }
    
    .vacancy-content h3 {
        font-size: 1.25rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .social-share {
        flex-direction: column;
    }
    
    .social-share a {
        width: 100%;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .vacancy-apply,
    .card,
    .social-share,
    #applyCareer {
        display: none !important;
    }
    
    .vacancy-content {
        page-break-inside: avoid;
    }
}














