/* Estilização do modal */
.mpl-modal {
    display: none; /* Oculto por padrão */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0 0 0 / 81%); /* Fundo escuro semi-transparente */
}

.mpl-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 360px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.mpl-modal-content h2 {
    margin-top: 0;
    font-size: 27px;
    font-family: Open-Sans, sans-serif;
    color: #09488d !important;
    letter-spacing: -0.03em;
    word-spacing: -0.05em;
}

#mpl-close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    top: -10px;
}

#mpl-close:hover,
#mpl-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.search-form input[type="search"] {
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #777;
    border-radius: 4px;
}

.search-form input[type="submit"]{
    margin-top: 10px;
    background: #2264ad !important;
    color: #fff;
    text-transform: uppercase;
    padding: 11px 27px;
    border: none;
    border-radius: 3px;
    margin-left: 0px;
}