/* ============================================================
   TECHTRAFO — Industrial Premium Design System
   ============================================================ */

:root {
  /* Brand palette */
  --navy-950: #06121F;
  --navy-900: #0A1B2E;
  --navy-800: #102A45;
  --navy-700: #163659;
  --blue-600: #1E5BD6;
  --blue-500: #2C70F0;
  --blue-400: #4A8BFF;
  --cyan-400: #5CC4F0;

  /* Neutrals */
  --white: #FFFFFF;
  --paper: #F6F7F9;
  --bone: #ECEEF2;
  --steel-200: #D7DCE3;
  --steel-300: #B6BFCB;
  --steel-400: #8893A3;
  --steel-500: #5E6877;
  --steel-700: #2F3742;
  --ink: #0E1620;

  /* Accent (driven by tweaks) */
  --accent: #F5C518;          /* safety yellow */
  --accent-ink: #1A1300;

  /* Layout */
  --maxw: 1320px;
  --pad-x: clamp(20px, 4vw, 64px);
  --section-y: clamp(72px, 9vw, 140px);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  /* Type */
  --font-display: "Sora", "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
}

/* density tweak */
[data-density="compact"] {
  --section-y: clamp(56px, 7vw, 100px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
.h-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.h-eyebrow::before {
  content: "";
  width: 28px; height: 1px; background: currentColor;
  display: inline-block;
}
.mono { font-family: var(--font-mono); }

.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 6px 22px -10px rgba(30, 91, 214, 0.65);
}
.btn-primary:hover { background: var(--blue-500); }

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-accent:hover { filter: brightness(1.05); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

.btn-dark {
  background: var(--navy-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-800); }

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--steel-300);
}
.btn-outline:hover { border-color: var(--navy-900); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bone);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 36px; height: 36px;
  background: var(--navy-900);
  color: var(--white);
  display: grid; place-items: center;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  position: relative;
}
.brand-mark::after{
  content:"";
  position:absolute; inset:auto 4px 4px auto;
  width:6px; height:6px; background: var(--accent); border-radius:1px;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 18px;
  color: var(--navy-900);
}
.nav-links { display: flex; gap: 28px; }
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--steel-700);
  transition: color .15s ease;
  position: relative;
}
.nav-link:hover { color: var(--navy-900); }
.nav-link.is-active { color: var(--blue-600); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--steel-700);
}
.nav-phone .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #28C76F;
  box-shadow: 0 0 0 3px rgba(40, 199, 111, 0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(40,199,111,0.18); }
  50% { box-shadow: 0 0 0 6px rgba(40,199,111,0); }
}

@media (max-width: 960px) {
  .nav-links, .nav-phone { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-photo {
  position: absolute; inset: 0;
  background-image: url("assets/photo-crane.png");
  background-size: cover;
  background-position: center 40%;
  filter: saturate(0.85) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 18, 31, 0.96) 0%, rgba(6, 18, 31, 0.78) 38%, rgba(10, 27, 46, 0.45) 78%, rgba(10, 27, 46, 0.7) 100%),
    radial-gradient(60% 80% at 80% 50%, rgba(30, 91, 214, 0.25), transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.15));
  pointer-events: none;
}
[data-blueprint="off"] .hero-grid { display:none; }

.hero-inner {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-400);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--cyan-400);
}
.hero h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  font-weight: 600;
  margin: 22px 0 24px;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  background-image: linear-gradient(transparent 62%, rgba(245,197,24,0.18) 62%);
}
.hero-sub {
  max-width: 580px;
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 36px;
}

