.lan{
    box-shadow: 2px 3px 12px -1px rgba(0,0,0,0.75);
}
.titulo-teaser h1 {
    color: #2aaeb5;
    font-family: Poppins;
    font-weight: bold;
}
.btn-form {
    background: #3f4a89;
    color: #fff;
    position: fixed;
    padding: 16px;
    font-size: 26px;
    z-index: 9;
    bottom: 15px;
    left: 27px;
    border: 1px solid;
    border-radius: 100%;
    transition: all .3s;
    cursor: pointer;
}
.btn-form .tooltip-form {
    position: absolute;
    color: #fff;
    background: #212121;
    font-size: 11px;
    width: fit-content;
    white-space: nowrap;
    padding: 1px 11px;
    border-radius: 5px;
    top: -50px;
    font-weight: bold;
    left: -25px;
    pointer-events: none;
    opacity: 0;
    transition: all .3s;
}
.btn-form .tooltip-form:after{
    content:"";
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    width: 15px;
    height: 9px;
    display:block;
    position:absolute;
    bottom: -9px;
    left: 50px;
    background: #212121;
}
.btn-form:hover{
    background:#fff;
    color:#212121;
}
.btn-form:hover .tooltip-form{
    opacity:1;
    top:-40px;
}
.campo{
    margin-bottom: 15px;
}
.lista-contato {
    color: #000;
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

.lista-contato i{
    margin-right: 5px;
}
.form .titulo-teaser{
    text-align: center;
    color: #00e8eb;
    font-family: Poppins;
    font-weight: bold;
    margin: 15px 0;
}
input[type="submit"] {
    background: #00e8eb;
    color: #fff;
    padding: 4px 15px;
    border: 2px dashed #00e8eb;
    font-weight: bold;
    font-family: Helvetica;
    border-radius: 3px;
    width: fit-content;
    margin: auto;
    display: inline-block;
}
input[type="submit"]:hover {
    background: #aeaeae;
    color: #fff;
    padding: 4px 15px;
    border: 2px dashed #aeaeae;
    font-weight: bold;
    border-radius: 3px;
    width: fit-content;
    margin: auto;
    display: inline-block;
}
.row-submit{
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px){
    .titulo-teaser h1{
        font-size: 34px;
        margin:22px 0;
    }
}