/* Start custom CSS for shortcode, class: .elementor-element-41c9860 *//* Estilo general del formulario */
.wpcf7-form {
  margin: 0 auto;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

/* Títulos de sección */
.wpcf7-form strong {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 30px;
}

/* Párrafos */
.wpcf7-form p {
  margin-bottom: 20px;
}

/* Inputs y selects */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

/* Select específicamente */
.wpcf7-form select {
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Botón de enviar */
.wpcf7-form input[type="submit"] {
  background-color: black; /* Color rojo del botón */
  color: #fff;
  padding: 12px 20px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
  width: fit-content;
}

/* Hover del botón */
.wpcf7-form input[type="submit"]:hover {
  background-color: #004;
}

/* Línea separadora */
.wpcf7-form hr {
  border: 0;
  border-top: 2px solid #eee;
  margin: 40px 0;
}

/* Espacio entre inputs y etiquetas */
.wpcf7-form p > label,
.wpcf7-form p > strong {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

/* Ajustes del spinner (el círculo de cargando) */
.wpcf7-spinner {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}/* End custom CSS */