.modal-min {
    background-color: #27aae1;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    z-index: 1000;
    position: fixed;
    margin-bottom: 40px;
    margin-right: 40px;
    margin-top: 40px;
    margin-left: 15px;
    left: 0pt;
    cursor: pointer;
    transition: 0.5s;

}

.modal-min:hover {
    background: #1f83ad;
}

.isActiveModalMin {
    bottom: 0pt;
}

.container-modal {
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    color: #5a5a5a;
    font-family: 'Open Sans', sans-serif;
    background-color: #f2f2f2;
    padding: 20px 20px;
    width: 375px;
    max-height: 390px;
    position: fixed;
    bottom: -400px;
    left: 20px;
    z-index: 10000000;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgb(20 46 82 / 30%);
    transition: 0.5s ease;

}

.container-modal .titulo-modal {
    font-weight: 800;
    display: inline-block;
    font-size: 1.0em;
    line-height: 1.4;
    margin: 0px;
    color: #27aae1;
    width: 314px;
}

.container-modal a {
    color: #27AAE1;
}
.container-modal a:hover {
    color: #27AAE1;
}
.container-modal p {
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: justify;
}

.container-modal button {
    width: 100%;
    display: inline;
    margin-top: 10px;
    font-size: 16px;
    line-height: 23px;
    color: #ffffff;
    background: #27aae1;
    box-shadow: 0px 2px 4px rgb(20 46 82 / 20%);
    border-radius: 4px;
    border: none;
    letter-spacing: -0.01em;
    padding: 12px 10px;
    transition: 0.5s ease;
}

.container-modal button:hover {
    opacity: 0.6;
    cursor: pointer;
}

.isActiveModal {
    bottom: 20px;
}

.container-modal .close-modal {
    display: inline-block;
    position: relative;
    right: -3px;
    cursor: pointer;
    transition: 0.5s ease;
    bottom: 2px;
}

.container-modal .close-modal:hover {
    opacity: 0.5;
}

@media screen and (max-width:400px) {
    .container-modal {
        background-color: #f2f2f2;
        padding: 20px 20px;
        width: 100%;
        max-height: 390px;
        position: fixed;
        bottom: -400px;
        z-index: 10000000;
        border-radius: 0px;
        box-shadow: 0px 2px 4px rgb(20 46 82 / 30%);
        transition: 0.5s ease;
        left: 0px;
    }

    .isActiveModal {
        bottom: 0px;
    }
}