/* ==========================================================================
   Granzini CV – Formulario de postulación (estudiogranzini.com/cv)
   Estilos del paso a paso. Se cargan solo donde se usa el shortcode [granzini_cv].
   Paleta tomada del sitio (tema Miako): violeta #563D58, beige #DBCFA6,
   dorado #CF9455, petróleo #174558. Tipografías: Raleway (títulos) y Roboto (texto).
   ========================================================================== */

.gcv-wrap {
  --gcv-violet: #563d58;
  --gcv-violet-dark: #3f2c41;
  --gcv-violet-soft: #efe9f0;
  --gcv-beige: #dbcfa6;
  --gcv-beige-soft: #f6f2e6;
  --gcv-gold: #cf9455;
  --gcv-teal: #174558;
  --gcv-ink: #222222;
  --gcv-body: #4b4050;
  --gcv-muted: #736879;
  --gcv-line: #ddd5c0;
  --gcv-line-strong: #c9bf9f;
  --gcv-error: #b0393b;
  --gcv-error-soft: #fbeeee;
  --gcv-ok: #3d7a4c;
  --gcv-ok-soft: #eaf4ec;
  --gcv-radius: 5px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gcv-ink);
}
.gcv-wrap *, .gcv-wrap *::before, .gcv-wrap *::after { box-sizing: border-box; }

/* ---------- Layout opcional: columna de texto + formulario ---------- */
.gcv-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 940px) { .gcv-layout { grid-template-columns: 1fr; gap: 32px; } }

.gcv-wrap .gcv-aside .gcv-eyebrow {
  font-family: Raleway, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gcv-gold); margin: 0 0 8px;
}
.gcv-wrap .gcv-aside h2 {
  font-family: Raleway, sans-serif; font-size: 26px; font-weight: 600; line-height: 1.2;
  color: var(--gcv-violet-dark); margin: 0 0 14px; text-wrap: balance;
}
.gcv-wrap .gcv-aside h3 {
  font-family: Raleway, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gcv-violet-dark); margin: 24px 0 8px; padding-top: 14px;
  border-top: 1px solid var(--gcv-line);
}
.gcv-wrap .gcv-aside p { margin: 0 0 12px; color: var(--gcv-body); font-size: 15px; }
.gcv-wrap .gcv-aside p:last-child { margin-bottom: 0; }
.gcv-wrap .gcv-aside ul { margin: 0; padding: 0 0 0 18px; }
.gcv-wrap .gcv-aside ul li { margin: 0 0 7px; font-size: 14px; line-height: 1.5; color: var(--gcv-body); }
.gcv-wrap .gcv-aside ul li::marker { color: var(--gcv-gold); }
.gcv-wrap .gcv-aside h3 + .gcv-process { margin-top: 10px; }

.gcv-wrap .gcv-process { list-style: none; margin: 26px 0 0; padding: 0; }
.gcv-wrap .gcv-process li { position: relative; padding: 0 0 20px 28px; margin: 0; }
.gcv-wrap .gcv-process li::before {
  content: ""; position: absolute; left: 5px; top: 6px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--gcv-gold); box-shadow: 0 0 0 3px #fff;
}
.gcv-wrap .gcv-process li::after {
  content: ""; position: absolute; left: 10px; top: 18px; bottom: -2px; width: 1px; background: var(--gcv-line-strong);
}
.gcv-wrap .gcv-process li:last-child::after { display: none; }
.gcv-wrap .gcv-process b { display: block; font-family: Raleway, sans-serif; font-weight: 600; font-size: 15px; color: var(--gcv-violet-dark); }
.gcv-wrap .gcv-process span { display: block; font-size: 14px; color: var(--gcv-muted); }

.gcv-wrap .gcv-aside-note {
  margin-top: 26px; padding: 14px 18px; background: var(--gcv-beige-soft);
  border-left: 3px solid var(--gcv-gold); font-size: 14px; color: var(--gcv-body);
}
.gcv-wrap .gcv-aside-note a { color: var(--gcv-violet); font-weight: 500; }

