.contato {
  padding: 5rem 0;
  background-color: #f7f7f7;
}

.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: 48px;
  background: #fff;
  /* box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1); */
}

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

.input-field label {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  line-height: 140%;
  letter-spacing: -0.4px;
}

.input-field input,
.input-field select,
.input-field textarea {
  border: 1px solid #dedede;
  background-color: #fff;
  padding: 16px;
  width: 100%;
  color: #a4a4a4;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  letter-spacing: -0.56px;
  height: 100%;
  border-radius: 8px;
}

.input-field input::placeholder,
.input-field select::placeholder,
.input-field textarea::placeholder {
  color: #a4a4a4;
}

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

.attention-icon {
  color: var(--primary-color);
}

.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-unidades {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.contato-unidades__unidade h3 {
  color: #1c1f21;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.96px;
  margin: 12px 0;
}

.contato-unidades__unidade p,
.contato-unidades__unidade address {
    color: #757575;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
    margin: 16px 0px;
}

.contato-unidades__unidade-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contato-unidades__unidade-links__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contato-unidades__unidade-links__link-icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  background-color: #b6020F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contato-unidades__unidade-links__link a {
  color: var(--primary-color);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 165%;
  letter-spacing: -0.64px;
  text-decoration: none;
  word-break: break-word;
}

@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;
  }
}

.form-contato-submit {
    background: #590107;
    color: #FFF;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    height: 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.form-contato-submit:hover {
    background-color: #b9020e;;
    transition: .3s ease-in-out;
}

.section-title__variant {
    color: #590107;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -1.44px;
    text-transform: uppercase;
    text-align: center;
    width: fit-content;
    margin: 0 auto 64px;
    position: relative;
    margin: 0 0 64px;
    text-align: left;
}

.section-title__variant::after {
    content: "";
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 114px;
    height: 10px;
    background: #590107;
    left: 0;
    transform: none;
}

.section-paragraph__variant {
    color: #757575;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
    margin-top: 36px;
}