/* Estilo do popup */
.popup-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #111;
    color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    position: relative;
}

.popup-content h2 {
    color: #FFB400;
    margin-bottom: 15px;
        font-size: 2.5rem;
}

.popup-content p {
    font-size: 1rem;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFB400;
}
