/* ==========================================================================
   MAP Logística — Hoja de estilos principal
   ========================================================================== */
:root {
  --navy-950: #071226;
  --navy-900: #0b1b38;
  --navy-800: #13285a;
  --navy-700: #1f3a78;
  --cyan: #19b4d8;
  --cyan-2: #5fd6f0;
  --red: #e0413f;
  --ink: #0f1b33;
  --muted: #5b6a86;
  --line: #e3e9f3;
  --soft: #f3f6fb;
  --white: #ffffff;
  --grad: linear-gradient(120deg, var(--cyan) 0%, #2f7de1 55%, var(--navy-700) 100%);
  --radius: 18px;
  --shadow: 0 10px 30px -10px rgba(11, 27, 56, .25);
  --shadow-lg: 0 30px 60px -20px rgba(11, 27, 56, .35);
  --ease: cubic-bezier(.22, 1, .36, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1, h2, h3, .brand { font-family: "Montserrat", sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }

/* ---------- Scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; background: var(--grad); transform-origin: 0 50%; transform: scaleX(0); z-index: 100; }

/* ---------- Header ---------- */
header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .4s var(--ease), box-shadow .4s, padding .4s var(--ease);
  padding: 20px 0;
}
header.scrolled { background: rgba(255,255,255,.85); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); box-shadow: 0 1px 0 var(--line); padding: 10px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--white); transition: color .4s; }
header.scrolled .brand { color: var(--navy-800); }
.logo-slot {
  width: 56px; height: 56px; border-radius: 50%; flex: none; transition: width .4s var(--ease), height .4s var(--ease); display: grid; place-items: center; position: relative; overflow: hidden;
  background: var(--white); color: var(--navy-700); font-size: 13px; font-weight: 800; letter-spacing: -.02em;
  box-shadow: 0 0 0 2px rgba(25,180,216,.5);
}
.logo-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: var(--white); transform: scale(1.12); }
.logo-slot:has(img) { box-shadow: 0 6px 18px -6px rgba(0,0,0,.35); }
header.scrolled .logo-slot { width: 46px; height: 46px; }
footer .logo-slot { width: 72px; height: 72px; }
.brand small { display: block; font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; opacity: .7; }
.links { display: flex; align-items: center; gap: 6px; list-style: none; }
.links a {
  position: relative; padding: 10px 14px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85);
  border-radius: 999px; transition: color .3s, background .3s;
}
header.scrolled .links a { color: var(--muted); }
.links a:hover, .links a.active { color: var(--white); background: rgba(255,255,255,.1); }
header.scrolled .links a:hover, header.scrolled .links a.active { color: var(--navy-800); background: var(--soft); }
.burger { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .35s var(--ease), opacity .2s, background .4s; }
header.scrolled .burger span { background: var(--navy-800); }
.burger span:nth-child(1) { top: 15px; } .burger span:nth-child(2) { top: 21px; } .burger span:nth-child(3) { top: 27px; }
.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  --x: 0px; --y: 0px;
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer; border: 0;
  font: 600 15px/1 "Inter", sans-serif; padding: 16px 26px; border-radius: 999px;
  transform: translate(var(--x), var(--y)); transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s;
  position: relative; overflow: hidden; isolation: isolate;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--cyan); color: var(--navy-950); box-shadow: 0 12px 30px -10px rgba(25,180,216,.8); }
