.elementor-kit-6{--e-global-color-primary:#DA330F;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"IBM Plex Serif";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"IBM Plex Serif";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"IBM Plex Serif";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"IBM Plex Serif";--e-global-typography-accent-font-weight:500;--e-global-typography-accent-font-style:italic;--e-global-typography-476697e-font-family:"Space Mono";--e-global-typography-476697e-font-size:64px;--e-global-typography-476697e-font-weight:700;--e-global-typography-476697e-line-height:72px;--e-global-typography-476697e-letter-spacing:0px;--e-global-typography-566b31e-font-family:"Lora";--e-global-typography-566b31e-font-size:1rem;--e-global-typography-566b31e-line-height:18px;--e-global-typography-566b31e-letter-spacing:0px;--e-global-typography-566b31e-word-spacing:0px;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 h1{font-family:"Space Grotesk", serif;}.elementor-kit-6 h2{font-family:"Space Grotesk", serif;}.elementor-kit-6 h3{font-family:"Space Grotesk", serif;}.elementor-kit-6 button,.elementor-kit-6 input[type="button"],.elementor-kit-6 input[type="submit"],.elementor-kit-6 .elementor-button{font-family:var( --e-global-typography-primary-font-family ), serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-kit-6{--e-global-typography-476697e-font-size:36px;--e-global-typography-476697e-line-height:2.5rem;--e-global-typography-566b31e-font-size:1rem;--e-global-typography-566b31e-line-height:1.2rem;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6{--e-global-typography-476697e-font-size:28px;--e-global-typography-476697e-line-height:32px;--e-global-typography-566b31e-font-size:0.85rem;--e-global-typography-566b31e-line-height:1rem;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.form-grid {
  display: grid;
  grid-template-columns: 250px 250px; /* dos columnas fijas */
  gap: 10px 20px;
}

/* Colocación manual */
.nombre   { grid-column: 1; }
.telefono { grid-column: 2; }
.correo   { grid-column: 1; }
.motivo   { grid-column: 2; }

/* Que ocupen las dos columnas */
.mensaje,
.aceptacion,
.boton {
  grid-column: 1 / -1;
}

/* --- Errores de validación de CF7 --- */
.form-grid div {
  position: relative; /* ancla el mensaje al campo */
}

.wpcf7-not-valid-tip {
  position: absolute;
  margin-top: 4px;       /* espacio extra para no pegarse */

  left: 0;
  font-size: 12px;
  color: #d9534f;        /* rojo */
  line-height: 1.2;
  pointer-events: none;  /* no molesta al clic */
}

/* Opcional: resaltar inputs con error */
.wpcf7-not-valid {
  border: 1px solid #d9534f !important;
}

/* --- Responsive para móviles --- */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 250px; /* una sola columna en móviles */
  }

  .nombre,
  .telefono,
  .correo,
  .motivo,
  .mensaje,
  .aceptacion,
  .boton {
    grid-column: 1; /* todos en la única columna */
  }
}/* End custom CSS */