/* V&G Encomiendas — Landing 2026
   Palette: white #FFFFFF (bg) | navy #02013B (text) | green #60FC00 / #22c55e | cyan #00fefe / #00bcd4
   Font: Plus Jakarta Sans
*/

:root {
  --navy: #02013B;
  --navy-2: #0a0945;
  --navy-3: #12105a;
  --green: #22c55e;
  --green-d: #16a34a;
  --green-glow: rgba(34, 197, 94, 0.35);
  --cyan: #00bcd4;
  --cyan-light: #38bdf8;
  --cyan-glow: rgba(0, 188, 212, 0.3);
  --white: #FFFFFF;
  --gray-50: #f8f9fc;
  --gray-100: #f0f1f7;
  --gray-200: #e2e4ee;
  --gray-300: #c8cad8;
  --gray-400: #9a9db0;
  --gray-500: #6b6e85;
  --gray-600: #4a4d63;
  --magenta: #00bcd4;
  --magenta-d: #0097a7;
  --magenta-glow: rgba(0, 188, 212, 0.25);
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --font: 'Plus Jakarta Sans', 'Segoe UI Variable', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: #f8fafc;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--green); color: var(--navy); }

/* CONTRAST PROTECTED LOGO BADGE */
.vyg-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.85);
  border: 1.5px solid var(--cyan);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 188, 212, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.3s var(--ease-out);
}

.vyg-logo-pill:hover {
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(34, 197, 94, 0.35);
  transform: translateY(-2px);
}

.vyg-logo-pill img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 188, 212, 0.4));
}

/* SCROLL PROGRESS */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  z-index: 9999; transition: width .1s linear;
}