.hero-side {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 28px;
  display: flex; flex-direction: column; gap: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.hero-side .row {
  display: flex; justify-content: space-between; gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.hero-side .row:last-child { border-bottom: 0; }
.hero-side .label { color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.16em; font-size: 10.5px; }
.hero-side .val { color: var(--white); font-weight: 500; }

.hero-marquee {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.25);
  overflow: hidden;
}
.hero-marquee-track {
  display: flex; gap: 56px;
  padding: 14px 0;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-marquee-track span { display: inline-flex; align-items: center; gap: 14px; }
.hero-marquee-track span::after {
  content: "◆"; color: var(--accent); font-size: 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* corner brackets */
.bracket {
  position: absolute; width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.4);
}
.bracket.tl { top: 24px; left: 24px; border-right: 0; border-bottom: 0; }
.bracket.tr { top: 24px; right: 24px; border-left: 0; border-bottom: 0; }
.bracket.bl { bottom: 24px; left: 24px; border-right: 0; border-top: 0; }
.bracket.br { bottom: 24px; right: 24px; border-left: 0; border-top: 0; }
[data-blueprint="off"] .bracket { display:none; }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--bone);
}
.trust-inner {
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
@media (max-width: 1100px) { .trust-inner { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px) { .trust-inner { grid-template-columns: repeat(2,1fr); } }

.trust-item {
  display: flex; flex-direction: column; gap: 8px;
  padding: 18px 22px;
  border-right: 1px solid var(--bone);
  position: relative;
}
.trust-item:last-child { border-right: 0; }
.trust-item .icon {
  width: 28px; height: 28px;
  color: var(--blue-600);
}
.trust-item .label {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-900);
  line-height: 1.3;
}
.trust-item .meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--steel-500);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width:900px) { .section-head { grid-template-columns: 1fr; } }
.section-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  letter-spacing: -0.025em;
}
.section-head p {
  color: var(--steel-500);
  font-size: 16px;
  max-width: 480px;
  margin: 0;
  text-wrap: pretty;
}

/* ---------- Servicios ---------- */
.servicios { padding: var(--section-y) 0; background: var(--white); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bone);
  border: 1px solid var(--bone);
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 260px;
  position: relative;
  transition: background .25s ease, transform .25s ease;
  cursor: pointer;
  overflow: hidden;
}
.svc-card:hover { background: var(--navy-900); color: var(--white); }
.svc-card:hover .svc-num, .svc-card:hover .svc-desc { color: rgba(255,255,255,0.6); }
.svc-card:hover .svc-arrow { background: var(--accent); color: var(--accent-ink); transform: rotate(-45deg); }
.svc-card:hover .svc-icon { color: var(--accent); }
.svc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--steel-400);
  transition: color .25s ease;
}
.svc-icon {
  width: 40px; height: 40px;
  color: var(--blue-600);
  transition: color .25s ease;
}
.svc-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0;
  letter-spacing: -0.01em;
}
.svc-desc {
  font-size: 13.5px;
  color: var(--steel-500);
  line-height: 1.55;
  margin: 0;
  transition: color .25s ease;
}
.svc-arrow {
  position: absolute; right: 22px; bottom: 22px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--bone);
  color: var(--navy-900);
  display: grid; place-items: center;
  transition: all .25s ease;
}

/* ---------- Proceso ---------- */
.proceso {
  padding: var(--section-y) 0;
  background: var(--paper);
  position: relative;
}
.proceso-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .proceso-track { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .proceso-track { grid-template-columns: repeat(2, 1fr); } }

.proceso-step {
  position: relative;
  padding-top: 56px;
  cursor: pointer;
}
.proceso-step::before {
  content: "";
  position: absolute;
  top: 26px; left: 0; right: 0;
  height: 1px; background: var(--steel-200);
}
.proceso-step::after {
  content: "";
  position: absolute;
  top: 22px; left: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--steel-300);
  transition: all .2s ease;
}
.proceso-step.active::after,
.proceso-step:hover::after {
  background: var(--blue-600);
  border-color: var(--blue-600);
  box-shadow: 0 0 0 6px rgba(30,91,214,0.12);
}
.proceso-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel-500);
  letter-spacing: 0.16em;
  display: block;
  margin-bottom: 6px;
}
.proceso-step h4 {
  font-size: 15px;
  letter-spacing: -0.005em;
  margin: 0 0 6px;
  color: var(--navy-900);
}
.proceso-step p {
  font-size: 12.5px;
  color: var(--steel-500);
  margin: 0;
  line-height: 1.45;
}

