input::placeholder,
textarea::placeholder {
  flex: 1 0 0;
  color: var(--color-neutro-30, #c2c2c2);

  /* Typography/Body-lineheight-lg */
  font-family: var(--font-family-body, "Work Sans");
  font-size: var(--font-size-body, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 175% */
  letter-spacing: var(--Static-Label-Large-Tracking, 0.1px);
}

.section-formulario-index {
  display: flex;
  padding: 64px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  background-color: var(--brand-primary-lighter);
}

.titulo-contactos {
  gap: 32px;
  align-self: stretch;
  color: var(--text-inverted);
  text-align: center;
}

.titulo-contactos span {
  font-weight: 700;
}

/* CARD */
.form-card {
  background: var(--surface-primary);
  display: flex;
  width: 100%;
  max-width: 1280px;
  padding: 64px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  border-radius: 16px;
}

.formulario-contacto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

/* GRID */
.linha {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.coluna {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1 0 0;
  gap: 8px;
}

.coluna-unica {
  display: flex;
  flex-direction: column;

  width: 100%;
  gap: 8px;
}

/* LABELS */
label {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: var(--color-neutro-90, #474747);
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  font-size: 16px;
}

/* CAMPOS */
input,
select,
textarea {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 8px;
  background-color: var(--surface-secondary);
}

/* SELECT */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.9998 8.19386L12.6448 15.5489C12.4742 15.7195 12.2463 15.8131 12.0029 15.8126C11.7605 15.8131%2011.5325%2015.7195%2011.3617%2015.5489L4.00004%208.18701' stroke='%23333333' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 16px center;
}

/* TEXTAREA */
textarea {
  height: 130px;
  resize: none;
}

/* TELEFONE */
.campo-telefone {
  display: flex;
  gap: 16px;
}

.campo-telefone select {
  width: 140px;
}

/* FOOTER */
.linha-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

/* TERMOS */

.termos-button-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.termos-button-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
}

.termos {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.checkboxf {
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
}

.termos a {
  text-decoration: underline;
  color: var(--text-inverted);
}

/* BOTÃO */
.btn-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-green-70);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 8px;
  cursor: pointer;
  gap: 8px;
}

.btn-submit h4 {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
}

.btn-icon {
  display: flex;
  width: 24px;
  height: 24px;
  padding: 2.6px 2px 2.485px 2px;
  justify-content: center;
  align-items: center;
}

.btn-submit:hover {
  background-color: #00820d;
}

/* MENSAGENS */
.mensagem-form {
  display: none;
  margin-top: 25px;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
}

.mensagem-form.sucesso {
  background-color: var(--color-green-90);
  color: #fff;
}

.mensagem-form.erro {
  background-color: var(--color-red-80);
  color: #fff;
}

/* --- TABLET --- */

@media (max-width: 1280px) {
  .section-formulario-index {
    display: flex;
    padding: 24px;
    gap: 24px;

  }

  .linha {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }

  .form-card {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 16px;
  }

  .formulario-contacto {
    gap: 24px;
  }
}

/* --- MOBILE --- */

@media (max-width: 768px) {
  .section-formulario-index {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
  }

  .form-card {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 16px;
  }

  .termos-button-container {
    flex-direction: column-reverse;
    gap: 16px;

  }

  .termos-button-group {
    align-items: start;
  }

  .campo-telefone {
    flex-direction: column;
  }

  .linha {
    flex-direction: column;
  }

  .coluna {
    width: 100%;
  }

  .formulario-contacto {
    gap: 16px;
  }
}