.btn-primary::before { content: ""; position: absolute; inset: 0; background: var(--white); transform: translateX(-101%); transition: transform .5s var(--ease); z-index: -1; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-ghost { background: rgba(255,255,255,.08); color: var(--white); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-dark { background: var(--navy-800); color: var(--white); }
.btn-dark:hover { background: var(--navy-700); box-shadow: var(--shadow); }
.btn-sm { padding: 11px 18px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  background: radial-gradient(1200px 700px at 80% 20%, #16346f 0%, transparent 60%), linear-gradient(160deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--white); padding: 120px 0 80px;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 70%);
  animation: gridmove 20s linear infinite;
}
@keyframes gridmove { to { background-position: 56px 56px; } }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 999px;
  background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.85); margin-bottom: 28px;
}
.pill b { white-space: nowrap; background: var(--cyan); color: var(--navy-950); padding: 4px 10px; border-radius: 999px; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.hero h1 { font-size: clamp(40px, 5.6vw, 72px); line-height: 1.04; font-weight: 800; letter-spacing: -.03em; }
.hero h1 .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero h1 .word > span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease); }
.loaded .hero h1 .word > span { transform: none; }
.hl { background: linear-gradient(90deg, var(--cyan-2), var(--cyan) 50%, #7fb6ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { margin: 24px 0 36px; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; color: rgba(255,255,255,.72); max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.modes { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.mode { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.75); }
.mode svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Hero visual: animated globe with routes */
.hero-visual { position: relative; aspect-ratio: 1; max-width: 560px; justify-self: end; width: 100%; }
.globe { width: 100%; height: 100%; overflow: visible; }
.globe .ring { fill: none; stroke: rgba(255,255,255,.1); }
.globe .meridian { fill: none; stroke: rgba(95,214,240,.18); stroke-width: 1; }
.globe .route { fill: none; stroke: url(#routeGrad); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 6 8; animation: dash 1.6s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -28; } }
.globe .node { fill: var(--cyan); }
.globe .pulse { fill: none; stroke: var(--cyan); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { transform: scale(.4); opacity: 1; } 100% { transform: scale(2.6); opacity: 0; } }
.globe-spin { transform-origin: 280px 280px; animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.float-card {
  position: absolute; display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 16px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 20px 40px -20px rgba(0,0,0,.5);
  font-size: 13px; color: rgba(255,255,255,.8); animation: bob 6s ease-in-out infinite;
}
.float-card strong { display: block; color: var(--white); font-size: 15px; font-family: "Montserrat", sans-serif; }
.float-card .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--cyan); color: var(--navy-950); flex: none; }
.float-card .ic svg { width: 20px; height: 20px; }
.fc-1 { left: -4%; bottom: 14%; }
.fc-2 { right: 0; top: 8%; animation-delay: -3s; }
@keyframes bob { 50% { transform: translateY(-12px); } }
.scroll-hint { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); width: 26px; height: 42px; border-radius: 14px; box-shadow: inset 0 0 0 2px rgba(255,255,255,.3); }
.scroll-hint::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--white); animation: wheel 1.8s var(--ease) infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Sections ---------- */
section.block { padding: clamp(80px, 12vw, 140px) 0; position: relative; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.kicker::before { content: ""; width: 24px; height: 2px; background: currentColor; border-radius: 2px; }
.title { font-size: clamp(32px, 4.2vw, 52px); line-height: 1.1; font-weight: 800; letter-spacing: -.025em; color: var(--navy-800); }
.title .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.sub { margin-top: 16px; font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 580px; }
.head-center { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 64px; }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; perspective: 1200px; }
.service {
  --rx: 0deg; --ry: 0deg;
  position: relative; border-radius: var(--radius); background: var(--white); overflow: hidden;
  box-shadow: 0 0 0 1px var(--line), var(--shadow);
  transform: rotateX(var(--rx)) rotateY(var(--ry)); transform-style: preserve-3d;
  transition: transform .5s var(--ease), box-shadow .4s;
}
.service:hover { box-shadow: 0 0 0 1px rgba(25,180,216,.4), var(--shadow-lg); }
.media {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  display: grid; place-items: center;
}
.media > svg.ph { width: 72px; height: 72px; stroke: rgba(95,214,240,.6); fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.service:hover .media img { transform: scale(1.08); }
.media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,18,38,.55)); }
.badge-ic {
  position: absolute; left: 24px; bottom: -26px; z-index: 2; width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; background: var(--white); box-shadow: var(--shadow); transform: translateZ(40px);
}
.badge-ic svg { width: 28px; height: 28px; stroke: var(--navy-700); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-body { padding: 44px 26px 30px; transform: translateZ(20px); }
.service h3 { font-size: 22px; font-weight: 700; color: var(--navy-800); margin-bottom: 10px; }
.service p { font-size: 15px; line-height: 1.65; color: var(--muted); }
.tags { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.tag { font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: var(--soft); color: var(--navy-700); }
.service .rel { position: relative; }
.service .shine { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(25,180,216,.12), transparent 40%); opacity: 0; transition: opacity .3s; }
.service:hover .shine { opacity: 1; }

/* Agenda */
.agenda { background: var(--soft); overflow: hidden; }
.agenda::before { content: ""; position: absolute; width: 600px; height: 600px; right: -200px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(25,180,216,.18), transparent 65%); }
.agenda-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 48px; }
.agenda-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px 56px; align-items: end; }
.agenda-intro .meta { margin-bottom: 0; }
.agenda .booking { width: 100%; max-width: 1060px; margin: 0 auto; }
@media (max-width: 980px) { .agenda-intro { grid-template-columns: 1fr; align-items: start; } }
.advisor { display: flex; align-items: center; gap: 14px; margin: 32px 0 24px; }
.avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; position: relative; flex: none; background: var(--grad); display: grid; place-items: center; color: var(--white); font-weight: 700; font-family: "Montserrat", sans-serif; box-shadow: 0 0 0 3px var(--white), 0 0 0 5px rgba(25,180,216,.4); }
.avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.advisor strong { display: block; font-size: 16px; color: var(--navy-800); }
.advisor span { font-size: 14px; color: var(--muted); }
.meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.meta div { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 12px; background: var(--white); box-shadow: 0 0 0 1px var(--line); font-size: 14px; font-weight: 500; color: var(--navy-800); }
.meta svg { width: 18px; height: 18px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; font-size: 16px; line-height: 1.5; color: var(--ink); }
.checklist .ck { width: 28px; height: 28px; border-radius: 50%; background: rgba(25,180,216,.14); display: grid; place-items: center; }
.checklist .ck svg { width: 14px; height: 14px; stroke: var(--cyan); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.booking { border-radius: 24px; background: var(--white); box-shadow: 0 0 0 1px var(--line), var(--shadow-lg); overflow: hidden; min-height: 640px; position: relative; }
.booking .calendly-inline-widget { min-width: 320px; height: 720px; transition: height .4s var(--ease); }
.booking .calendly-inline-widget iframe { height: 100% !important; overflow: hidden; }
@media (max-width: 980px) { .booking .calendly-inline-widget { height: 1100px; } }
.booking-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 18px; padding: 40px; }
.booking-fallback .cal { width: 88px; height: 88px; border-radius: 24px; background: var(--grad); display: grid; place-items: center; box-shadow: 0 20px 40px -15px rgba(25,180,216,.7); }
.booking-fallback .cal svg { width: 42px; height: 42px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.booking-fallback h3 { font-size: 24px; color: var(--navy-800); }
.booking-fallback p { color: var(--muted); max-width: 360px; line-height: 1.6; }

/* Visit */
.visit-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: stretch; }
.places { display: grid; gap: 16px; margin-top: 32px; }
.place { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius); background: var(--white); box-shadow: 0 0 0 1px var(--line); transition: transform .4s var(--ease), box-shadow .4s; }
.place:hover { transform: translateX(6px); box-shadow: 0 0 0 1px rgba(25,180,216,.5), var(--shadow); }
.place .pin { width: 44px; height: 44px; border-radius: 12px; background: var(--navy-800); display: grid; place-items: center; flex: none; }
.place .pin svg { width: 20px; height: 20px; stroke: var(--cyan-2); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.place small { display: block; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); margin-bottom: 4px; }
.place strong { font-size: 17px; color: var(--navy-800); font-family: "Montserrat", sans-serif; }
.map { border-radius: 24px; overflow: hidden; box-shadow: 0 0 0 1px var(--line), var(--shadow-lg); min-height: 380px; }
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: saturate(.85) contrast(1.05); }