/* ---------- Tarjeta del formulario (CF7) ---------- */
.gcv-wrap .wpcf7 { margin: 0; }
.gcv-wrap form.wpcf7-form {
  margin: 0; padding: 0;
  background: #fff;
  border: 1px solid var(--gcv-line);
  border-radius: 6px;
  box-shadow: 0 10px 34px rgba(86, 61, 88, 0.10);
  overflow: hidden;
}

/* ---------- Progreso (1 · 2 · 3) ---------- */
.gcv-wrap .gcv-progress {
  list-style: none; margin: 0; padding: 20px 28px;
  display: flex; align-items: center;
  background: var(--gcv-beige-soft); border-bottom: 1px solid var(--gcv-line);
}
.gcv-wrap .gcv-progress-step { display: flex; align-items: center; flex: 1 1 0; min-width: 0; margin: 0; padding: 0; }
.gcv-wrap .gcv-progress-step:first-child { flex: 0 0 auto; }
.gcv-wrap .gcv-progress-step + .gcv-progress-step::before {
  content: ""; flex: 1 1 0; height: 2px; margin: 0 14px; background: var(--gcv-line-strong); border-radius: 2px;
}
.gcv-wrap .gcv-progress-step.is-current::before,
.gcv-wrap .gcv-progress-step.is-done::before { background: var(--gcv-gold); }
.gcv-wrap .gcv-progress-num {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  border: 2px solid var(--gcv-line-strong); background: #fff;
  font-weight: 700; font-size: 14px; color: var(--gcv-muted);
  font-variant-numeric: tabular-nums;
}
.gcv-wrap .gcv-progress-label {
  margin-left: 10px; white-space: nowrap;
  font-family: Raleway, sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gcv-muted);
}
.gcv-wrap .is-current .gcv-progress-num { background: var(--gcv-violet); border-color: var(--gcv-violet); color: #fff; }
.gcv-wrap .is-current .gcv-progress-label { color: var(--gcv-violet-dark); }
.gcv-wrap .is-done .gcv-progress-num { background: var(--gcv-gold); border-color: var(--gcv-gold); color: #fff; font-size: 0; }
.gcv-wrap .is-done .gcv-progress-num::after { content: "\2713"; font-size: 15px; }
.gcv-wrap .is-done .gcv-progress-label { color: var(--gcv-ink); }
@media (max-width: 600px) {
  .gcv-wrap .gcv-progress { padding: 16px 18px; }
  .gcv-wrap .gcv-progress-label { display: none; }
  .gcv-wrap .is-current .gcv-progress-label { display: inline; }
  .gcv-wrap .gcv-progress-step + .gcv-progress-step::before { margin: 0 10px; }
}

/* ---------- Pasos ---------- */
.gcv-wrap .gcv-step { border: 0; margin: 0; padding: 28px 28px 30px; min-width: 0; display: block; }
@media (max-width: 600px) { .gcv-wrap .gcv-step { padding: 22px 18px 24px; } }
.gcv-js .gcv-step { display: none; }
.gcv-js .gcv-step.is-active { display: block; }
.gcv-js.is-sent .gcv-step, .gcv-js.is-sent .gcv-progress { display: none; }

.gcv-wrap .gcv-step-title {
  font-family: Raleway, sans-serif; font-size: 24px; font-weight: 600; line-height: 1.25;
  color: var(--gcv-violet-dark); margin: 0 0 6px; padding: 0; text-transform: none; letter-spacing: 0;
}
.gcv-wrap .gcv-step-title:focus { outline: none; }
.gcv-wrap .gcv-step-intro { margin: 0 0 24px; color: var(--gcv-muted); font-size: 15px; max-width: 62ch; }

.gcv-wrap .gcv-section { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--gcv-line); }
.gcv-wrap .gcv-subhead {
  font-family: Raleway, sans-serif; font-size: 17px; font-weight: 600; line-height: 1.3;
  color: var(--gcv-violet-dark); margin: 0 0 16px; padding: 0; text-transform: none; letter-spacing: 0;
}
.gcv-wrap .gcv-subhead small {
  display: block; font-family: Roboto, Arial, sans-serif; font-size: 13px; font-weight: 400;
  color: var(--gcv-muted); margin-top: 3px;
}
.gcv-wrap .gcv-question { margin: -6px 0 16px; font-size: 15px; line-height: 1.55; color: var(--gcv-body); max-width: 72ch; }
.gcv-wrap .gcv-note {
  margin: 0 0 4px; padding: 14px 16px; background: var(--gcv-beige-soft);
  border-left: 3px solid var(--gcv-gold); font-size: 14px; line-height: 1.55; color: var(--gcv-body);
}
.gcv-wrap .gcv-note b { color: var(--gcv-violet-dark); font-weight: 600; }
.gcv-wrap .gcv-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Campos ---------- */
.gcv-wrap .gcv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
@media (max-width: 640px) { .gcv-wrap .gcv-grid { grid-template-columns: 1fr; } }
.gcv-wrap .gcv-span2 { grid-column: 1 / -1; }
.gcv-wrap .gcv-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; position: relative; }
.gcv-wrap .gcv-field[hidden] { display: none; }
.gcv-wrap .gcv-label {
  display: block; margin: 0; max-width: none;
  font-weight: 500; font-size: 14px; line-height: 1.4; color: var(--gcv-violet-dark);
}
.gcv-wrap .gcv-label em { color: var(--gcv-gold); font-style: normal; margin-left: 2px; }
.gcv-wrap .gcv-help { font-size: 13px; color: var(--gcv-muted); line-height: 1.4; }
.gcv-wrap .wpcf7-form-control-wrap { display: block; position: relative; }

