/**
 * Archivo: contacto.css
 * Tipo: hoja de estilos
 * Pagina relacionada: Vistas/contacto.html
 * Script relacionado: Recursos/Scripts/contacto-vue.js
 * Funcion general: define hero, formulario y bloques visuales de contacto.
 */
/* Seccion: Contenedor general de contacto y formulario. */
.contact-page {
  padding-top: var(--header-height);
  background: #f5f4f2;
}
body.hero-page .contact-page {
  padding-top: 0;
}
/* Seccion: Hero de contacto con imagen de fondo. */
.contact-hero {
  position: relative;
  min-height: 40vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(10, 15, 35, 0.52), rgba(10, 15, 35, 0.46)),
  url("../../Imagenes/Recuros de imagenes/Izaje.jpeg") center/cover no-repeat;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 30, 0.2), rgba(8, 12, 30, 0.35));
}
.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--header-height) + 10px) 12px 26px;
}
.contact-eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(219, 229, 255, 0.95);
}
.contact-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.2px;
}
.contact-hero p {
  margin: 12px auto 0;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
}
.contact-section {
  padding: 64px 0 100px;
}
/* Seccion: Distribucion de panel informativo y formulario. */
.contact-layout {
  width: min(820px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}
.contact-side {
  display: none;
}
.contact-side h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}
.contact-side p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
}
.contact-side-items {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
/* Seccion: Chips de datos de atencion y contacto rapido. */
.contact-chip {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}
.contact-chip .material-symbols-outlined {
  font-size: 18px;
  color: #24389a;
}
/* Seccion: Tarjeta del formulario de cotizacion/contacto. */
.contact-form {
  width: 100%;
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
}
.field.is-hidden {
  display: none;
}
.field span {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  color: #0f172a;
  background: #ffffff;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #1f2937;
  box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.12);
}
.field-message {
  margin-top: 16px;
}
.field-message-only {
  margin-top: 20px;
}
.field-message-only textarea {
  min-height: 180px;
  resize: vertical;
}
.contact-quote-builder {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfcff 0%, #f7f8fb 100%);
}
.contact-quote-builder-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.contact-quote-builder-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #24389a;
}
.contact-quote-builder h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  color: #111827;
}
.contact-quote-empty {
  margin-top: 14px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 12px;
  padding: 14px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.55;
}
.contact-quote-list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.contact-quote-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}
.contact-quote-thumb {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}
.contact-quote-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.contact-quote-copy {
  min-width: 0;
}
.contact-quote-copy strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
  color: #111827;
}
.contact-quote-caption {
  margin: 6px 0 0;
  font-size: 13px;
  color: #6b7280;
}
.contact-quote-specs {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}
.contact-quote-spec {
  display: grid;
  gap: 2px;
}
.contact-quote-spec-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.contact-quote-spec-value {
  font-size: 13px;
  line-height: 1.4;
  color: #0f172a;
}
.contact-quote-controls {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.contact-quote-control {
  display: grid;
  gap: 6px;
}
.contact-quote-control span {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}
.contact-quote-control input,
.contact-quote-control select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: #ffffff;
  color: #0f172a;
}
.contact-quote-control input[readonly] {
  background: #f8fafc;
  color: #475569;
}
.contact-quote-control--multi {
  margin: 0;
  min-width: 0;
}
.contact-multi-combobox {
  position: relative;
}
.contact-multi-trigger {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  text-align: left;
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
}
.contact-multi-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
}
.contact-multi-panel[hidden] {
  display: none !important;
}
.contact-multi-filter {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: #ffffff;
  color: #0f172a;
}
.contact-multi-options {
  display: grid;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
}
.contact-multi-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  background: #f8fafc;
  color: #0f172a;
}
.contact-multi-option input {
  width: 16px;
  height: 16px;
  margin: 0;
}
.contact-multi-option span {
  font-size: 14px;
  font-weight: 600;
  color: inherit;
}
.contact-quote-remove {
  border: 1px solid rgba(185, 28, 28, 0.16);
  background: rgba(254, 242, 242, 0.95);
  color: #b91c1c;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.contact-items-builder {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfcff 0%, #f7f8fb 100%);
}
.contact-items-builder-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.contact-items-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #24389a;
}
.contact-items-builder h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  color: #111827;
}
.contact-items-copy {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 14px;
}
.add-item-btn {
  border: 1px solid rgba(36, 56, 154, 0.2);
  background: #24389a;
  color: #ffffff;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(36, 56, 154, 0.18);
}
.contact-items-empty {
  margin-top: 14px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 12px;
  padding: 14px;
  color: #6b7280;
  font-size: 14px;
}
.contact-items-list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.contact-item-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}
.contact-item-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
  color: #111827;
}
.contact-item-caption {
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
}
.contact-item-meta {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-item-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(36, 56, 154, 0.08);
  color: #24389a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.field-help {
  margin: 6px 0 0;
  font-size: 12px;
  color: #6b7280;
}
.remove-item-btn {
  border: 1px solid rgba(185, 28, 28, 0.16);
  background: rgba(254, 242, 242, 0.95);
  color: #b91c1c;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.optional-hint {
  margin: 12px 0 8px;
  color: #4b5563;
  font-size: 14px;
}
.suggestion-btn {
  border: 1px dashed rgba(15, 23, 42, 0.35);
  background: rgba(15, 23, 42, 0.04);
  color: #1f2937;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}
.contact-location-optin {
  display: grid;
  gap: 14px;
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.98));
}
.contact-location-optin-copy h3 {
  margin: 0;
  font-size: 17px;
  color: #1f2937;
}
.contact-location-optin-copy p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
}
.contact-location-optin-actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}
.contact-location-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-location-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  background: #ffffff;
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.contact-location-radio input {
  width: 16px;
  height: 16px;
  margin: 0;
}
.contact-location-radio:has(input:checked) {
  border-color: rgba(31, 41, 55, 0.28);
  background: #f8fafc;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
.contact-location-status {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
}
.contact-location-status.is-muted {
  color: #64748b;
}
.contact-location-status.is-success {
  color: #166534;
}
.form-actions-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
/* Seccion: Boton principal de envio del formulario. */
.submit-btn {
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, #111827 0%, #1f2937 100%);
  color: #ffffff;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  min-width: 180px;
  width: auto;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.submit-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.26);
}
.submit-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: #4b5563;
}
.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}
.form-status.is-error {
  color: #b91c1c;
}
.form-status.is-success {
  color: #166534;
}
.contact-modal-open {
  overflow: hidden;
}
.contact-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  padding: 20px;
}
.contact-confirm-modal[hidden] {
  display: none !important;
}
.contact-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}
.contact-confirm-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
}
.contact-confirm-dialog h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  color: #111827;
}
.contact-confirm-dialog p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}
.contact-confirm-actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.contact-confirm-cancel,
.contact-confirm-accept {
  min-height: 44px;
  border-radius: 12px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.contact-confirm-cancel {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #ffffff;
  color: #111827;
}
.contact-confirm-accept {
  border: none;
  background: linear-gradient(90deg, #111827 0%, #1f2937 100%);
  color: #ffffff;
}
.submit-btn[disabled],
.suggestion-btn[disabled],
.add-item-btn[disabled] {
  opacity: 0.7;
  cursor: wait;
}
/* Seccion: Ajustes responsive de la vista contacto. */
@media (max-width: 760px) {
  .contact-hero {
    min-height: 34vh;
  }
  .contact-hero h1 {
    font-size: clamp(30px, 10vw, 44px);
  }
  .contact-hero p {
    font-size: 15px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-items-builder {
    padding: 16px;
  }
  .contact-items-builder-head,
  .contact-item-card {
    grid-template-columns: 1fr;
  }
  .form-actions-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-location-optin {
    padding: 14px;
  }
  .submit-btn,
  .suggestion-btn,
  .add-item-btn {
    width: 100%;
  }
  .field-message-only textarea {
    min-height: 160px;
  }
  .contact-quote-item {
    grid-template-columns: 1fr;
  }
  .contact-quote-thumb {
    width: 100%;
    max-width: 120px;
    height: 120px;
  }
  .contact-quote-controls {
    grid-template-columns: 1fr;
  }
}
/* Seccion: Variantes de la vista en modo oscuro. */
body.dark .contact-page {
  background: #0b0f1d;
}
body.dark .contact-hero {
  background:
    linear-gradient(180deg, rgba(6, 10, 24, 0.72), rgba(6, 10, 24, 0.66)),
  url("../../Imagenes/Recuros de imagenes/Izaje.jpeg") center/cover no-repeat;
  border-bottom-color: rgba(157, 179, 255, 0.14);
}
body.dark .contact-hero-overlay {
  background: linear-gradient(180deg, rgba(157, 179, 255, 0.06), rgba(8, 12, 28, 0.2));
}
body.dark .contact-form {
  background: rgba(17, 24, 39, 0.9);
  border-color: rgba(157, 179, 255, 0.32);
}
body.dark .contact-side {
  background: linear-gradient(170deg, #111827 0%, #1f2937 58%, #111827 100%);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
}
body.dark .contact-side h2 {
  color: #f8fafc;
}
body.dark .contact-side p {
  color: #cbd5e1;
}
body.dark.contact-view .site-header .main-nav a,
body.dark.contact-view .site-header .nav-dropdown-toggle,
body.dark.contact-view .site-header .theme-toggle,
body.dark.contact-view .site-header .menu-toggle,
body.dark.contact-view .site-header.scrolled .main-nav a,
body.dark.contact-view .site-header.scrolled .nav-dropdown-toggle,
body.dark.contact-view .site-header.scrolled .theme-toggle,
body.dark.contact-view .site-header.scrolled .menu-toggle {
  color: #ffffff;
}
body.dark .contact-chip {
  background: rgba(157, 179, 255, 0.12);
  border-color: rgba(157, 179, 255, 0.24);
  color: #e5e7eb;
}
body.dark .contact-chip .material-symbols-outlined {
  color: #ffffff;
}
body.dark .field span {
  color: #dbe5ff;
}
body.dark .field input,
body.dark .field select,
body.dark .field textarea {
  background: #0f172a;
  color: #e5e7eb;
  border-color: rgba(157, 179, 255, 0.34);
}
body.dark .optional-hint {
  color: #c7d2fe;
}
body.dark .contact-items-builder,
body.dark .contact-item-card {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(157, 179, 255, 0.22);
}
body.dark .contact-quote-builder,
body.dark .contact-quote-item {
  background: linear-gradient(180deg, rgba(16, 17, 19, 0.98) 0%, rgba(12, 13, 15, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.08);
}
body.dark .contact-quote-builder-kicker {
  color: #a1a1aa;
}
body.dark .contact-quote-builder h3,
body.dark .contact-quote-copy strong {
  color: #f5f5f5;
}
body.dark .contact-quote-empty,
body.dark .contact-quote-caption,
body.dark .contact-quote-control span,
body.dark .contact-quote-spec-label {
  color: #b4b8c0;
}
body.dark .contact-quote-spec-value {
  color: #f3f4f6;
}
body.dark .contact-quote-control input,
body.dark .contact-quote-control select {
  background: #111315;
  color: #f3f4f6;
  border-color: rgba(255, 255, 255, 0.1);
}
body.dark .contact-quote-control input[readonly] {
  background: #17191c;
}
body.dark .contact-multi-trigger,
body.dark .contact-multi-filter,
body.dark .contact-multi-panel {
  background: #111315;
  color: #f3f4f6;
  border-color: rgba(255, 255, 255, 0.1);
}
body.dark .contact-multi-option {
  background: #17191c;
  color: #f3f4f6;
  border-color: rgba(255, 255, 255, 0.08);
}
body.dark .contact-quote-thumb {
  background: #17191c;
  border-color: rgba(255, 255, 255, 0.08);
}
body.dark .contact-items-builder h3,
body.dark .contact-item-card strong,
body.dark .form-status {
  color: #dbe5ff;
}
body.dark .contact-items-copy,
body.dark .contact-items-empty,
body.dark .contact-item-caption,
body.dark .field-help {
  color: #cbd5e1;
}
body.dark .contact-item-pill {
  background: rgba(157, 179, 255, 0.14);
  color: #dbe5ff;
}
body.dark .suggestion-btn {
  border-color: rgba(157, 179, 255, 0.45);
  background: rgba(157, 179, 255, 0.14);
  color: #dbe5ff;
}
body.dark .contact-location-optin {
  border-color: rgba(155, 166, 178, 0.18);
  background: linear-gradient(180deg, #24272b 0%, #1c1f23 100%);
}
body.dark .contact-location-optin-copy h3 {
  color: #ece6d8;
}
body.dark .contact-location-optin-copy p,
body.dark .contact-location-status,
body.dark .contact-location-status.is-muted {
  color: #cbd5e1;
}
body.dark .contact-location-status.is-success {
  color: #b7efc5;
}
body.dark .contact-location-radio {
  background: #111315;
  border-color: rgba(255, 255, 255, 0.1);
  color: #f3f4f6;
}
body.dark .contact-location-radio:has(input:checked) {
  background: #17191c;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}
body.dark .submit-btn {
  background: linear-gradient(90deg, #b8c8ff 0%, #93aaf7 100%);
  color: #0b1220;
  box-shadow: 0 10px 24px rgba(8, 12, 28, 0.4);
}
body.dark .submit-note {
  color: #cbd5e1;
}
body.dark .contact-confirm-dialog {
  background: linear-gradient(180deg, rgba(17, 19, 21, 0.98) 0%, rgba(12, 13, 15, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.08);
}
body.dark .contact-confirm-dialog h2 {
  color: #f5f5f5;
}
body.dark .contact-confirm-dialog p {
  color: #b4b8c0;
}
body.dark .contact-confirm-cancel {
  background: #17191c;
  color: #f3f4f6;
  border-color: rgba(255, 255, 255, 0.1);
}
body.dark .contact-confirm-accept {
  background: linear-gradient(180deg, #4a4f56 0%, #34383e 100%);
  color: #f4efe6;
}











/* Override final: dark mode industrial unificado. */
body.dark .contact-page {
  background: linear-gradient(180deg, #17191c 0%, #121416 100%);
}
body.dark .contact-hero {
  background: linear-gradient(180deg, #2a2e33 0%, #1f2328 100%);
}
body.dark .contact-hero-overlay {
  background: linear-gradient(180deg, rgba(20,22,24,0.34), rgba(20,22,24,0.58));
}
body.dark .contact-form,
body.dark .contact-side {
  background: linear-gradient(180deg, #24272b 0%, #1c1f23 100%);
  border-color: rgba(155, 166, 178, 0.18);
  box-shadow: 0 18px 38px rgba(0,0,0,0.24);
}
body.dark .contact-side h2,
body.dark .contact-side p,
body.dark .contact-chip,
body.dark .field span,
body.dark .optional-hint,
body.dark .submit-note {
  color: #e7e0d2;
}
body.dark .field input,
body.dark .field select,
body.dark .field textarea,
body.dark .suggestion-btn,
body.dark .submit-btn,
body.dark .contact-chip {
  background: #2a2e33;
  border-color: rgba(155, 166, 178, 0.18);
  color: #ece6d8;
}

/* Override final: dark mode en negro/grafito, sin acentos azules. */
body.dark {
  --dark-ink: #0f1012;
  --dark-panel: #1a1c1f;
  --dark-panel-2: #23262a;
  --dark-border: rgba(180, 186, 194, 0.16);
  --dark-text: #ece6db;
  --dark-muted: #c5bfb3;
  --dark-accent: #7d848d;
}

body.dark .site-header,
body.dark .site-header.scrolled,
body.dark .nav-dropdown-menu,
body.dark .site-header.scrolled .nav-dropdown-menu,
body.dark .mobile-nav,
body.dark .site-header.scrolled .mobile-nav,
body.dark .site-footer,
body.dark .product-detail-card,
body.dark .product-meta-group,
body.dark .product-detail-copy.product-detail-copy-top,
body.dark #detalleTablaWrap,
body.dark .catalogo-head,
body.dark .catalog-card,
body.dark .catalog-modal-dialog,
body.dark .contact-form,
body.dark .contact-side,
body.dark .timeline-step,
body.dark .timeline-panel,
body.dark .projects-collage-shell,
body.dark .project-modal-card,
body.dark .service-box,
body.dark .service-subtopic,
body.dark .izajes-d2-block,
body.dark .sling-builder-card,
body.dark .sling-builder-preview-wrap,
body.dark .sling-builder-form,
body.dark .sling-accessories,
body.dark .d2-detail-card,
body.dark .d2-detail-extra,
body.dark .d2-tech-summary,
body.dark .d2-rigging-modes,
body.dark .d2-capacity-table-wrap,
body.dark .d2-builder,
body.dark .d2-builder-preview,
body.dark .d2-builder-form,
body.dark .d2-builder-extended,
body.dark .d2-simple-quote {
  background: linear-gradient(180deg, var(--dark-panel-2) 0%, var(--dark-panel) 100%) !important;
  border-color: var(--dark-border) !important;
}

body.dark .main-nav a,
body.dark .nav-dropdown-toggle,
body.dark .menu-toggle,
body.dark .theme-toggle,
body.dark .site-footer a,
body.dark .site-footer p,
body.dark .site-footer h3,
body.dark .site-footer h4,
body.dark .site-footer .footer-toggle,
body.dark .site-footer .material-symbols-outlined,
body.dark .catalogo-head h1,
body.dark .catalogo-head p,
body.dark .catalog-card-head h3,
body.dark .catalog-card-head p,
body.dark .catalogo-page-readout,
body.dark .catalogo-link,
body.dark .catalog-modal-head h2,
body.dark .catalog-modal-head p,
body.dark .catalogo-picker label,
body.dark .contact-side h2,
body.dark .contact-side p,
body.dark .contact-chip,
body.dark .field span,
body.dark .optional-hint,
body.dark .submit-note,
body.dark .timeline-head h2,
body.dark .timeline-panel h3,
body.dark .projects-head h2,
body.dark .project-modal-card h3,
body.dark .timeline-projects-panel .projects-head h3,
body.dark .timeline-head p,
body.dark .timeline-panel p,
body.dark .projects-head p,
body.dark .project-modal-card p,
body.dark .projects-pill,
body.dark .services-eyebrow,
body.dark .services-head h2,
body.dark .services-intro,
body.dark .service-box h3,
body.dark .service-box p,
body.dark .cables-board-head h2,
body.dark .cables-board-head p,
body.dark .cables-status,
body.dark .product-detail-content h2,
body.dark .product-detail-copy.product-detail-copy-top p,
body.dark .product-tag-value,
body.dark .product-meta-group-title,
body.dark .d2-tech-summary h3,
body.dark .d2-rigging-modes h3,
body.dark .d2-tech-chip-label,
body.dark .d2-tech-chip-value,
body.dark .d2-tech-paragraph,
body.dark .d2-rigging-subtitle,
body.dark .d2-rigging-content h4,
body.dark .d2-rigging-content p,
body.dark .d2-builder h3,
body.dark .d2-builder-subtitle,
body.dark .d2-builder-extended h4,
body.dark .d2-builder-extended p,
body.dark #d2ModelName,
body.dark #d2ModelMeasure,
body.dark .d2-simple-quote h3,
body.dark .d2-simple-quote-subtitle,
body.dark .d2-simple-quote-form label span {
  color: var(--dark-text) !important;
}

body.dark .product-tag,
body.dark .cables-filter-btn,
body.dark .service-quote-btn,
body.dark .service-subtoggle,
body.dark .d2-rigging-tab,
body.dark .d2-capacity-figure-tab,
body.dark .d2-model-btn,
body.dark .catalogo-picker,
body.dark .catalog-card-preview,
body.dark .catalog-card-loading,
body.dark .field input,
body.dark .field select,
body.dark .field textarea,
body.dark .suggestion-btn,
body.dark .submit-btn,
body.dark .contact-chip,
body.dark .sling-field input,
body.dark .sling-field select,
body.dark .sling-btn-secondary,
body.dark .d2-builder-fields input,
body.dark .d2-builder-fields select,
body.dark .d2-builder-extra-fields input,
body.dark .d2-builder-extra-fields select,
body.dark .d2-builder-extra-fields textarea,
body.dark .d2-builder-usage textarea,
body.dark .d2-builder-usage input,
body.dark .d2-simple-quote-form input,
body.dark .d2-simple-quote-form textarea,
body.dark .product-detail-action-secondary {
  background: #2a2d31 !important;
  border-color: var(--dark-border) !important;
  color: var(--dark-text) !important;
}

body.dark .cables-filter-btn.is-active,
body.dark .service-quote-btn:hover,
body.dark .d2-rigging-tab.is-active,
body.dark .d2-capacity-figure-tab.is-active,
body.dark .d2-model-btn.is-active,
body.dark .product-detail-action-primary,
body.dark .submit-btn {
  background: linear-gradient(180deg, #4a4f56 0%, #34383e 100%) !important;
  border-color: rgba(211, 216, 223, 0.16) !important;
  color: #f4efe6 !important;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18) !important;
}

body.dark.cables-page #detalle,
body.dark .contact-page,
body.dark .about-page,
body.dark .about-section,
body.dark .services-pillar-section,
body.dark .izajes-d2-page,
body.dark .d2-detail-page,
body.dark.catalogo-page,
body.dark .product-page,
body.dark .product-section,
body.dark .experience,
body.dark .product-strip,
body.dark .product-card {
  background: linear-gradient(180deg, #151719 0%, #101113 100%) !important;
}

body.dark.cables-page .cables-board,
body.dark .product-detail-card,
body.dark #detalleTablaWrap,
body.dark .d2-capacity-table-wrap {
  box-shadow: 0 18px 34px rgba(0,0,0,0.22) !important;
}

body.dark.cables-page #cablesProducts .product-card-tile,
body.dark .product-card-tile,
body.dark .catalog-card,
body.dark .counter-card,
body.dark .safety-card {
  background: linear-gradient(180deg, #25282d 0%, #1b1e22 100%) !important;
  border-color: var(--dark-border) !important;
  box-shadow: 0 18px 32px rgba(0,0,0,0.22) !important;
}

body.dark .product-detail-table thead th,
body.dark .d2-capacity-table thead th,
body.dark .measure-table th {
  background: #26292e !important;
  color: var(--dark-text) !important;
  border-color: rgba(201, 208, 216, 0.18) !important;
}

body.dark .product-detail-table tbody td,
body.dark .d2-capacity-table tbody td,
body.dark .measure-table td {
  background: #1c1f23 !important;
  color: var(--dark-text) !important;
  border-color: rgba(201, 208, 216, 0.10) !important;
}
