#servicos {
	margin-bottom: 6vh;
}
    
#titulo {
    width: 100%;
    height: 15vh;
    background-color: rgba(184, 101, 41, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3em;
    margin-bottom: 3rem;
}
 
/* Card */

#cards {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
    
.card {
    display: block;
    border-radius: 10px;
	overflow: hidden;
    padding-bottom: 1rem;
    box-shadow: 0px 1px 5px rgb(70, 70, 70);
    width: 47%;
    background-color: rgba(121, 45, 5, 0.95);
    transition: 0.5s ease;
    margin-bottom: 3rem;
}

/* .card:nth-of-type(5) {
	margin-bottom: 0rem;
} */
    
.card:hover {
    transform: translateY(-15px);
    box-shadow: 0px 1px 15px rgb(60, 60, 60);
    transition: 0.5s ease;
}
    
.cardorg {
    display: block;
    text-decoration: none;
}
    
.cardorg address {
    text-align: center;
    color: #ffffff;
    padding: 0 5vw 0 5vw;
}
    
.cardorg address p {
    font-size: 1.3em;
}
      
.card h4 {
    font-size: 2em;
    margin-top: 1rem;
    text-decoration: underline;
    margin-bottom: 3vh;
}
    
.card figure {
    display: flex;
    align-items: end;
    width: 100%;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    max-height: 40vh;
}
    
.card figure img {width: 100%;}
    
/* Card fim */

@media (max-width: 800px) {

  .card {
    width: 90%;
    margin-bottom: 3rem;
  }

  .card address {
    padding: 0vh 3vw;
  }

  #contato {
    height: 60vh;
  }
  
}