/* Gallery carousel */
.gallery { margin-top: 64px; position: relative; }
.track-wrap { overflow: hidden; border-radius: var(--radius); cursor: grab; }
.track-wrap.dragging { cursor: grabbing; }
.track { display: flex; gap: 20px; transition: transform .8s var(--ease); will-change: transform; }
.track.no-anim { transition: none; }
.slide { flex: 0 0 calc((100% - 40px) / 3); aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden; position: relative; background: linear-gradient(135deg, #dfe7f3, #eef3fa); display: grid; place-items: center; user-select: none; }
.slide svg.ph { width: 48px; height: 48px; stroke: #9fb0cc; fill: none; stroke-width: 1.4; }
.slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform .8s var(--ease); }
.slide:hover img { transform: scale(1.06); }
.g-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; }
.dots { display: flex; gap: 8px; }
.dots button { width: 8px; height: 8px; border-radius: 999px; border: 0; background: #c9d4e6; cursor: pointer; transition: width .4s var(--ease), background .3s; }
.dots button.on { width: 28px; background: var(--cyan); }
.arrows { display: flex; gap: 10px; }
.arrows button { width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--white); box-shadow: 0 0 0 1px var(--line); cursor: pointer; display: grid; place-items: center; color: var(--navy-800); transition: background .3s, color .3s, transform .3s var(--ease); }
.arrows button:hover { background: var(--navy-800); color: var(--white); transform: scale(1.06); }
.arrows svg { width: 20px; height: 20px; }

/* CTA band */
.cta-band { position: relative; border-radius: 28px; padding: clamp(40px, 6vw, 72px); overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band::before { content: ""; position: absolute; width: 480px; height: 480px; right: -120px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(25,180,216,.45), transparent 65%); }
.cta-band h2 { position: relative; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.15; max-width: 620px; letter-spacing: -.02em; }
.cta-band .btn { position: relative; }

/* Footer */
footer { background: var(--navy-950); color: rgba(255,255,255,.7); padding: 64px 0 28px; margin-top: clamp(80px, 10vw, 120px); }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
footer .brand { color: var(--white); }
.foot-links { display: flex; gap: 28px; list-style: none; font-size: 14px; }
.foot-links a:hover { color: var(--cyan-2); }
.social { display: flex; gap: 10px; }
.social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.06); transition: background .3s, transform .3s var(--ease); }
.social a:hover { background: var(--cyan); color: var(--navy-950); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; fill: currentColor; }
.legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 13px; }
.legal a:hover { color: var(--cyan-2); }

