
.contato{
    position: relative;
    background-color: #D9D1CA;
    text-align: start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}
.contato .conheca-button:hover{
    background-color: #EAE4DF;
}
.contato .contato-title {
    background: linear-gradient(to right, rgb(136, 103, 67), rgb(183, 153, 104));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 5rem;
    font-size: 1.5rem;
    width: 25vw;
    border-bottom: 2px solid #6E6259;
    margin-bottom: 1rem;
    text-align: center;
}

.contato .map-container{
    margin-top: 1rem;
    width: 100%;
    height: 45vh;
    position: relative;
    cursor: pointer;
}
.contato .map-container iframe{
    width: 100%;
    height: 100%;
}

.contato .map-container .map-cover{
    width: 100%;
    height: calc(100% + 1px);
    position: absolute;
    background-color: rgba(102, 94, 88, 0.50);
    bottom: -1px;
    left: 0;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
}
.contato .map-container .map-cover.small-cover{
    height: 10%;
}
.contato .map-container .map-cover span{
    margin-top: 0.5rem;
    color: white;
}

.contato .map-container .map-cover img{
    height: 95px;
    transition: all 0.3s ease-in-out;
}
.contato .map-container .map-cover.small-cover img{
    height: 0;
    transition: all 0.3s ease-in-out;
}
.contato .map-container .map-cover img:hover{
    animation: bounce 0.4s infinite ease-in-out alternate;
}
.contato .map-container .map-cover.small-cover span{
    margin-top: 0;
}
@keyframes bounce {
    0% {
      transform:rotate(10deg);
    }
    50% {
       transform:rotate(0deg);
    }
    100% {
      transform: rotate(-10deg);
    }
  }

.contato .contact-info{ 
    margin: 0 auto;
    font-family: 'Millard';
    width: 70%;
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;

}
.contato .contact-info .info-container{
    width: 90%;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.contato .contact-info .info-icon{
    width: 10%;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;

}
.contato .contact-info p{
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: #6E6259;
}
.contato .contact-info a{
    text-decoration: underline;
    color: #6E6259;
}
.contato .contact-info b{
    text-transform: uppercase;
    font-family: 'Sweet Sans Pro';
    font-weight: bold;
}

.conheca-button {
    position: initial;
    width: 30vw;
    background-color: #5A6058;
    border: solid 0;
    border-radius: 25px;
    padding: 0.5rem;
    z-index: 2;
    font-size: 1.5rem;
    filter: drop-shadow(2px 2px 5px rgb(0 0 0 / 0.6));
    transition: all 0.15s ease-in;
    margin: 2rem;
}

@media only screen and (max-width: 768px) {
    .contato .contato-title {
        width: 70vw;
    }
    .conheca-button {
        width: 90vw;
        font-size: 1rem;
        margin-top: 2rem;
    }
    .contato .contact-info {
        width: 90%;
    }
    .contato .contact-info .info-icon {
        width: 20%;
    }
    
    .contato .contact-info .info-icon img{
        width: 90%;
    }
    .contato .contact-info .info-container {
        width: 80%;
    }
    .contato .contact-info .info-container {
        font-size: 1rem;
    }
}