/* ---------- Capacidad (dashboard) ---------- */
.capacidad {
  padding: var(--section-y) 0;
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.capacidad::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
[data-blueprint="off"] .capacidad::before { display:none; }
.capacidad .section-head h2 { color: var(--white); }
.capacidad .section-head p { color: rgba(255,255,255,0.55); }
.capacidad .h-eyebrow { color: var(--cyan-400); }

.dashboard {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  position: relative;
}
@media (max-width: 1000px) { .dashboard { grid-template-columns: 1fr; } }

.panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
}
.panel h3 {
  font-size: 18px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.panel .panel-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.panel-grid { display: grid; gap: 12px; }

.area-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.area-row:last-child { border-bottom: 0; }
.area-row .idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.area-row .name { font-size: 14.5px; }
.area-row .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(30,91,214,0.18);
  color: var(--blue-400);
  letter-spacing: 0.1em;
}

.flow-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.flow-row:last-child { border-bottom: 0; }
.flow-label { display: flex; flex-direction: column; gap: 4px; }
.flow-label .a { font-size: 14.5px; font-weight: 500; }
.flow-label .b { font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,0.4); letter-spacing: 0.14em; text-transform: uppercase; }
.flow-bar {
  width: 160px; height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.flow-bar > i {
  position: absolute; inset: 0; right: auto;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  border-radius: 4px;
}
.flow-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  text-align: right;
  min-width: 110px;
}
.flow-num small {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
  display:block;
  font-weight: 400;
  letter-spacing: 0.14em;
}

/* ---------- Productos ---------- */
.productos { padding: var(--section-y) 0; background: var(--white); }
.prod-tabs {
  display: flex; gap: 6px; margin-bottom: 28px;
  flex-wrap: wrap;
}
.prod-tab {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--bone);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  color: var(--steel-700);
  transition: all .2s ease;
}
.prod-tab.active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}
.prod-tab:hover:not(.active) { border-color: var(--navy-900); }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .prod-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .prod-grid { grid-template-columns: 1fr; } }

.prod-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
}
.prod-card:hover {
  border-color: var(--steel-200);
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -28px rgba(10,27,46,0.4);
}
.prod-img {
  height: 240px;
  background: linear-gradient(180deg, var(--white), var(--paper));
  display: grid; place-items: center;
  border-bottom: 1px solid var(--bone);
  position: relative;
}
.prod-img .placeholder {
  width: 70%; height: 70%;
  background:
    repeating-linear-gradient(135deg, var(--bone) 0 8px, transparent 8px 16px);
  border: 1px dashed var(--steel-300);
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel-400);
  text-align: center;
  padding: 8px;
}
.prod-img .tick {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--steel-400);
  letter-spacing: 0.12em;
}
.prod-img .corner {
  position: absolute; bottom: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--steel-400);
  letter-spacing: 0.12em;
}
.prod-body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column; gap: 8px;
}
.prod-body h4 { font-size: 17px; margin: 0; letter-spacing: -0.01em; }
.prod-body p { color: var(--steel-500); font-size: 13px; margin: 0; }
.prod-spec {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 10px;
}
.prod-spec span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 4px 9px;
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: 4px;
  color: var(--steel-700);
  letter-spacing: 0.08em;
}

/* ---------- Garantía ---------- */
.garantia {
  padding: var(--section-y) 0;
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.garantia .ribbon {
  position: absolute;
  inset: auto -10% -60% auto;
  width: 1200px; height: 1200px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(30, 91, 214, 0.3), transparent 70%);
  pointer-events: none;
}
.garantia-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) { .garantia-inner { grid-template-columns: 1fr; } }
.garantia h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  margin-top: 22px;
  margin-bottom: 24px;
}
.garantia p.lead {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
}
.garantia-list {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid; gap: 14px;
}
.garantia-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14.5px;
}
.garantia-list li:last-child { border-bottom: 0; }
.garantia-list .check {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(245,197,24,0.12);
  color: var(--accent);
  display: grid; place-items: center;
  margin-top: 1px;
}

.seal {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 460px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.12);
  padding: 36px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.seal-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(80px, 12vw, 140px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}
.seal-num sup {
  font-size: 0.32em;
  vertical-align: top;
  color: var(--white);
  margin-left: 4px;
  font-family: var(--font-mono);
  font-weight: 400;
}
.seal-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}
.seal-foot {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  display: flex; justify-content: space-between;
}

