/* jobPopup.css - Version Premium & Impactante */

.job-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.job-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.job-popup {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 100px rgba(248, 152, 0, 0.15);
    max-width: 750px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(40px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    border: 1px solid rgba(248, 152, 0, 0.1);
}

.job-popup-overlay.active .job-popup {
    transform: scale(1) translateY(0);
}

.job-popup-container {
    display: flex;
    min-height: 400px;
}

/* Close Button */
.job-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    color: #333;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.job-popup-close:hover {
    background: #f89800;
    color: white;
    transform: rotate(90deg);
}

/* Image Section */
.job-popup-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.job-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.job-popup-overlay.active .job-popup-image img {
    transform: scale(1.1);
}

.job-popup-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.05) 80%, #ffffff 100%);
}

.job-popup-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #f89800;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(248, 152, 0, 0.3);
}

/* Content Section */
.job-popup-content {
    flex: 1;
    padding: 40px 40px 40px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.job-popup-tag {
    color: #f89800;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.job-popup-title {
    font-size: 2 font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #0d0d0d;
    margin-bottom: 15px;
}

.job-popup-title span {
    color: #f89800;
}

.job-popup-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Actions */
.job-popup-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.job-popup-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.job-popup-btn-primary {
    background: #f89800;
    color: white;
    box-shadow: 0 10px 25px rgba(248, 152, 0, 0.3);
}

.job-popup-btn-primary:hover {
    background: #d17f00;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(248, 152, 0, 0.4);
}

.job-popup-btn-secondary {
    background: #f8f9fa;
    color: #333;
}

.job-popup-btn-secondary:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .job-popup-container {
        flex-direction: column;
    }

    .job-popup-image {
        height: 180px;
        flex: none;
    }

    .job-popup-image::after {
        background: linear-gradient(to bottom, transparent, #ffffff);
    }

    .job-popup-content {
        padding: 30px 20px;
        text-align: center;
    }

    .job-popup-actions {
        flex-direction: column;
    }

    .job-popup-btn {
        width: 100%;
        justify-content: center;
    }

    .job-popup-title {
        font-size: 1.8rem;
    }
}