body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
  color: #0f52ba;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 10px;
}
#home {
  margin: 20px auto;
  padding-top: 35px;
}
#symptom-checklist {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

#symptom-checklist li {
  background-color: #f8f9fa;
  border-left: 4px solid #007bff;
  padding: 12px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

#symptom-checklist input[type="checkbox"]:checked + label {
  background-color: #c0d2e4;
  border-radius: 5px;
  padding: 5px;
}

#symptom-checklist label {
  margin-left: 10px;
  cursor: pointer;
  flex: 1;
}

#results {
  margin-top: 30px;
  padding: 20px;
  border-radius: 8px;
  background-color: #e9ecef;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

#score-display {
  font-size: 1.8em;
  font-weight: bold;
  color: #0056b3;
}

#score-interpretation {
  font-size: 1.1em;
  font-style: italic;
  color: #495057;
}

/* --- ESTILO DO FORMULÁRIO (SEMPRE VISÍVEL) --- */
#contact-form-section {
  margin-top: 30px;
  padding: 20px;
  border: 2px solid #ced4da; /* Borda padrão */
  border-radius: 8px;
  transition: all 0.4s ease-in-out; /* Adiciona transição suave */
}

/* --- CLASSE DE DESTAQUE APLICADA VIA JAVASCRIPT --- */
#contact-form-section.highlight {
  border-color: #d80e0e; /* Borda verde do WhatsApp */
  border-width: 3px;
  border-style: solid;
  background-color: #dbe1f5; /* Fundo verde muito claro */
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); /* Sombra para dar profundidade */
}

#contact-form-section h2 {
  margin-top: 0;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  box-sizing: border-box;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #1dbb57;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #128c7e;
}