/* PRELOADER */
#splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--navy); display: flex;
  align-items: center; justify-content: center;
}
.pl-inner { text-align: center; position: relative; z-index: 2; }
.pl-logo { width: 100px; height: auto; margin: 0 auto 20px; opacity: 0; transform: scale(.8); filter: drop-shadow(0 4px 16px rgba(0, 188, 212, 0.5)); }
.pl-meta { display: flex; align-items: baseline; gap: 12px; justify-content: center; margin-bottom: 16px; }
.pl-label { font-size: 14px; font-weight: 700; letter-spacing: .04em; color: var(--cyan-light); }
.pl-num { font-size: 28px; font-weight: 800; color: var(--green); font-variant-numeric: tabular-nums; }
.pl-track { width: 220px; height: 4px; background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; margin: 0 auto; }
.pl-fill { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--cyan), var(--green)); border-radius: 4px; }
.pl-curtain {
  position: absolute; inset: 0; background: var(--navy);
  transform: translateY(100%); z-index: 1;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; gap: 24px;
  transition: transform .4s var(--ease), background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 19, 43, 0.88);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(0, 188, 212, 0.2);
}
.nav.hidden { transform: translateY(-100%); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 36px; height: 36px; }
.nav-brand-t { display: flex; flex-direction: column; }
.nav-brand-t b { font-size: 16px; font-weight: 800; line-height: 1.2; color: #ffffff; }
.nav-brand-t i { font-size: 11px; color: var(--cyan); font-style: normal; }
.nav-links { display: flex; list-style: none; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--gray-300);
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--cyan); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--cyan-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 13px; font-weight: 700; padding: 10px 22px;
  border: 1px solid var(--cyan); border-radius: 100px;
  transition: all .25s var(--ease-out); color: #ffffff;
  background: rgba(0, 188, 212, 0.15);
}
.nav-cta:hover { border-color: var(--green); background: rgba(34, 197, 94, 0.2); transform: translateY(-1px); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: #ffffff; transition: .3s; }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { transform: rotate(-45deg) translate(5px,-5px); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s;
  position: relative; overflow: hidden; border: none;
}
.btn i { width: 18px; height: 18px; }
.btn-green { background: linear-gradient(135deg, var(--green), var(--green-d)); color: #ffffff; }
.btn-green:hover { box-shadow: 0 8px 30px var(--green-glow); transform: translateY(-2px); }
.btn-line { background: transparent; color: #ffffff; border: 1px solid var(--cyan); }
.btn-line:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { box-shadow: 0 8px 30px rgba(37,211,102,.35); transform: translateY(-2px); }
.btn-sweep::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .6s var(--ease);
}
.btn-sweep:hover::before { left: 100%; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 120px 24px 80px;
  background: radial-gradient(circle at 50% 30%, #0f172a 0%, #0b132b 80%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,188,212,.15), transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(34,197,94,.12), transparent 60%),
    var(--navy);
}
.hero-inner { position: relative; z-index: 2; max-width: 800px; }
.hero-logo { width: 120px; height: auto; margin: 0 auto 28px; filter: drop-shadow(0 8px 24px rgba(0,188,212,0.4)); }
.hero-kicker {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  color: var(--cyan-light); text-transform: uppercase; margin-bottom: 24px;
  padding: 6px 18px; border: 1.5px solid var(--cyan); border-radius: 100px;
  background: rgba(0,188,212,.1);
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.05;
  letter-spacing: -.02em; margin-bottom: 24px; color: #ffffff;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-in { display: block; }
.hero-title em {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
.hero-sub { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--gray-300); max-width: 600px; margin: 0 auto 36px; line-height: 1.6; }
.hero-greeting { display: block; font-size: 1.1rem; font-weight: 600; color: var(--cyan-light); margin-bottom: 12px; opacity: 0; transform: translateY(20px); }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* QUICK ACCESS */
.quick {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 5; margin-top: -60px;
}
.qk {
  background: rgba(15, 23, 42, 0.85); border: 1px solid var(--cyan-glow);
  border-radius: var(--radius); padding: 28px 24px;
  backdrop-filter: blur(16px);
  transition: transform .4s var(--ease), border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column; gap: 8px;
}
.qk:hover {
  transform: translateY(-6px); border-color: var(--green);
  box-shadow: 0 20px 40px rgba(0,0,0,.5), 0 0 25px rgba(34,197,94,.2);
}
.qk i { width: 28px; height: 28px; color: var(--cyan); margin-bottom: 8px; }
.qk b { font-size: 17px; font-weight: 800; color: #ffffff; }
.qk span { font-size: 14px; color: var(--gray-400); line-height: 1.5; }
.qk u { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--green); text-decoration: none; margin-top: 8px; }
.qk u i { width: 16px; height: 16px; margin: 0; }
.qk:hover u i { animation: arrowSlide .4s var(--ease); }
@keyframes arrowSlide { from { transform: translateX(-4px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* MARQUEE */
.marquee {
  overflow: hidden; padding: 40px 0; margin: 40px 0;
  border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee-row {
  display: flex; align-items: center; gap: 40px; white-space: nowrap;
  animation: marquee 30s linear infinite; will-change: transform;
}
.marquee-row span { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; color: var(--gray-400); }
.marquee-row i { width: 10px; height: 10px; background: var(--cyan); border-radius: 50%; flex-shrink: 0; }
.marquee-row-2 span { font-size: clamp(1rem, 2vw, 1.5rem); font-weight: 600; color: var(--gray-500); }
.marquee-row-2 i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.marquee-row-2 { animation-direction: reverse; animation-duration: 40s; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTION HEAD */
.sec-head { max-width: var(--container); margin: 0 auto 48px; padding: 0 24px; }
.sec-head.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px;
}
.eyebrow i { width: 16px; height: 16px; }
.h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; color: #ffffff; }
.h2 em { background: linear-gradient(135deg, var(--cyan), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-style: normal; }
.sec-p { font-size: 1.1rem; color: var(--gray-400); max-width: 560px; margin: 16px auto 0; line-height: 1.6; }

/* HOW IT WORKS */
.how { padding: 100px 0; max-width: var(--container); margin: 0 auto; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 24px; }
.hw {
  background: rgba(15, 23, 42, 0.7); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 32px 24px; position: relative;
  transition: transform .4s var(--ease), border-color .3s;
}
.hw:hover { transform: translateY(-6px); border-color: var(--cyan); }
.hw-n {
  position: absolute; top: 20px; right: 24px; font-size: 3rem; font-weight: 800;
  color: rgba(255,255,255,.06); line-height: 1;
}
.hw i { width: 32px; height: 32px; color: var(--cyan); margin-bottom: 16px; }
.hw h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--white); }
.hw p { font-size: 14px; color: var(--gray-400); line-height: 1.5; }

/* BOX SECTIONS */
.box-sec { padding: 80px 24px; max-width: var(--container); margin: 0 auto; }
.box-sec.alt { background: rgba(15, 23, 42, 0.8); border-radius: var(--radius); margin: 80px auto; border: 1px solid rgba(0,188,212,.2); }
.box {
  max-width: 640px; margin: 0 auto; background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(0,188,212,.2); border-radius: var(--radius);
  padding: 36px; text-align: center;
}
.box-sec.alt .box { background: transparent; border: none; padding: 0; }
.box-lbl { display: block; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 12px; text-align: left; }
.field-row { display: flex; gap: 12px; }
.field, .q-f select, .q-f input {
  flex: 1; background: #0f172a; border: 1.5px solid rgba(148, 163, 184, 0.25);
  border-radius: var(--radius-sm); padding: 14px 18px; font-size: 15px; font-family: var(--font);
  color: var(--white); transition: border-color .2s;
}
.field:focus, .q-f select:focus, .q-f input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(0,188,212,.15); }
.field::placeholder, .q-f input::placeholder { color: var(--gray-500); }
.track-loading, .track-error { display: none; margin-top: 20px; font-size: 14px; }
.track-loading { color: var(--gray-400); align-items: center; gap: 8px; justify-content: center; }
.ldr {
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.1);
  border-top-color: var(--green); border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.track-error { color: #ff6b6b; }
.track-result { margin-top: 24px; text-align: left; }
.tl { display: flex; flex-direction: column; gap: 12px; }
.tl-step {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: #0f172a; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.04);
}
.tl-step.done { border-color: rgba(34,197,94,.2); }
.tl-step .tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-600); flex-shrink: 0; }
.tl-step.done .tl-dot { background: var(--green); box-shadow: 0 0 12px var(--green-glow); }
.tl-step b { font-size: 14px; color: var(--white); }
.tl-step span { font-size: 13px; color: var(--gray-400); margin-left: auto; }

/* COTIZADOR */
.q-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; text-align: left; }
.q-f { display: flex; flex-direction: column; gap: 6px; }
.q-f span { font-size: 13px; font-weight: 700; color: var(--white); }
.q-f select, .q-f input {
  background: #0f172a; border: 1.5px solid rgba(148, 163, 184, 0.25);
  border-radius: var(--radius-sm); padding: 12px 16px; font-size: 15px; font-family: var(--font);
  color: var(--white); transition: border-color .2s;
}
.q-f select:focus, .q-f input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(0,188,212,.15); }
.q-btn { margin: 24px auto 0; }
.q-out {
  margin-top: 28px; padding: 24px; background: #0f172a;
  border-radius: var(--radius); border: 1px solid rgba(34,197,94,.15);
  display: none; flex-direction: column; align-items: center; gap: 16px;
}
.q-out.show { display: flex; }
.q-plabel { font-size: 13px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; }
.q-price { font-size: 2.5rem; font-weight: 800; color: var(--green); }

/* DESTINOS */
.dest-sec { padding: 100px 24px; max-width: var(--container); margin: 0 auto; }
.dest-search { position: relative; max-width: 560px; margin: 0 auto 40px; }
.dest-search-ico { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--gray-500); }
.dest-field {
  width: 100%; background: rgba(15, 23, 42, 0.8); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 16px 24px 16px 50px; font-size: 16px; font-family: var(--font);
  color: var(--white); transition: border-color .2s, box-shadow .2s;
}
.dest-field:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(0,188,212,.1); }
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.dest-card {
  background: rgba(15, 23, 42, 0.8); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s, box-shadow .3s;
}
.dest-card:hover {
  transform: translateY(-6px); border-color: rgba(34,197,94,.2);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.dest-card-img {
  width: 100%; height: 180px; object-fit: cover; background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.dest-card-body { padding: 20px; }
.dest-card-body h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; color: var(--white); }
.dest-card-body .dest-dept { font-size: 13px; color: var(--gray-400); margin-bottom: 12px; }
.dest-card-body .dest-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.dest-card-body .dest-meta span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-300); }
.dest-card-body .dest-meta i { width: 14px; height: 14px; color: var(--green); }
.dest-card-body .dest-price { font-size: 18px; font-weight: 700; color: var(--green); margin-top: 12px; }
.dest-empty { text-align: center; color: var(--gray-400); padding: 40px; display: none; font-size: 15px; }
.dest-empty.show { display: block; }
.dest-hint {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 60px 20px; text-align: center;
}
.dest-hint i { width: 40px; height: 40px; color: var(--green); opacity: .5; }
.dest-hint span { font-size: 15px; color: var(--gray-500); }
.dest-hint.hide { display: none; }

