/* =========================================================
   LINK VAGAS — POPUP PRO (página de vagas)
   Arquivo: popup_pro.css
========================================================= */

/* ---- Overlay ---- */
.popup-pro-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 11, 61, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

.popup-pro-overlay.visivel {
    opacity: 1;
    visibility: visible;
}

/* ---- Modal ---- */
.popup-pro-modal {
    background: #fff;
    border-radius: 28px;
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(14, 11, 61, .28);
    transform: translateY(28px) scale(.97);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    position: relative;
}

.popup-pro-overlay.visivel .popup-pro-modal {
    transform: translateY(0) scale(1);
}

/* ---- Fechar ---- */
.popup-pro-fechar {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
    z-index: 2;
}

.popup-pro-fechar:hover {
    background: rgba(255, 255, 255, .35);
}

/* ---- Header com gradiente ---- */
.popup-pro-header {
    background: linear-gradient(135deg, #4c1d95 0%, #673de6 50%, #8980f5 100%);
    padding: 36px 32px 28px;
    position: relative;
    overflow: hidden;
}

.popup-pro-header::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

.popup-pro-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.popup-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: .3px;
    position: relative;
    z-index: 1;
}

.popup-pro-badge i {
    color: #fbbf24;
}

.popup-pro-header h2 {
    margin-top: 14px;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.popup-pro-header h2 em {
    font-style: normal;
    color: #fde68a;
}

.popup-pro-header p {
    margin-top: 8px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ---- Corpo ---- */
.popup-pro-corpo {
    padding: 28px 32px 32px;
}

.popup-pro-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.popup-pro-lista li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.popup-pro-lista li .pp-icone {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 10px;
    background: #f0ebff;
    color: #673de6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 1px;
}

.popup-pro-lista li strong {
    display: block;
    font-weight: 800;
    color: #19172f;
    margin-bottom: 2px;
}

/* ---- Rodapé / CTAs ---- */
.popup-pro-acoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-pro-btn-principal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #673de6, #8980f5);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
    box-shadow: 0 10px 28px rgba(103, 61, 230, .32);
    border: none;
    cursor: pointer;
}

.popup-pro-btn-principal:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(103, 61, 230, .42);
    color: #fff;
}

.popup-pro-btn-dispensar {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px;
    text-align: center;
    transition: color .2s;
    font-family: inherit;
}

.popup-pro-btn-dispensar:hover {
    color: #6b7280;
}

/* ---- Garantias ---- */
.popup-pro-garantias {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.popup-pro-garantias span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #9ca3af;
}

.popup-pro-garantias i {
    color: #c4b5fd;
    font-size: 11px;
}

/* ---- Responsivo ---- */
@media (max-width: 560px) {
    .popup-pro-header {
        padding: 28px 22px 22px;
    }

    .popup-pro-header h2 {
        font-size: 22px;
    }

    .popup-pro-corpo {
        padding: 22px 22px 26px;
    }
}
