.contato {
  padding: 5rem 0 10rem;
  background: linear-gradient(180deg, #121212 0%, #000 55%);
}

.contato .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 96px;
}

#form-contato {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: fit-content;
  max-width: 750px;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: #1f1f1f;
  box-shadow: 0px 0px 60.3px 0px rgba(0, 0, 0, 0.1);
}

.input-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.input-field label {
  color: #e7e7e7;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.input-field input,
.input-field select,
.input-field textarea {
  border: 1px solid #595959;
  border-radius: 10px;
  background-color: transparent;
  padding: 16px;
  width: 100%;
  color: #b0b0b0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 143%;
  letter-spacing: -0.64px;
  height: 100%;
  outline: none;
}

.input-field input::placeholder,
.input-field select::placeholder,
.input-field textarea::placeholder {
  color: #949494;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.input-field textarea {
  resize: none;
  height: 200px;
  padding: 16px;
}

.attention-icon {
  color: #e7e7e7;
}

.form-contato__flex {
  display: flex;
  gap: 16px;
}

#form-contato .primary-btn {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .contato .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media screen and (max-width: 475px) {
  .form-contato__flex {
    flex-direction: column;
  }

  .input-field textarea {
    width: 100%;
  }
}

.contato-header p {
  color: #b0b0b0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 143%;
  letter-spacing: -0.64px;
}

.contatos-info {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}

.contatos-info .contato-info {
  display: flex;
  gap: 20px;
}

.contatos-info .contato-info-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 50px;
  background: #1f1f1f;
}

.contato-info svg {
  flex-shrink: 0;
}

.contato-info .contato-info-content h3 {
  color: #737373;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 8px;
}

.contato-info .contato-info-content p,
.contato-info .contato-info-content a {
  color: #e7e7e7;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}

.contato-info .contato-info-content a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .contato .container {
    grid-template-columns: 1fr;
  }
  #form-contato {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  #form-contato {
    padding: 0;
    background: none;
  }
}
