.contato {
  max-width: 1216px;
  margin: 0 auto;
  padding: 96px 112px;
  display: flex;
  gap: 80px;
}

.contato-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: end;
}

.contato-info-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: start;
}

.contato-info-texto h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #101112;
}

.contato-info-texto p {
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  max-width: 340px;
  padding-top: 32px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #1c1c1c;
}

.btn-maps {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 15px;
  background: #fff;
  transition: 0.2s;
  width: 241px;
  height: 64px;
}

.btn-maps:hover {
  background: #f9f9f9;
}

.contato-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contato-form label {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.contato-form input,
.contato-form textarea {
  margin-top: 6px;
  border: none;
  border-bottom: 1px solid #d1d5db;
  padding: 12px 4px;
  font-size: 15px;
  color: #111;
  outline: none;
  background: transparent;
}

.contato-form textarea {
  margin-top: 6px;
  border: none;
  border-bottom: 1px solid #d1d5db;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
  color: #9ca3af;
}

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

.btn-enviar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 277px;
  height: 64px;
  padding: 23px 24px 23px 40px;
  border: none;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-enviar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-enviar img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.btn-enviar:hover:not(:disabled) {
  background: #222;
}

#form-message {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 14px;
}

/* Responsive */
@media (min-width: 320px) and (max-width: 767px) {
  .contato {
    flex-direction: column;
    padding: 40px 32px;
    gap: 32px;
  }

  .contato-info-texto h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .contato-info-texto p {
    font-size: 14px;
    line-height: 20px;
    max-width: 100%;
    padding-top: 16px;
  }

  .contato-item {
    font-size: 14px;
    flex-wrap: wrap;
  }

  .btn-maps {
    width: 60%;
    font-size: 14px;
    height: 56px;
  }

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

  .contato-form input,
  .contato-form textarea {
    font-size: 14px;
    padding: 10px 4px;
  }

  .btn-enviar {
    width: 100%;
    max-width: 277px;
  }
}

