.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-3937 .elementor-element.elementor-element-ebaf043{text-align:center;}.elementor-3937 .elementor-element.elementor-element-ebaf043 .elementor-heading-title{color:var( --e-global-color-4a58502 );}/* Start custom CSS for html, class: .elementor-element-110d2c3 *//* ===============================
   PRESUPUESTO (CF7) – CEREZO UI
   =============================== */

/* Wrapper principal */
.presupuesto-form{
  /* Brand */
  --cerezo-blue:#0b2d84;
  --cerezo-yellow:#ffb400;
  --cerezo-yellow-hover:#e6a200;
  --link:#ff7a00;

  /* UI */
  --ink:#17202a;
  --muted:#6b7785;
  --card:#ffffff;
  --border:#e6eef8;

  --field-bg:#ffffff;
  --field-border:#d9e5f5;
  --focus:#2f6dff;
  --focus-ring:0 0 0 4px rgba(47,109,255,.16);

  --radius-card:22px;
  --radius:14px;

  max-width: 1100px;            /* para que quepan 2 columnas */
  margin: 0 auto;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 34px rgba(13,35,69,.10);
}

/* Reset CF7: evita estilos por defecto con <p> */
.presupuesto-form .wpcf7-form{
  margin:0;
}
.presupuesto-form .wpcf7-form p{
  margin:0 0 14px;
}

/* ===============================
   GRID: 2 COLUMNAS PRINCIPALES
   =============================== */
.presupuesto-form .presupuesto-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items:start;
}

/* Paneles */
.presupuesto-form .panel{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(13,35,69,.06);
}

/* Títulos de panel */
.presupuesto-form .panel h3{
  margin:0 0 12px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;
  color: Black;
}

/* Subtítulos dentro de Info */
.presupuesto-form .subpanel{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #dfe9f8;
}
.presupuesto-form .subpanel h4{
  margin:0 0 10px;
  font-size: 18px;
  font-weight: 900;
  Color: Black;
}

/* ===============================
   CAMPOS (inputs)
   =============================== */
.presupuesto-form label{
  display:block;
  font-size: 14px;
  color: var(--ink);
  margin: 0 0 6px;
}

.presupuesto-form input[type="text"],
.presupuesto-form input[type="email"],
.presupuesto-form input[type="tel"],
.presupuesto-form input[type="number"],
.presupuesto-form input[type="date"],
.presupuesto-form select,
.presupuesto-form textarea{
  width: 100%;
  box-sizing:border-box;

  background: var(--field-bg);
  border: 1px solid var(--field-border);
  border-radius: var(--radius);

  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink);

  outline:none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.presupuesto-form textarea{
  min-height: 220px;
  resize: vertical;
}

