.contato-section {
  width: 100%;
  padding: 80px 0;
  background-color: #f2f2f2;
}

.contato-title h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  color: #273034;
  margin-bottom: 1em;
}
.contato-title h2 i{  font-size: 16px;  }

.contato-title h2 small {
  display: block;
  font-weight: 100;
  font-size: 65%;
  font-family: 'Roboto Slab', serif;
  font-style: normal;
  text-transform: none;
}

.square {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background-color: #273034;
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.contato-blocos {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.contato-mapa,
.contato-form {
  flex: 1;
  background-color: #fff;
  padding: 40px;
  box-sizing: border-box;
  border: 1px solid #ddd;
}

.contato-form form {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto Slab', serif;
  gap: 20px;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 12px;
  font-family: inherit !important;
  font-size: 14px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.contato-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contato-form button {
  background-color: #273034;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contato-form button i {
  font-size: 14px;
}

/* Responsivo */
@media (max-width: 768px) {
  .contato-blocos {
    flex-direction: column;
  }

  .contato-mapa,
  .contato-form {
    padding: 20px;
  }
}