
.form-container {
  max-width: 900px;
  margin: 0 auto;
}

.form-section {
  text-align: center;
  margin-bottom: 80px;
}

/* Cabeçalho */
.header-content h2 {
  color: var(--primary);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.header-content p {
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 40px;
}

/* Inputs e Textarea */
.input-group {
  margin-bottom: 15px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  font-size: 16px;
  color: var(--primary);
  box-sizing: border-box;
  outline: none;
}

input::placeholder, 
textarea::placeholder {
  color: var(--primary);
  opacity: 0.8;
}

textarea {
  resize: none;
}

/* Checkbox Customizado */
.terms-container {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  height: 25px;
  width: 25px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  margin-right: 12px;
  display: inline-block;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--primary);
}

.terms-text {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

/* Botão */
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #ff5a3c, #e74c3c);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 8px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.btn-submit:hover {
  background-color: #c9361d;
  transform: translateY(-2px);
}

.divider {
  border: 0;
  border-top: 1px solid #eee;
  margin: 100px 0;
}

/* --- RESPONSIVIDADE --- */

@media (max-width: 1030px) {
  .form-container { max-width: 800px; }
}

@media (max-width: 1020px) {
  .header-content h2 { font-size: 30px; }
}

@media (max-width: 768px) {
  .form-section { padding: 0 20px; }
  .btn-submit { font-size: 20px; }
}

@media (max-width: 750px) {
  .header-content h2 { font-size: 26px; }
  .header-content p { font-size: 13px; }
  input, textarea { padding: 12px 15px; }
}