/* Estructura del formulario */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.form-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-col {
  flex: 1;
}

/* Inputs y textarea */
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #1a202c;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #4299e1;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

.form-textarea {
  margin-bottom: 1.25rem;
  min-height: 150px;
}

/* Radio buttons */
.form-section-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 1rem;
}

.wpcf7-list-item {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
}

.form-radio {
  margin-right: 0.5rem;
}

/* Checkboxes */
.form-checkbox-group {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  max-height: 1.2rem;
}

.wpcf7-form label br {
  display: none;
}

span.wpcf7-form-control.wpcf7-radio.form-radio {
    display: flex;
    gap: 1rem;
    font-size: small;
    color: rgb(10, 11, 10, 0.7);
}

.form-checkbox {
  margin-right: 0.5rem;
}

.form-checkbox-label {
  font-size: 0.875rem;
  color: #4a5568;
}

.form-link {
  color: #3182ce;
  text-decoration: underline;
}

.form-link:hover {
  color: #2c5282;
}

/* Botón de enviar */
.form-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: #FF5C39;
  color: white;
  font-weight: 500;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.form-submit:hover {
  background-color: #2c5282;
}

/* Validación */
.wpcf7-not-valid-tip {
  color: #e53e3e;
  font-size: 0.75rem;
  margin-top: -0.75rem;
  margin-bottom: 1rem;
}

.wpcf7-not-valid {
  border-color: #e53e3e;
}

.wpcf7-response-output {
  padding: 1rem;
  border-radius: 0.375rem;
  margin: 1rem 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-col {
    margin-bottom: 1.25rem;
  }
}