/* WhatsApp */
.wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.7);
  transition: transform .3s var(--ease);
}
.wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; animation: ring 2.2s var(--ease) infinite; z-index: -1; }
@keyframes ring { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.7); opacity: 0; } }
.wa:hover { transform: scale(1.08) rotate(-6deg); }
.wa svg { width: 30px; height: 30px; fill: currentColor; }
.to-top { position: fixed; right: 30px; bottom: 96px; z-index: 60; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--white); color: var(--navy-800); box-shadow: var(--shadow); cursor: pointer; display: grid; place-items: center; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .3s, transform .3s var(--ease); }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top svg { width: 18px; height: 18px; }

/* ---------- Cotizador · diseño "manifiesto de carga" ---------- */
.quote-sec { padding-top: clamp(64px, 8vw, 104px); background: var(--white); }
.qz {
  display: grid; grid-template-columns: 320px 1fr; min-height: 640px;
  border-radius: 32px; overflow: hidden; background: var(--soft);
  box-shadow: 0 0 0 1px var(--line), var(--shadow-lg);
}

/* Panel lateral */
.qz-rail {
  position: relative; overflow: hidden; color: var(--white);
  padding: 36px 30px 30px; display: flex; flex-direction: column; gap: 30px;
  background: radial-gradient(440px 320px at 0% 105%, rgba(25,180,216,.38), transparent 70%), linear-gradient(170deg, var(--navy-800), var(--navy-950));
}
.qz-rail::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1.6px); background-size: 18px 18px;
  mask-image: linear-gradient(200deg, #000 0%, transparent 55%); -webkit-mask-image: linear-gradient(200deg, #000 0%, transparent 55%);
}
.qz-rail > * { position: relative; }
.qz-live { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan-2); }
.qz-live i { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,.6); animation: live 2s infinite; }
@keyframes live { 70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); } 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); } }
.qz-title { font-size: clamp(26px, 2.3vw, 31px); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; margin: 14px 0 12px; }
.qz-title em { font-style: normal; color: var(--cyan-2); }
.qz-sub { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.68); }

.qz-steps { list-style: none; display: flex; flex-direction: column; }
.qz-step { display: flex; flex-direction: column; }
.qz-dot { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,.5); transition: color .4s; }
.qz-dot i {
  width: 38px; height: 38px; border-radius: 12px; flex: none; display: grid; place-items: center;
  font: 700 13px "Montserrat", sans-serif; font-style: normal; color: rgba(255,255,255,.7);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.22); transition: background .4s, color .4s, box-shadow .4s;
}
.qz-dot i svg { width: 16px; height: 16px; }
.qz-step.current .qz-dot { color: var(--white); }
.qz-step.current .qz-dot i { background: var(--cyan); color: var(--navy-950); box-shadow: 0 0 0 6px rgba(25,180,216,.2); }
.qz-step.done .qz-dot { color: rgba(255,255,255,.85); }
.qz-step.done .qz-dot i { background: rgba(25,180,216,.18); color: var(--cyan-2); box-shadow: none; }
.qz-line { width: 2px; height: 26px; margin: 6px 0 6px 18px; border-radius: 2px; background: rgba(255,255,255,.14); position: relative; overflow: hidden; }
.qz-line::after { content: ""; position: absolute; inset: 0; background: var(--cyan); transform: scaleY(0); transform-origin: top; transition: transform .7s var(--ease); }
.qz-step.done .qz-line::after { transform: scaleY(1); }
.qz-count { margin-top: -14px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); }

