        /* Fundo escuro do Modal (Overlay) */
        .modal-overlay {
            display: none; /* Oculto por padrão, o JS vai alterar para 'flex' ao carregar */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6); /* Fundo semi-transparente */
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        /* Caixa de Conteúdo do Modal */
        .modal-content {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }

        /* Botão de Fechar (X) */
        .close-modal-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 20px;
            font-weight: bold;
            color: #aaa;
            cursor: pointer;
            transition: color 0.2s;
        }

        .close-modal-btn:hover {
            color: #000;
        }

        /* Títulos e textos internos */
        .modal-content h2 {
            margin-top: 0;
            color: #333;
        }

        .modal-content p {
            color: #666;
            line-height: 1.5;
        }

        /* Animação suave ao abrir */
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


.modal-content {
    padding: 0 !important;
}

.close-modal-btn {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: #f30801;
    font-size: 32px;
    color: #FFF !important;
    transition: all 300ms ease .0s;
    -webkit-transition: all 300ms ease .0s;
}

.close-modal-btn:hover {
   opacity: 0.8;
   color: #FFF!important;
}