.contato-map {
  width: 100%;
  min-height: 400px;
}

.contato-desc {
  color: #666;
  margin-bottom: 35px;
  max-width: 420px;
  line-height: 1.7;
}

/* info */
.contato-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.contato-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contato-item h3 {
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 700;
}

.contato-item p,
.contato-item a {
  margin: 0;
  color: #666;
  text-decoration: none;
  line-height: 1.6;
}

.contato-item a:hover {
  color: var(--primary-color);
}

/* mapa */
.contato-mapa {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.contato-mapa iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

/* form */
.contato-form-box {
  border: 1px solid #e5e5e5;
  padding: 35px;
  border-radius: 6px;
  background: #fff;
}

.contato-form-title {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contato-form-title i {
  color: var(--primary-color);
  font-size: 24px;
}

.contato-form-box label {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

.contato-form-box .form-control,
.contato-form-box .form-select {
  height: 42px;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  font-size: 14px;
}

.contato-form-box textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: none;
  padding-top: 14px;
}

.check-politica {
  display: flex;
  gap: 10px;
  font-size: 13px !important;
  color: #777 !important;
  line-height: 1.5;
}

.contato-btn {
  height: 54px;
  font-weight: 600;
  text-transform: none;
}

.contato-btn i {
  transition: .3s;
}

.contato-btn:hover i {
  transform: translateX(5px);
}

/* responsivo */
@media(max-width:991px) {

  .contato .title-top {
    font-size: 36px;
  }

  .contato-form-box {
    padding: 25px;
  }
}