.gcv-wrap input.wpcf7-form-control:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="submit"]),
.gcv-wrap select.wpcf7-form-control,
.gcv-wrap textarea.wpcf7-form-control {
  display: block; width: 100%; height: 46px; margin: 0;
  padding: 10px 14px;
  border: 1px solid var(--gcv-line-strong); border-radius: var(--gcv-radius);
  background: #fff; color: var(--gcv-ink);
  font-family: inherit; font-size: 15px; line-height: 1.4;
  box-shadow: none; appearance: none; -webkit-appearance: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
/* En pantallas táctiles la tipografía sube a 16px: por debajo de eso, Safari en iPhone
   y iPad amplía la página sola al tocar un campo y no vuelve al tamaño original. */
@media (pointer: coarse) {
  .gcv-wrap input.wpcf7-form-control:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="submit"]),
  .gcv-wrap select.wpcf7-form-control,
  .gcv-wrap textarea.wpcf7-form-control { font-size: 16px; }
}
.gcv-wrap input.wpcf7-form-control::placeholder, .gcv-wrap textarea.wpcf7-form-control::placeholder { color: #a39aa6; opacity: 1; }
.gcv-wrap input[type="number"].wpcf7-form-control { -moz-appearance: textfield; }
.gcv-wrap input[type="number"].wpcf7-form-control::-webkit-outer-spin-button,
.gcv-wrap input[type="number"].wpcf7-form-control::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.gcv-wrap select.wpcf7-form-control {
  padding-right: 40px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23563d58' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.gcv-wrap textarea.wpcf7-form-control { height: auto; min-height: 132px; resize: vertical; }
.gcv-wrap input.wpcf7-form-control:focus, .gcv-wrap select.wpcf7-form-control:focus, .gcv-wrap textarea.wpcf7-form-control:focus {
  outline: none; border-color: var(--gcv-violet); box-shadow: 0 0 0 3px rgba(86, 61, 88, 0.16);
}
.gcv-wrap .gcv-count { align-self: flex-end; font-size: 12px; color: var(--gcv-muted); font-variant-numeric: tabular-nums; }
.gcv-wrap .gcv-count.is-over { color: var(--gcv-error); }

/* Opciones (casillas y botones de radio) como "chips" */
.gcv-wrap .wpcf7-checkbox, .gcv-wrap .wpcf7-radio { display: flex; flex-wrap: wrap; gap: 8px; }
.gcv-wrap .wpcf7-list-item { display: block; margin: 0; }
.gcv-wrap .wpcf7-list-item label {
  display: inline-flex; align-items: center; gap: 8px; margin: 0; max-width: none;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--gcv-line-strong); border-radius: 999px; background: #fff;
  font-weight: 400; font-size: 14px; line-height: 1.3; color: var(--gcv-ink); cursor: pointer;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.gcv-wrap .wpcf7-list-item label:hover { border-color: var(--gcv-violet); }
.gcv-wrap .wpcf7-list-item input { accent-color: var(--gcv-violet); width: 16px; height: 16px; margin: 0; flex: none; cursor: pointer; }
.gcv-wrap .wpcf7-list-item label:has(input:checked) { background: var(--gcv-violet-soft); border-color: var(--gcv-violet); color: var(--gcv-violet-dark); }
.gcv-wrap .wpcf7-list-item label:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(86, 61, 88, 0.16); }

/* Declaración / aceptación */
.gcv-wrap .wpcf7-acceptance .wpcf7-list-item label {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: var(--gcv-radius); border-color: var(--gcv-line);
  background: var(--gcv-beige-soft); font-size: 14px; line-height: 1.5; color: var(--gcv-body);
}
.gcv-wrap .wpcf7-acceptance .wpcf7-list-item input { margin-top: 3px; }
.gcv-wrap .wpcf7-acceptance .wpcf7-list-item label:has(input:checked) { background: var(--gcv-violet-soft); }

/* Subida del CV: zona para soltar el archivo */
.gcv-wrap .gcv-field-file input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; clip: rect(0 0 0 0); }
.gcv-wrap .gcv-dropzone {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  margin: 0; max-width: none; padding: 30px 20px;
  border: 2px dashed var(--gcv-line-strong); border-radius: 6px; background: var(--gcv-beige-soft);
  font-weight: 400; color: var(--gcv-body); cursor: pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
/* Los íconos van como imagen de fondo (el firewall del hosting rechaza <svg> dentro de la plantilla de CF7) */
.gcv-wrap .gcv-drop-icon {
  display: block; width: 44px; height: 44px; margin-bottom: 6px;
  background-repeat: no-repeat; background-size: contain; background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23563d58' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cpath d='M12 18v-6'/%3E%3Cpath d='m9.5 14.5 2.5-2.5 2.5 2.5'/%3E%3C/svg%3E");
}
.gcv-wrap .gcv-dropzone.has-file .gcv-drop-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d7a4c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cpath d='m9 14 2 2 4-4'/%3E%3C/svg%3E");
}
.gcv-wrap .gcv-success-check {
  display: block; width: 34px; height: 34px;
  background-repeat: no-repeat; background-size: contain; background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d7a4c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E");
}
.gcv-wrap .gcv-dropzone-chica { padding: 16px 14px; gap: 2px; }
.gcv-wrap .gcv-dropzone-chica .gcv-drop-icon { width: 28px; height: 28px; margin-bottom: 2px; }
.gcv-wrap .gcv-dropzone-chica .gcv-drop-text { font-size: 14px; }
.gcv-wrap .gcv-dropzone svg { width: 44px; height: 44px; color: var(--gcv-violet); margin-bottom: 6px; }
.gcv-wrap .gcv-dropzone strong { color: var(--gcv-violet); font-weight: 600; }
.gcv-wrap .gcv-drop-hint { font-size: 13px; color: var(--gcv-muted); }
.gcv-wrap .gcv-dropzone:hover, .gcv-wrap .gcv-dropzone.is-focus { border-color: var(--gcv-violet); }
.gcv-wrap .gcv-dropzone.is-focus { box-shadow: 0 0 0 3px rgba(86, 61, 88, 0.16); }
.gcv-wrap .gcv-dropzone.is-dragover { border-color: var(--gcv-violet); background: var(--gcv-violet-soft); }
.gcv-wrap .gcv-dropzone.has-file { border-style: solid; border-color: var(--gcv-ok); background: var(--gcv-ok-soft); }
.gcv-wrap .gcv-dropzone.has-file svg { color: var(--gcv-ok); }
.gcv-wrap .gcv-dropzone.has-file .gcv-drop-text, .gcv-wrap .gcv-dropzone.has-file .gcv-drop-hint { display: none; }
.gcv-wrap .gcv-drop-file { display: none; }
.gcv-wrap .gcv-dropzone.has-file .gcv-drop-file { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 12px; }
.gcv-wrap .gcv-drop-name { font-weight: 500; color: var(--gcv-ink); word-break: break-word; }
.gcv-wrap .gcv-drop-file small { color: var(--gcv-muted); font-size: 13px; }
.gcv-wrap .gcv-drop-change { color: var(--gcv-violet); text-decoration: underline; font-size: 13px; }

