* {
    margin: 0;
    padding: 0;
}

body {
    color: #232a3d;
    font-family: 'Nunito', sans-serif;
    background-color: #f6f6f6;
}

.container-img {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-width: 800px;
    min-height: 100%;
}

@media (max-width: 800px) {
    .container-img {
        height: 60vh;
    }
}


.hr3 {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, transparent, #fb4e55, transparent);
}

.linha {
    height: 5px;
    width: 100%;
    background-color: #fb4e55;
}

.mapa {
    width: 100%;
    height: 400px;
}

/* .fixar-footer {
    position: relative;
    margin-top: 100px;
  }
   */
.footer {
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

a.link {
    text-decoration: none;
    color: #232a3d;
    padding: 1em;
    transition: 0.3s;
    border-radius: 0.5em;
}

a.link:hover {
    text-decoration: none;
    color: #fff;
    background-color: #34e271;
}

.linha-titulo {
    height: 1px;
    width: 30px;
    background-color: black;
    margin: 0 0 1em 0;
}

.col {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
}

#div-whatsapp {
    background-color: #12cf31;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 2em;
    color: #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

#div-whatsapp:hover {
    width: 70px;
    height: 70px;
}

#div-whatsapp i {
    font-size: 30px;
}