.card-contato {
  margin-top: 55px;
  width: 40%;
  height: 230px;
  border: 1px solid;
  border-color: white;
  background-color: #FFF;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-contato-title1 {
  padding-top: 40px;
  font-family: DINPro-CondensedMedium;
  font-size: 28px;
}

.card-contato-title2 {
  font-family: DINPro-CondensedBold;
  font-size: 28px;
  color: #006e46;
}

/* fundo entre em contato */
.container-verde-h340px {
  background-image: url("../img/6 BACKGROUND.png");
  background-size: cover;
  /* Faz a imagem cobrir todo o contêiner */
  background-repeat: no-repeat;
  /* Não repete a imagem */
  background-position: center;
  /* Centraliza a imagem */
  height: 340px;
  width: 100%;
  align-items: center;
}

/* Para telas menores que 600px */
@media (max-width: 620px) {
  .card-contato {
    width: 80%;
    height: 140px;
  }

  .card-contato-title1 {
    padding-top: 10px;
    font-size: 20px;
  }

  .card-contato-title2 {
    font-size: 18px;
  }

  .container-verde-h340px {
    height: 250px;
  }
}

/* Para telas entre 600px e 1024px /* */
@media (min-width: 620px) and (max-width: 955px) {
  .card-contato-title1 {
    font-size: 18px;
  }

  .card-contato-title2 {
    font-size: 18px;
  }
  /* .container-verde-h340px {
    height: 200px;
  } */
}