/* SERVICIOS */
.svc { padding: 100px 24px; max-width: var(--container); margin: 0 auto; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: rgba(15, 23, 42, 0.7); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 36px 28px; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s, box-shadow .3s;
}
.svc-card:hover {
  transform: translateY(-8px); border-color: rgba(34,197,94,.2);
  box-shadow: 0 24px 50px rgba(0,0,0,.35);
}
.svc-glow {
  position: absolute; top: -50%; right: -50%; width: 200px; height: 200px;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.svc-card:hover .svc-glow { opacity: 1; }
.svc-ico { width: 40px; height: 40px; color: var(--green); margin-bottom: 20px; transition: transform .4s var(--ease); }
.svc-card:hover .svc-ico { transform: scale(1.15) rotate(-5deg); }
.svc-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.svc-card p { font-size: 14px; color: var(--gray-400); line-height: 1.6; margin-bottom: 20px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--green);
}
.svc-link i { width: 16px; height: 16px; transition: transform .3s; }
.svc-card:hover .svc-link i { transform: translateX(4px); }

/* MAP */
.map-section { padding: 100px 24px; max-width: var(--container); margin: 0 auto; }
.map-container {
  background: rgba(15, 23, 42, 0.8); border: 1px solid rgba(0,188,212,.15);
  border-radius: var(--radius); padding: 40px; margin: 0 auto;
  max-width: 960px; overflow: hidden;
}
.map-container svg { width: 100%; height: auto; display: block; }
/* MAP ROUTE LINES */
.route-line {
  fill: none; stroke: var(--green); stroke-width: 2;
  stroke-dasharray: 6 4; opacity: .6;
  animation: dashFlow 2s linear infinite;
}
@keyframes dashFlow { to { stroke-dashoffset: -20; } }
.city-dot { fill: var(--green); }
.city-dot.major { fill: var(--green); filter: drop-shadow(0 0 6px var(--green-glow)); }
.city-label { fill: var(--gray-300); font-size: 11px; font-family: var(--font); font-weight: 500; }
.map-legend { display: flex; gap: 24px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.lg { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-400); }
.lg-d { width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
.lg-d.major { box-shadow: 0 0 8px var(--green-glow); }
.lg-l { width: 24px; height: 2px; background: var(--green); border-radius: 2px; opacity: .6; }

/* PORTAL */
.portal { padding: 100px 24px; max-width: var(--container); margin: 0 auto; }
.portal-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.portal-p { font-size: 1.1rem; color: var(--gray-300); line-height: 1.7; margin: 24px 0 32px; }
.portal-benefits { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.portal-benefits li { display: flex; gap: 16px; align-items: flex-start; }
.portal-benefits i { width: 24px; height: 24px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.portal-benefits b { font-size: 16px; font-weight: 700; display: block; margin-bottom: 2px; color: var(--cyan); }
.portal-benefits span { font-size: 14px; color: var(--gray-400); line-height: 1.5; }
.portal-r { display: flex; justify-content: center; }
.portal-card {
  background: linear-gradient(135deg, rgba(15,23,42,.9), rgba(18,16,90,.9));
  border: 1px solid rgba(34,197,94,.15); border-radius: var(--radius);
  padding: 40px 32px; text-align: center; max-width: 360px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.portal-card-ico { width: 48px; height: 48px; color: var(--green); margin: 0 auto 20px; }
.portal-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.portal-card p { font-size: 14px; color: var(--gray-400); line-height: 1.6; margin-bottom: 24px; }
.portal-btn { width: 100%; justify-content: center; margin-bottom: 16px; }
.portal-alt { font-size: 14px; color: var(--gray-400); transition: color .2s; }
.portal-alt:hover { color: var(--green); }

/* STATS */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: var(--container); margin: 0 auto; padding: 60px 24px;
  border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06);
}
.stat { text-align: center; }
.stat-n { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--green); display: block; font-variant-numeric: tabular-nums; }
.stat-l { font-size: 14px; color: var(--gray-400); margin-top: 4px; }

/* TESTIMONIOS */
.tst { padding: 100px 24px; max-width: var(--container); margin: 0 auto; }
.tst-wrap { max-width: 700px; margin: 0 auto; position: relative; }
.tst-track { position: relative; min-height: 200px; }
.tst-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease); pointer-events: none;
}
.tst-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.tst-slide blockquote { font-size: 1.3rem; font-weight: 500; line-height: 1.6; text-align: center; margin-bottom: 24px; color: var(--white); }
.tst-by { display: flex; align-items: center; gap: 12px; justify-content: center; }
.tst-av {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px;
}
.tst-by span { display: flex; flex-direction: column; }
.tst-by b { font-size: 15px; font-weight: 600; color: var(--white); }
.tst-by i { font-size: 13px; color: var(--gray-400); font-style: normal; }
.tst-nav { display: flex; gap: 10px; justify-content: center; margin-top: 32px; }
.t-dot { background: none; border: none; cursor: pointer; padding: 4px; }
.t-dot i { display: block; width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); transition: background .3s, transform .3s; }
.t-dot.active i { background: var(--green); transform: scale(1.3); }