.qz-rail-foot { margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: grid; gap: 14px; }
.qz-rail-foot p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.6); }
.qz-help {
  justify-self: start; display: inline-flex; align-items: center; gap: 12px; padding: 8px 18px 8px 8px; border-radius: 14px;
  font-size: 14px; font-weight: 600; color: var(--white); background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  transition: background .3s, transform .3s var(--ease);
}
.qz-help:hover { background: rgba(255,255,255,.14); transform: translateX(3px); }
.qz-help .ic { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: #25d366; }
.qz-help svg { width: 17px; height: 17px; }

/* Área de trabajo */
.qz-body { padding: clamp(24px, 3.5vw, 44px); min-width: 0; }
.qz-pane { animation: qzIn .6s var(--ease); }
.qz-pane[hidden] { display: none; }
@keyframes qzIn { from { opacity: 0; transform: translateX(18px); } }
.qz-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); }
.qz-tag::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: currentColor; }
.qz-q h3 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 800; letter-spacing: -.02em; color: var(--navy-800); margin: 10px 0 8px; }
.qz-muted { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 620px; }

/* Paso 1: tipo de operación */
.qz-ops { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.qz-op {
  position: relative; overflow: hidden; isolation: isolate; text-align: left; font: inherit; cursor: pointer; border: 0;
  display: flex; flex-direction: column; min-height: 270px; padding: 26px; border-radius: 24px;
  background: var(--white); box-shadow: 0 0 0 1px var(--line); transition: transform .45s var(--ease), box-shadow .35s;
}
.qz-op:hover, .qz-op:focus-visible { transform: translateY(-5px); box-shadow: 0 0 0 1.5px var(--cyan), var(--shadow-lg); outline: none; }
.qz-op .deco { position: absolute; right: -30px; top: -30px; width: 190px; height: 190px; z-index: -1; opacity: .9; transition: transform .8s var(--ease); }
.qz-op:hover .deco { transform: rotate(-12deg) scale(1.06); }
.qz-op .ic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--navy-800); color: var(--cyan-2); transition: background .35s, color .35s; }
.qz-op:hover .ic { background: var(--cyan); color: var(--navy-950); }
.qz-op .ic svg { width: 26px; height: 26px; }
.qz-op strong { display: block; font: 800 20px "Montserrat", sans-serif; letter-spacing: -.01em; color: var(--navy-800); margin: 22px 0 8px; }
.qz-op span.t { display: block; color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 300px; }
.qz-go { margin-top: auto; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed var(--line); }
.qz-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--navy-700); }
.qz-badge svg { width: 15px; height: 15px; color: var(--cyan); }
.qz-arrow { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--soft); color: var(--navy-800); transition: background .3s, color .3s, transform .4s var(--ease); }
.qz-arrow svg { width: 18px; height: 18px; }
.qz-op:hover .qz-arrow { background: var(--navy-800); color: var(--white); transform: translateX(4px); }

/* Paso 2: carga */
.qz-card { margin-top: 22px; padding: clamp(18px, 2.4vw, 26px); border-radius: 24px; background: var(--white); box-shadow: 0 0 0 1px var(--line); }
.qz-box { margin: 0; padding: 0; background: none; }
.qz-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--navy-700); margin-bottom: 8px; }
.qz-seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.qz-seg button {
  position: relative; display: flex; align-items: center; gap: 12px; text-align: left; cursor: pointer; border: 0;
  padding: 14px 16px; border-radius: 16px; background: var(--soft);
  font: 700 15px "Montserrat", sans-serif; color: var(--navy-800);
  box-shadow: inset 0 0 0 1.5px transparent; transition: background .3s, box-shadow .3s, transform .3s var(--ease);
}
.qz-seg button:hover { transform: translateY(-2px); }
.qz-seg button svg { width: 24px; height: 24px; flex: none; color: var(--muted); transition: color .3s; }
.qz-seg button small { display: block; font: 500 12px "Inter", sans-serif; color: var(--muted); margin-top: 2px; }
.qz-seg button.on { background: var(--white); box-shadow: inset 0 0 0 2px var(--cyan), 0 12px 26px -16px rgba(25,180,216,.9); }
.qz-seg button.on svg { color: var(--cyan); }
.qz-seg button.on::after {
  content: ""; position: absolute; top: 10px; right: 10px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--cyan) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.qz-hint { font-size: 13px; color: var(--muted); margin: 12px 0 22px; padding-left: 12px; border-left: 2px solid var(--cyan); }
