/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://example.com/hello-elementor-child/
 Description:  Child theme for Hello Elementor
 Author:       Ramón Pons
 Author URI:   https://mitziweb.com
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/

/* Contenedor de fila (Nombre y Email) */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* Cada columna ocupa el 50% */
.form-row .form-col {
  flex: 1;
}

/* Input, textarea y botón 100% ancho */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea,
.wpcf7 .full-width {
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Botón de envío */
.wpcf7 input[type="submit"].full-width {
  background-color: #5c6bc0;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #3f51b5;
}

/* Aceptación de privacidad */
.form-check {
  margin-top: 10px;
  font-size: 14px;
}

.form-check input[type="checkbox"] {
  margin-right: 8px;
}