/* ---------- Errores y mensajes ---------- */
.gcv-wrap .gcv-error, .gcv-wrap .wpcf7-not-valid-tip {
  display: block; font-size: 13px; line-height: 1.4; color: var(--gcv-error); margin: 0; padding: 0; background: none; border: 0;
}
.gcv-wrap .gcv-field.is-invalid input.wpcf7-form-control:not([type="checkbox"]):not([type="radio"]),
.gcv-wrap .gcv-field.is-invalid select.wpcf7-form-control,
.gcv-wrap .gcv-field.is-invalid textarea.wpcf7-form-control,
.gcv-wrap input.wpcf7-not-valid:not([type="checkbox"]):not([type="radio"]),
.gcv-wrap select.wpcf7-not-valid,
.gcv-wrap textarea.wpcf7-not-valid { border-color: var(--gcv-error); }
.gcv-wrap .gcv-field.is-invalid .gcv-dropzone { border-color: var(--gcv-error); background: var(--gcv-error-soft); }
.gcv-wrap .gcv-field.is-invalid .wpcf7-list-item label { border-color: #d9a0a1; }

/* Aviso de requisitos no cumplidos, al final del cuestionario */
.gcv-wrap .gcv-requisitos[hidden] { display: none; }
.gcv-wrap .gcv-alerta {
  padding: 16px 18px; border: 1px solid #e2b9ba; border-left: 3px solid var(--gcv-error);
  border-radius: var(--gcv-radius); background: var(--gcv-error-soft);
}
.gcv-wrap .gcv-alerta-titulo {
  margin: 0 0 10px; font-family: Raleway, sans-serif; font-weight: 600; font-size: 16px;
  line-height: 1.4; color: var(--gcv-error);
}
.gcv-wrap .gcv-alerta-lista { margin: 0 0 12px; padding-left: 20px; list-style: disc; }
.gcv-wrap .gcv-alerta-lista li { margin: 0 0 8px; font-size: 14px; line-height: 1.55; color: var(--gcv-body); }
.gcv-wrap .gcv-alerta-lista li:last-child { margin-bottom: 0; }
.gcv-wrap .gcv-alerta-lista li::marker { color: var(--gcv-error); }
.gcv-wrap .gcv-alerta-lista b { color: var(--gcv-violet-dark); font-weight: 600; }
.gcv-wrap .gcv-alerta-pie { margin: 12px 0 0; font-size: 13px; line-height: 1.55; color: var(--gcv-muted); }

.gcv-wrap .wpcf7-response-output {
  margin: 0 28px 28px; padding: 14px 18px;
  border: 1px solid var(--gcv-line-strong); border-radius: var(--gcv-radius);
  background: var(--gcv-beige-soft); color: var(--gcv-body); font-size: 14px;
}
/* El mensaje de Contact Form 7 se esconde solo cuando nuestra pantalla de confirmación
   ya está en pantalla. Si el JavaScript no llegó a correr, queda como respaldo visible. */
.gcv-wrap form.init .wpcf7-response-output,
.gcv-wrap .gcv-form.is-sent ~ .wpcf7-response-output,
.gcv-wrap .wpcf7-response-output:empty { display: none; }
.gcv-wrap form.invalid .wpcf7-response-output, .gcv-wrap form.failed .wpcf7-response-output,
.gcv-wrap form.spam .wpcf7-response-output, .gcv-wrap form.aborted .wpcf7-response-output {
  border-color: var(--gcv-error); background: var(--gcv-error-soft); color: var(--gcv-error);
}
@media (max-width: 600px) { .gcv-wrap .wpcf7-response-output { margin: 0 18px 22px; } }

/* ---------- Navegación entre pasos ---------- */
.gcv-wrap .gcv-nav {
  display: flex; align-items: center; justify-content: flex-end; gap: 12px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--gcv-line);
}
.gcv-wrap .gcv-nav .gcv-nav-hint { margin-right: auto; font-size: 13px; color: var(--gcv-muted); }
.gcv-wrap .gcv-nav-step { display: none; }
.gcv-js .gcv-nav.gcv-nav-step { display: flex; }
.gcv-js .gcv-btn.gcv-nav-step { display: inline-flex; }