/* NOSOTROS */
.abt { padding: 100px 24px; max-width: var(--container); margin: 0 auto; }
.abt-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.abt-p { font-size: 1.1rem; color: var(--gray-300); line-height: 1.7; margin-bottom: 20px; }
.abt-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.abt-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--cyan); }
.abt-list i { width: 20px; height: 20px; color: var(--green); }
.abt-r { display: flex; justify-content: center; }
.abt-mark {
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,.08), transparent 70%);
  display: flex; align-items: center; justify-content: center;
}
.abt-mark img { width: 160px; height: 160px; }

/* CONTACTO */
.ctc { padding: 100px 24px; max-width: var(--container); margin: 0 auto; }
.ctc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ctc-card {
  background: rgba(15, 23, 42, 0.7); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: transform .4s var(--ease), border-color .3s;
}
.ctc-card:hover { transform: translateY(-6px); border-color: rgba(34,197,94,.15); }
.ctc-card.static { cursor: default; }
.ctc-card i { width: 32px; height: 32px; color: var(--green); margin: 0 auto 16px; }
.ctc-card b { font-size: 16px; font-weight: 700; display: block; margin-bottom: 4px; color: var(--cyan); }
.ctc-card span { font-size: 14px; color: var(--gray-400); }

/* CTA INTERMEDIO */
.cta-mid { padding: 60px 24px; max-width: var(--container); margin: 40px auto; }
.cta-mid-inner {
  text-align: center; padding: 48px 32px;
  background: linear-gradient(135deg, rgba(0,188,212,.08), rgba(34,197,94,.08));
  border: 1px solid rgba(0,188,212,.2); border-radius: var(--radius);
}
.cta-mid-inner h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-mid-inner p { font-size: 1.05rem; color: var(--gray-300); margin-bottom: 24px; }