.presupuesto-form ::placeholder{ color:#a6b2c3; }

.presupuesto-form input:focus,
.presupuesto-form select:focus,
.presupuesto-form textarea:focus{
  border-color: var(--focus);
  box-shadow: var(--focus-ring);
}

/* Select con caret consistente */
.presupuesto-form select{
  appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, #7f93b2 50%),
    linear-gradient(135deg, #7f93b2 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat:no-repeat;
  padding-right: 42px;
}

/* ===============================
   CARACTERÍSTICAS: 2 columnas dentro
   =============================== */
.presupuesto-form .campos-crane{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
}
.presupuesto-form .campos-crane label{
  margin:0;
}

/* ===============================
   TIPO DE BASE (checkboxes)
   =============================== */
.presupuesto-form .base-crane{
  margin-top: 12px;
}
.presupuesto-form .base-crane p{
  margin:0 0 8px;
  font-weight: 800;
  color: var(--ink);
}

/* CF7 checkbox wrapper */
.presupuesto-form .wpcf7-form-control.wpcf7-checkbox{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}

.presupuesto-form .wpcf7-list-item{
  margin:0 !important;
}

.presupuesto-form input[type="checkbox"]{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  accent-color: var(--cerezo-yellow);
}

/* FILE INPUT – botón discreto (no compite con ENVIAR) */
.presupuesto-form input[type="file"],
.presupuesto-form .wpcf7-file{
  width:100%;
  height:48px;
  padding:0;
  border-radius: var(--radius);
  border:2px solid var(--field-border);
  background:#f6f9ff;
  font-size:14px;
  color:var(--ink);
  cursor:pointer;
  box-sizing:border-box;
}

/* BOTÓN */
.presupuesto-form input[type="file"]::file-.elementor-3937 .elementor-element.elementor-element-110d2c3-button,
.presupuesto-form .wpcf7-file::file-.elementor-3937 .elementor-element.elementor-element-110d2c3-button,
.presupuesto-form input[type="file"]::-webkit-file-upload-button,
.presupuesto-form .wpcf7-file::-webkit-file-upload-button{
  height:100%;
  border:0;
  border-right:2px solid var(--field-border); /* línea perfecta */
  margin:0;
  padding:0 16px;
  background:var(--cerezo-blue);
  color:#fff;
  font-weight:800;
  border-radius:0; /* evita el corte */
  cursor:pointer;
  transition:background .2s ease, filter .2s ease;
}

.presupuesto-form input[type="file"]::file-.elementor-3937 .elementor-element.elementor-element-110d2c3-button:hover,
.presupuesto-form .wpcf7-file::file-.elementor-3937 .elementor-element.elementor-element-110d2c3-button:hover,
.presupuesto-form input[type="file"]::-webkit-file-upload-button:hover,
.presupuesto-form .wpcf7-file::-webkit-file-upload-button:hover{
  background:var(--cerezo-yellow);
  color:#111;
}

.presupuesto-form input[type="file"]:focus{
  outline:none;
  border-color:var(--focus);
  box-shadow:var(--focus-ring);
}

/* ===============================
   FOOTER: PRIVACIDAD + ENVIAR
   =============================== */
.presupuesto-form .presupuesto-footer{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #eef3fb;

  /* SIEMPRE debajo, no a la derecha */
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.presupuesto-form .privacidad{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.35;

  /* evita el “texto en columna rara” */
  max-width: 760px;
}

.presupuesto-form .privacidad a{
  color: var(--link);
  text-decoration:none;
  font-weight: 800;
}
.presupuesto-form .privacidad a:hover{
  text-decoration: underline;
}

/* CF7 acceptance a veces crea spans/p */
.presupuesto-form .privacidad .wpcf7-form-control-wrap{
  display:inline;
}

/* Botón ENVIAR */
.presupuesto-form .btn-enviar,
.presupuesto-form .wpcf7-submit{
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 16px 18px;

  background: var(--cerezo-yellow);
  color: #fff;

  font-size: 16px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;

  cursor:pointer;
  transition: transform .12s ease, background .12s ease, filter .12s ease;
}

.presupuesto-form .btn-enviar:hover,
.presupuesto-form .wpcf7-submit:hover{
  background: var(--cerezo-yellow-hover);
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.presupuesto-form .btn-enviar:active,
.presupuesto-form .wpcf7-submit:active{
  transform: translateY(0);
}

/* Mensajes validación */
.presupuesto-form .wpcf7-not-valid-tip{
  margin-top: 8px;
  font-size: 13px;
  color: #d93025;
}
.presupuesto-form .wpcf7-response-output{
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 980px){
  .presupuesto-form{
    max-width: 760px;
  }
  .presupuesto-form .presupuesto-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  .presupuesto-form{
    padding: 16px;
    border-radius: 18px;
  }
  .presupuesto-form .campos-crane{
    grid-template-columns: 1fr;
  }
  .presupuesto-form textarea{
    min-height: 200px;
  }
}

/* ===============================
   FIX FUERTE: CF7 select "tipo maquinaria"
   =============================== */

/* Apunta directo al select por ID (tu CF7: id:tipo-m) */
.presupuesto-form select#tipo-m,
.wpcf7 select#tipo-m,
.wpcf7-form select#tipo-m,
body .wpcf7 select#tipo-m{
  color: #17202a !important;
  -webkit-text-fill-color: #17202a !important;
  background-color: #ffffff !important;

  font-size: 15px !important;
  line-height: 1.2 !important;

  opacity: 1 !important;
  text-shadow: none !important;
}

/* Las opciones del desplegable */
.presupuesto-form select#tipo-m option,
.wpcf7 select#tipo-m option,
body .wpcf7 select#tipo-m option{
  color: #17202a !important;
  background: #ffffff !important;
}

/* Si el tema lo deja “transparent” al hacer focus */
.presupuesto-form select#tipo-m:focus,
.wpcf7 select#tipo-m:focus,
body .wpcf7 select#tipo-m:focus{
  color: #17202a !important;
  -webkit-text-fill-color: #17202a !important;
}/* End custom CSS */