.gcv-wrap .gcv-btn, .gcv-wrap input.wpcf7-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; width: auto; margin: 0; padding: 0 26px;
  border: 1px solid transparent; border-radius: var(--gcv-radius);
  font-family: Roboto, Arial, sans-serif; font-weight: 600; font-size: 15px; line-height: 1;
  text-transform: none; letter-spacing: 0; cursor: pointer;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.gcv-wrap .gcv-btn-primary, .gcv-wrap input.wpcf7-submit { background: var(--gcv-violet); color: #fff; }
.gcv-wrap .gcv-btn-primary:hover, .gcv-wrap input.wpcf7-submit:hover { background: var(--gcv-violet-dark); color: #fff; }
.gcv-wrap .gcv-btn-ghost { background: transparent; color: var(--gcv-violet); border-color: var(--gcv-line-strong); }
.gcv-wrap .gcv-btn-ghost:hover { background: var(--gcv-beige-soft); }
.gcv-wrap .gcv-btn:focus-visible, .gcv-wrap input.wpcf7-submit:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(86, 61, 88, 0.28); }
.gcv-wrap input.wpcf7-submit:disabled { opacity: .6; cursor: not-allowed; }
/* La aclaración de por qué el botón está apagado desaparece al tildar la conformidad. */
.gcv-wrap form:has(#gcv-priv:checked) .gcv-nav-hint-priv { display: none; }
.gcv-wrap .wpcf7-spinner { margin: 0 0 0 4px; }
@media (max-width: 480px) {
  .gcv-wrap .gcv-nav { flex-direction: column-reverse; align-items: stretch; }
  .gcv-wrap .gcv-nav .gcv-nav-hint { margin: 0; text-align: center; }
  .gcv-wrap .gcv-btn, .gcv-wrap input.wpcf7-submit { width: 100%; }
}

/* ---------- Enlace "Trabajar con nosotros" en la página de inicio ---------- */
.gcv-trabaja { margin: 36px 0 0; padding: 28px 24px; text-align: center; font-family: Roboto, Arial, sans-serif; }
.gcv-trabaja .gcv-trabaja-link {
  display: inline-block; padding: 13px 30px; border: 2px solid #563d58; border-radius: 5px;
  color: #563d58; background: transparent; font-weight: 600; font-size: 15px; text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.gcv-trabaja .gcv-trabaja-link:hover, .gcv-trabaja .gcv-trabaja-link:focus { background: #563d58; color: #fff; text-decoration: none; }

/* Campo trampa para bots: fuera de pantalla, nunca visible ni enfocable para una persona */
.gcv-wrap .gcv-hp { position: absolute !important; left: -10000px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* ---------- Confirmación ---------- */
.gcv-wrap .gcv-success { padding: 52px 32px 56px; text-align: center; outline: none; }
.gcv-wrap .gcv-success-icon {
  width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; background: var(--gcv-ok-soft); color: var(--gcv-ok);
}
.gcv-wrap .gcv-success-icon svg { width: 34px; height: 34px; }
.gcv-wrap .gcv-success h2 {
  font-family: Raleway, sans-serif; font-size: 26px; font-weight: 600; line-height: 1.25;
  color: var(--gcv-violet-dark); margin: 0 0 12px; text-wrap: balance;
}
.gcv-wrap .gcv-success p { max-width: 54ch; margin: 0 auto 10px; color: var(--gcv-body); font-size: 15px; }
.gcv-wrap .gcv-success .gcv-success-small { font-size: 13px; color: var(--gcv-muted); }
.gcv-wrap .gcv-success-ref {
  display: inline-block; margin: 14px 0 0; padding: 8px 14px;
  border: 1px solid var(--gcv-line); border-radius: var(--gcv-radius); background: var(--gcv-beige-soft);
  font-size: 13px; color: var(--gcv-violet-dark); font-variant-numeric: tabular-nums;
}
.gcv-wrap .gcv-success-ref[hidden] { display: none; }

@media (prefers-reduced-motion: reduce) {
  .gcv-wrap *, .gcv-wrap *::before, .gcv-wrap *::after { transition: none !important; }
}
