.avaliacao-container {
  width: 927px;
  height: 1199px;
  margin: 40px auto;
  padding: 0px 24px;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.avaliacao-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: var(--primary-red);
    margin-bottom: 30px;
    text-align: center;
}

.avaliacao-separator {
    width: 960px;
    max-width: 100%;
    border: 1px solid #000;
    margin: 0 auto 20px auto;
}

/* Títulos */
h5 {
  /* Propriedades da tipografia */
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0;
  color: #161616;
}

hr {
  border: none;
  height: 1px;
  background: #d1d1d1;
  margin: 0px 0 20px 0;
}

/* Campos */
.form-field {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  height: 52px;
  padding: 14px 16px;
  border: 1.5px solid #d1d1d1;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  transition: border 0.2s ease;

  /* Propriedades da tipografia */
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #888888;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  border-color: #D1D1D1;
}

.form-field input:focus {
  border-color: #eb0000;
}

.form-row input:focus {
  border-color: #eb0000;
}

textarea {
  resize: vertical;
  width: 100%;
  height: auto;
  padding: 14px 16px;
  border: 1.5px solid #d1d1d1;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  transition: border 0.2s ease;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;

  /* Propriedades da tipografia */
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #161616;
}

textarea::-webkit-scrollbar {
  display: none;
}

textarea:focus {
  border-color: #eb0000;
}

/* Labels */
label[for="mensagem"] {
  display: block;
  margin-bottom: 8px;
  color: #161616;
  /* Propriedades da tipografia */
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

/* Upload customizado */
.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  display: none;
}

.file-upload label {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #d1d1d1;
  border-radius: 6px;
  color: #161616;
  background: #fff;
  cursor: pointer;
  transition: border 0.2s ease, background 0.2s ease;
  /* Propriedades da tipografia */
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

    .file-upload label:hover {
        border-color: var(--primary-red);
        background: #f6f6f6;
    }

/* Checkboxes */
.form-checkbox {
  margin-bottom: 10px;
}

.form-checkbox label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #5D5D5D;
  cursor: pointer;
}

/* Oculta o input real */
.form-checkbox input[type="checkbox"] {
  display: none;
}

/* Caixa customizada */
.custom-checkbox {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1.5px solid #D1D1D1;
  background: #F6F6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

/* SVG do check */
.check-icon {
  width: 13px;
  height: 9px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Quando marcado */
.form-checkbox input[type="checkbox"]:checked + .custom-checkbox {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.form-checkbox input[type="checkbox"]:checked+.custom-checkbox .check-icon {
  opacity: 1;
}

/* Primeiro span - Ofertas */
.oferta-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}

/* Segundo span - Consentimento */
.consent-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0%;
  vertical-align: middle;
}

/* Botão */
.form-button {
  width: 879px;
  height: 56px;
  text-align: center;
  margin-top: 24px;
}

    .form-button button {
        width: 100%;
        height: 100%;
        background-color: var(--primary-red);
        color: #fff;
        border: none;
        padding: 14px 28px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s ease;
    }

.form-button button:hover {
  background-color: #c40000;
}

.btn-submit {
    width: 100%;
    height: 56px;
    background: var(--primary-red);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-submit:hover {
        background: #c00000;
    }

/* ====== Versão Mobile (Celulares) ====== */
@media (max-width: 680px) {

  /* ===== CONFIGURAÇÃO GERAL ===== */
  html,
  body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  main {
    width: 100%;
  }

  #header,
  #footer {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 680px) {

    .btn-submit {
        width: 100%;
        height: 52px;
        font-size: 15px;
    }
  /* Container geral */
  .avaliacao-container {
    width: 100%;
    height: auto;
    margin: 20px auto;
    padding: 20px 16px;
    border-radius: 8px;
    box-shadow: none;
  }

  /* Reduz margens */
  .form-field {
    margin-bottom: 14px;
  }

  /* Mantém pares específicos lado a lado */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .form-row.full {
    grid-template-columns: 1fr;
  }

  /* Campos */
  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    width: 100%;
    font-size: 15px;
    height: 52px;
  }



  /* Labels */
  label[for="mensagem"] {
    font-size: 13px;
    margin-bottom: 6px;
  }

  /* Checkboxes */
  .form-checkbox {
    align-items: flex-start;
    height: auto;
    gap: 10px;
    margin-top: 30px;
  }

  .form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }

  /* Textos dos checkboxes */
  .oferta-text {
    width: 100%;
/*    height: 48px;
*/  }

  .consent-text {
    width: 290px;
    height: 84px;
  }

  /* Botão ocupa toda a largura */
  .form-button {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .form-button button {
    width: 100%;
    height: 56px;
    font-size: 15px;
  }

   
}