/* FAQ */
.faq { padding: 100px 24px; max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(15, 23, 42, 0.7); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .3s;
}
.faq-item[open] { border-color: rgba(0,188,212,.25); }
.faq-item summary {
  padding: 18px 24px; font-size: 16px; font-weight: 700; color: #fff;
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 300; color: var(--cyan); transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; font-size: 15px; color: var(--gray-400); line-height: 1.6; }

/* PRE-CTA */
.pre-cta { text-align: center; padding: 80px 24px; max-width: var(--container); margin: 0 auto; }
.pre-cta h3 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.pre-cta p { font-size: 1.1rem; color: var(--gray-400); margin-bottom: 32px; }
.pre-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* DIRECTIONAL GLOW CARDS */
.qk, .svc-card, .hw { position: relative; overflow: hidden; }
.qk::before, .svc-card::before, .hw::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(0,188,212,.08), transparent 60%);
  opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 1;
}
.qk:hover::before, .svc-card:hover::before, .hw:hover::before { opacity: 1; }

/* ITEMS PROHIBIDOS */
.prohibidos { padding: 80px 24px; max-width: var(--container); margin: 0 auto; }
.prohibidos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 32px; }
.prohibido-card {
  background: rgba(220, 38, 38, 0.06); border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: var(--radius-sm); padding: 20px; text-align: center;
  transition: border-color .3s, transform .3s;
}
.prohibido-card:hover { border-color: rgba(220, 38, 38, 0.3); transform: translateY(-4px); }
.prohibido-card i { width: 28px; height: 28px; color: #dc2626; margin: 0 auto 12px; }
.prohibido-card b { font-size: 15px; font-weight: 700; color: #fff; display: block; margin-bottom: 6px; }
.prohibido-card span { font-size: 13px; color: var(--gray-500); }

/* LEGAL MODAL */
.legal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity .3s; }
.legal-overlay.show { opacity: 1; pointer-events: auto; }
.legal-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.95);
  width: 90%; max-width: 700px; max-height: 80vh; overflow: hidden;
  background: var(--navy-900); border: 1px solid var(--cyan-glow); border-radius: var(--radius);
  z-index: 1001; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s;
  display: flex; flex-direction: column;
}
.legal-modal.show { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.legal-modal-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.legal-modal-head h4 { font-size: 18px; font-weight: 700; color: #fff; }
.legal-modal-head button { background: none; border: none; color: var(--gray-400); font-size: 28px; cursor: pointer; line-height: 1; }
.legal-modal-head button:hover { color: #fff; }
.legal-modal-body { padding: 24px; overflow-y: auto; font-size: 15px; color: var(--gray-300); line-height: 1.7; }
.legal-modal-body h5 { color: var(--cyan); margin: 16px 0 8px; font-size: 16px; }
.legal-modal-body p { margin-bottom: 12px; }
.legal-modal-body ul { padding-left: 20px; margin-bottom: 12px; }

/* WHATSAPP FLOATING (ÚNICA PULSACIÓN) */
.wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.45);
  transition: transform 0.3s var(--ease-out);
}
.wa:hover { transform: scale(1.08); }
.wa::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid #22c55e; animation: waPulse 2s cubic-bezier(0.25, 0, 0, 1) infinite; opacity: 0.8;
}
.wa i { width: 28px; height: 28px; color: #fff; }
@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* FOOTER */
.ft { background: rgba(11, 19, 43, 0.95); border-top: 1px solid rgba(0,188,212,.2); padding: 60px 24px 24px; }
.ft-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  max-width: var(--container); margin: 0 auto;
}
.ft-brand img { width: 60px; height: 60px; margin-bottom: 16px; }
.ft-brand b { font-size: 18px; font-weight: 800; display: block; margin-bottom: 8px; color: var(--white); }
.ft-brand p { font-size: 14px; color: var(--gray-400); line-height: 1.6; max-width: 300px; }
.ft-col h5 { font-size: 14px; font-weight: 800; margin-bottom: 16px; color: var(--cyan); }
.ft-col a { display: block; font-size: 14px; color: var(--gray-400); margin-bottom: 10px; transition: color .2s; }
.ft-col a:hover { color: var(--green); }
.ft-bar {
  max-width: var(--container); margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; font-size: 13px; color: var(--gray-500);
}
.ft-legal {
  max-width: var(--container); margin: 16px auto 0; padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.04);
  text-align: center;
}
.ft-legal p { font-size: 12px; color: var(--gray-500); margin: 3px 0; line-height: 1.6; }
.ft-legal strong { color: var(--gray-300); }
.ft-legal a { color: var(--cyan); text-decoration: none; }
.ft-legal a:hover { text-decoration: underline; }

/* ANIMATIONS */
[data-fade] { opacity: 0; transform: translateY(30px); }
[data-mark] { opacity: 0; transform: scale(.9); }

/* RESPONSIVE */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0;
    background: #0f172a; padding: 24px; gap: 16px; border-bottom: 1px solid var(--cyan-glow);
  }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .quick { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .portal-grid { grid-template-columns: 1fr; gap: 40px; }
  .abt-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .ctc-grid { grid-template-columns: 1fr 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .q-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav { padding: 12px 16px; }
  .hero { padding: 100px 16px 60px; }
  .quick { margin-top: -40px; }
  .how-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .ctc-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .field-row { flex-direction: column; }
  .ft-bar { flex-direction: column; gap: 8px; text-align: center; }
}