.qz-grid { display: grid; gap: 16px; }
.qz-grid.c3 { grid-template-columns: repeat(3, 1fr); }
.qz-grid.c2 { grid-template-columns: repeat(2, 1fr); margin-top: 16px; }
.qz-field { display: flex; flex-direction: column; min-width: 0; }
.qz-field small { font-size: 12px; color: var(--muted); margin-top: 7px; line-height: 1.45; }
.qz-input {
  width: 100%; font: 500 15px "Inter", sans-serif; color: var(--ink); padding: 14px 16px; border-radius: 14px;
  border: 1.5px solid transparent; background: #f1f5fa; transition: border-color .25s, background .25s, box-shadow .25s;
  appearance: none; -webkit-appearance: none;
}
.qz-input::placeholder { color: #9aa6bb; font-weight: 400; }
.qz-input:hover { background: #eaf0f7; }
.qz-input:focus { outline: none; background: var(--white); border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(25,180,216,.14); }
select.qz-input {
  cursor: pointer; padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2319b4d8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
textarea.qz-input { resize: vertical; min-height: 116px; line-height: 1.5; }
.qz-input.bad { border-color: var(--red); background: #fff6f6; box-shadow: 0 0 0 4px rgba(224,65,63,.08); }
.qz-err { color: var(--red); font-size: 12px; margin-top: 6px; }
.qz-err:empty { display: none; }
.qz-unit { position: relative; }
.qz-unit .qz-input { padding-right: 62px; font-variant-numeric: tabular-nums; }
.qz-unit::after {
  content: attr(data-u); position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font: 700 11px "Montserrat", sans-serif; letter-spacing: .04em; color: var(--navy-700);
  padding: 5px 9px; border-radius: 8px; background: var(--white); box-shadow: 0 0 0 1px var(--line); pointer-events: none;
}

/* Manifiesto (resultado) */
.qz-result { margin-top: 22px; border-radius: 22px; background: var(--white); box-shadow: 0 0 0 1px var(--line); transition: box-shadow .4s; }
.qz-result.ready { box-shadow: 0 0 0 1.5px var(--cyan), 0 26px 50px -30px rgba(25,180,216,.9); }
.qz-res-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 22px 22px 18px; }
.qz-res-head .lbl { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.qz-res-head h4 { font: 800 19px "Montserrat", sans-serif; color: var(--navy-800); margin: 6px 0; display: flex; align-items: center; gap: 10px; }
.qz-res-head p { font-size: 13.5px; color: var(--muted); line-height: 1.55; max-width: 440px; }
.qz-res-head .ok { width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; background: var(--line); transition: background .3s; }
.qz-result.ready .qz-res-head .ok { background: var(--cyan); }
.qz-res-head .ok svg { width: 13px; height: 13px; stroke: var(--white); }
.qz-stamp {
  flex: none; transform: rotate(6deg); padding: 7px 12px; border-radius: 10px; border: 2px solid currentColor;
  font: 800 11px "Montserrat", sans-serif; letter-spacing: .12em; text-transform: uppercase; color: #c9d4e6; transition: color .4s;
}
.qz-result.ready .qz-stamp { color: var(--cyan); }
.qz-ports { display: flex; align-items: center; gap: 16px; padding: 16px 22px; background: var(--soft); }
.qz-ports small { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.qz-ports b { display: block; font: 800 15px "Montserrat", sans-serif; color: var(--navy-800); margin-top: 3px; }
.qz-ports > div:last-child { text-align: right; }
.qz-trail { flex: 1; position: relative; height: 2px; min-width: 40px; background: repeating-linear-gradient(90deg, var(--cyan) 0 6px, transparent 6px 12px); }
.qz-trail svg { position: absolute; top: -11px; left: 0; width: 22px; height: 22px; color: var(--navy-800); animation: sail 6s ease-in-out infinite alternate; }
@keyframes sail { to { left: calc(100% - 22px); } }
.qz-lines { padding: 6px 22px 14px; }
.qz-lines div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 11px 0; font-size: 14px; color: var(--muted); }
.qz-lines div + div { border-top: 1px solid #eef2f8; }
.qz-lines dt small { color: #9aa6bb; }
.qz-lines dd { white-space: nowrap; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; text-align: right; }
.qz-lines div.na dd { font-weight: 500; font-style: italic; color: #9aa6bb; }
.qz-total {
  position: relative; display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap;
  padding: 22px; border-radius: 0 0 22px 22px; color: var(--white);
  background: radial-gradient(300px 140px at 100% 0%, rgba(25,180,216,.35), transparent 70%), var(--navy-900);
  border-top: 2px dashed rgba(255,255,255,.28);
}
.qz-total::before, .qz-total::after { content: ""; position: absolute; top: -12px; width: 22px; height: 22px; border-radius: 50%; background: var(--white); }
.qz-total::before { left: -11px; } .qz-total::after { right: -11px; }
.qz-total small { display: block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.qz-total .big { font: 800 clamp(26px, 3vw, 34px) "Montserrat", sans-serif; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.qz-total .alt { font-size: 13px; line-height: 1.6; text-align: right; color: var(--cyan-2); font-variant-numeric: tabular-nums; }
.qz-empty { margin: 4px 22px 22px; padding: 26px 20px; border-radius: 16px; border: 1.5px dashed #d5deeb; text-align: center; color: var(--muted); font-size: 14px; line-height: 1.6; }
.qz-note { font-size: 12px; line-height: 1.6; color: var(--muted); margin-top: 14px; padding-left: 26px; position: relative; }
.qz-note::before { content: "i"; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; border-radius: 50%; display: grid; place-items: center; font: italic 700 11px Georgia, serif; color: var(--white); background: var(--navy-700); }

.qz-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 24px; }
.qz-back { display: inline-flex; align-items: center; gap: 8px; border: 0; background: var(--white); font: 600 14px "Inter", sans-serif; color: var(--navy-800); cursor: pointer; padding: 12px 18px; border-radius: 999px; box-shadow: 0 0 0 1px var(--line); transition: box-shadow .3s; }
.qz-back:hover { box-shadow: 0 0 0 1.5px var(--navy-700); }
.qz-back svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.qz-back:hover svg { transform: translateX(-3px); }
.btn[disabled] { opacity: .4; pointer-events: none; box-shadow: none; }

/* Paso 3: datos */
.qz-summary { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.qz-summary:empty { display: none; }
.qz-summary span { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; padding: 7px 12px; border-radius: 10px; background: var(--white); color: var(--navy-800); box-shadow: 0 0 0 1px var(--line); }
.qz-summary span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
#qzForm { margin-top: 22px; padding: clamp(18px, 2.4vw, 26px); border-radius: 24px; background: var(--white); box-shadow: 0 0 0 1px var(--line); }
#qzForm .qz-nav { margin-top: 22px; padding-top: 20px; border-top: 1px dashed var(--line); }
.qz-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.5; margin-top: 18px; cursor: pointer; }
.qz-check input { margin-top: 2px; accent-color: var(--cyan); width: 17px; height: 17px; flex: none; }
.qz-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.qz-alert { margin-top: 16px; padding: 14px 16px; border-radius: 14px; font-size: 14px; line-height: 1.5; background: #fdecec; color: #9b2422; }
.qz-alert a { font-weight: 700; text-decoration: underline; }
.spin { width: 18px; height: 18px; border-radius: 50%; border: 2px solid currentColor; border-right-color: transparent; animation: rot .7s linear infinite; }
@keyframes rot { to { transform: rotate(360deg); } }

/* Confirmación */
.qz-done { text-align: center; padding: 40px 0 20px; }
.qz-done .tick { width: 88px; height: 88px; margin: 0 auto 24px; border-radius: 26px; display: grid; place-items: center; background: var(--navy-800); box-shadow: 0 0 0 10px rgba(25,180,216,.14), 0 24px 44px -16px rgba(19,40,90,.7); animation: pop .7s var(--ease); }
.qz-done .tick svg { width: 42px; height: 42px; stroke: var(--cyan-2); }
.qz-done .tick svg path { stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw .6s .35s var(--ease) forwards; }
@keyframes pop { from { transform: scale(.4) rotate(-20deg); opacity: 0; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
.qz-done h3 { font-size: 28px; color: var(--navy-800); margin-bottom: 10px; }
.qz-done p { color: var(--muted); line-height: 1.6; max-width: 480px; margin: 0 auto; }
.qz-done .folio { display: inline-flex; align-items: center; gap: 10px; margin: 20px 0 28px; font: 700 14px "Montserrat", sans-serif; letter-spacing: .06em; color: var(--navy-800); padding: 10px 18px; border-radius: 12px; background: var(--white); border: 1.5px dashed #c9d4e6; }
.qz-done .row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.bump { animation: bump .45s var(--ease); }
@keyframes bump { 40% { transform: scale(1.05); } }

@media (max-width: 1080px) {
  .qz { grid-template-columns: 1fr; }
  .qz-rail { padding: 28px 24px; gap: 22px; }
  .qz-rail-foot { margin-top: 0; padding-top: 0; border: 0; }
  .qz-rail-foot p { display: none; }
  .qz-steps { flex-direction: row; align-items: center; }
  .qz-step { flex-direction: row; align-items: center; flex: 1; }
  .qz-step:last-child { flex: none; }
  .qz-line { flex: 1; width: auto; height: 2px; margin: 0 12px; }
  .qz-line::after { transform: scaleX(0); transform-origin: left; }
  .qz-step.done .qz-line::after { transform: scaleX(1); }
  .qz-count { margin-top: -8px; }
}
@media (max-width: 760px) {
  .qz-ops, .qz-grid.c3, .qz-grid.c2 { grid-template-columns: 1fr; }
  .qz-seg { grid-template-columns: 1fr; }
  .qz-op { min-height: 0; }
  .qz-dot span { display: none; }
  .qz-step.current .qz-dot span { display: inline; }
  .qz-stamp { display: none; }
  .qz-body { padding: 24px 14px 28px; }
  .qz-card, #qzForm { padding: 16px; border-radius: 20px; }
  .qz-dot { white-space: nowrap; }
  .qz-ports { flex-direction: column; align-items: stretch; gap: 10px; padding: 16px; }
  .qz-ports > div:last-child { text-align: left; }
  .qz-trail { height: 2px; margin: 8px 0; }
  .qz-res-head { padding: 18px 16px 14px; }
  .qz-lines { padding: 4px 16px 12px; }
  .qz-total { padding: 20px 16px; }
  .qz-empty { margin: 4px 16px 16px; }
  .qz-nav { flex-direction: column-reverse; align-items: stretch; }
  .qz-nav .btn, .qz-back { justify-content: center; }
  .qz-total .alt { text-align: left; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.fade { opacity: 0; transition: opacity 1.2s var(--ease) .6s; }
.loaded .fade { opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner, .agenda-grid, .visit-grid { grid-template-columns: 1fr; }
  .hero-visual { justify-self: center; max-width: 440px; }
  .services { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .slide { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 820px) {
  .burger { display: block; }
  .links {
    position: fixed; inset: 0 0 auto 0; top: 0; padding: 96px 24px 32px; flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--white); box-shadow: var(--shadow-lg); transform: translateY(-100%); transition: transform .5s var(--ease); z-index: -1;
  }
  .menu-open .links { transform: none; }
  .links a, header.scrolled .links a { color: var(--navy-800); font-size: 18px; padding: 14px 16px; }
  .menu-open .brand { color: var(--navy-800); }
  .menu-open .burger span { background: var(--navy-800); }
  .nav-cta { display: none; }
  .fc-1 { left: 0; }
}
@media (max-width: 560px) {
  .slide { flex-basis: 100%; }
  .foot, .legal { flex-direction: column; align-items: flex-start; }
  .foot-links { flex-wrap: wrap; gap: 16px 24px; }
  .float-card { padding: 10px 14px; font-size: 12px; }
  .float-card strong { font-size: 13px; }
  .float-card .ic { width: 32px; height: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal, .fade { opacity: 1; transform: none; }
  .hero h1 .word > span { transform: none; }
  .qz-done .tick svg path { stroke-dashoffset: 0; }
}

/* ---------- Enlaces de direcciones ---------- */
.place-link { display: inline-block; margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--cyan); transition: color .3s; }
.place-link:hover { color: var(--navy-700); }