/* ---------- Nosotros (Golden Circle) ---------- */
.nosotros { padding: var(--section-y) 0; background: var(--paper); }
.gc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--bone);
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 900px) { .gc { grid-template-columns: 1fr; } }
.gc-card {
  padding: 40px 32px;
  border-right: 1px solid var(--bone);
  display: flex; flex-direction: column; gap: 16px;
}
.gc-card:last-child { border-right: 0; }
.gc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue-600);
  letter-spacing: 0.18em;
}
.gc-card h3 {
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.gc-q {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--steel-500);
  font-style: italic;
}
.gc-card p { font-size: 14.5px; color: var(--steel-700); margin: 0; line-height: 1.55; }

/* ---------- Emergencia ---------- */
.emergencia {
  padding: var(--section-y) 0;
  background: var(--white);
}
.emerg-card {
  position: relative;
  background:
    linear-gradient(115deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--blue-600) 130%);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: clamp(40px, 5vw, 72px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .emerg-card { grid-template-columns: 1fr; } }
.emerg-card::before {
  content: "24/7";
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(180px, 22vw, 360px);
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  line-height: 1;
}
.emerg-card h2 { font-size: clamp(32px, 4vw, 50px); margin: 16px 0 14px; }
.emerg-card p { color: rgba(255,255,255,0.7); max-width: 460px; font-size: 16px; }
.emerg-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.emerg-phones { position: relative; display: grid; gap: 10px; }
.emerg-phone {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: border-color .2s ease, background .2s ease;
}
.emerg-phone:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}
.emerg-phone .meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.emerg-phone .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin-top: 4px;
}
.emerg-phone .ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
}

/* ---------- Contacto ---------- */
.contacto { padding: var(--section-y) 0; background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 22px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}
.info-card .ico {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--blue-600);
  display: grid; place-items: center;
}
.info-card .lbl { font-family: var(--font-mono); font-size: 10.5px; color: var(--steel-500); letter-spacing: 0.18em; text-transform: uppercase; }
.info-card .val { font-size: 15px; color: var(--navy-900); font-weight: 500; margin-top: 4px; }
.info-card a.val { color: var(--blue-600); }

.map-card {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--radius-md);
  height: 200px;
  position: relative;
  overflow: hidden;
}
.map-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--bone) 1px, transparent 1px),
    linear-gradient(90deg, var(--bone) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-card::after {
  content: "Km 4.5 vía Durán — Tambo";
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel-700);
  background: var(--white);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid var(--bone);
}
.map-pin {
  position: absolute;
  top: 45%; left: 38%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 6px rgba(30,91,214,0.18);
}
.map-pin::after {
  content: "";
  position: absolute; inset: -16px;
  border: 1px dashed var(--blue-400);
  border-radius: 50%;
  animation: ring 2.6s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.form-card {
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: var(--radius-md);
  padding: 36px;
}
.form-card h3 { font-size: 22px; margin: 0 0 6px; }
.form-card .sub { color: var(--steel-500); font-size: 14px; margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-500);
}
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1px solid var(--bone);
  background: var(--paper);
  border-radius: 8px;
  color: var(--navy-900);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue-600);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.form-foot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  margin-top: 8px;
}
.form-foot .legal {
  font-size: 11.5px; color: var(--steel-500);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }
.footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color .15s ease; }
.footer li a:hover { color: var(--white); }
.footer-brand p { max-width: 320px; font-size: 13.5px; }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 8px;
}

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: var(--white);
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 20px 40px -16px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform .2s ease, padding .2s ease;
}
.fab:hover { transform: translateY(-2px); }
.fab svg { margin-right: 10px; }

/* ---------- Photo overlay block ---------- */
.photo-block {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--steel-700);
}
.photo-block img { width: 100%; height: 100%; object-fit: cover; }
.photo-block .photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 18, 31, 0.7));
}
.photo-block .photo-meta {
  position: absolute;
  bottom: 16px; left: 18px; right: 18px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Hero spec dots ---------- */
.hero-spec {
  position: absolute; z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--cyan-400);
  text-transform: uppercase;
}
.hero-spec::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(245,197,24,0.2);
}
.hero-spec.s1 { top: 32%; right: 8%; }
.hero-spec.s2 { top: 55%; right: 18%; }
[data-blueprint="off"] .hero-spec { display: none; }
@media (max-width: 900px) { .hero-spec { display:none; } }
