/* Estilo do overlay do popup */
#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Estilo do conteúdo do popup */
#popup-content {
    background: #0D3C61; /* Fundo azul escuro */
    padding: 20px 30px 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    color: #FFFFFF; /* Texto em branco para contraste */
    font-family: Arial, sans-serif;
}

/* Estilo do título e do texto */
#popup-title {
    margin-top: 10px;
    font-size: 1.8rem;
    color: #FFFFFF;
}

#popup-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFFFFF;
    margin-top: 10px;
}

/* Botão de fechamento centralizado no popup */
#popup-content button.close-btn {
    background: #FFD700; /* Fundo amarelo */
    color: #0D3C61; /* Texto azul escuro */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

#popup-content button.close-btn:hover {
    background-color: #e6c200; /* Amarelo mais escuro no hover */
}

