/* Overlay do pop-up */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
    opacity: 1;
}

/* Container do pop-up */
.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    display: none;
    opacity: 0;
    overflow: hidden;
}

/* Botão de fechar */
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

/* Conteúdo do pop-up */
.popup-content {
    padding: 60px 30px 30px;
    text-align: center;
}

.popup-image {
    width: 100%;
    object-fit: cover;
    height: 275px;
    margin: 0 auto 25px;
    display: block;
}

.popup-title {
    font-size: 28px;
    color: #2d3748;
    margin-bottom: 25px;
    font-weight: 700;
}

.popup-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Responsividade */
@media (max-width: 600px) {
    .popup-title {
        font-size: 24px;
    }

    .popup-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .popup-content {
        padding: 60px 20px 25px;
    }
}