/* VisasPro — fresh, modern, professional */

:root {
  --navy-900: #061A4A;
  --navy-800: #0A2463;
  --navy-700: #112A75;
  --blue-600: #1D4ED8;
  --blue-500: #2563EB;
  --blue-400: #3B82F6;
  --blue-50:  #EFF4FF;
  --red-600:  #C5102A;
  --red-500:  #E11D2E;
  --red-50:   #FDECEE;
  --ink-900:  #0B1220;
  --ink-700:  #1F2A44;
  --ink-500:  #475569;
  --ink-400:  #64748B;
  --ink-300:  #94A3B8;
  --line:     #E2E8F0;
  --line-2:   #EEF2F7;
  --bg:       #FFFFFF;
  --bg-soft:  #F7F9FC;
  --bg-cream: #FBFAF7;
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.04), 0 1px 1px rgba(11, 18, 32, 0.03);
  --shadow-md: 0 10px 30px -12px rgba(10, 36, 99, 0.18), 0 4px 10px -4px rgba(10, 36, 99, 0.08);
  --shadow-lg: 0 30px 60px -20px rgba(10, 36, 99, 0.28), 0 14px 24px -10px rgba(10, 36, 99, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
  line-height: 1.5;
}

.serif-italic { font-family: 'Instrument Serif', 'Georgia', serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

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

/* Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; }

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-500); }
.eyebrow.light { color: rgba(255,255,255,0.85); }
.eyebrow.light .dot { background: var(--red-500); }

h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; margin: 0; color: var(--ink-900); text-wrap: balance; }
h1 { font-size: clamp(40px, 5.6vw, 76px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 600; }
h2 { font-size: clamp(30px, 3.6vw, 52px); line-height: 1.14; letter-spacing: -0.03em; padding-bottom: 0.04em; }
h3 { font-size: clamp(20px, 1.6vw, 24px); line-height: 1.2; }
p  { color: var(--ink-500); font-size: 17px; line-height: 1.6; text-wrap: pretty; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary  { background: var(--red-500); color: #fff; box-shadow: 0 10px 24px -10px rgba(225,29,46,0.55); }
.btn-primary:hover  { background: var(--red-600); box-shadow: 0 14px 28px -10px rgba(225,29,46,0.65); }

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

.btn-ghost { background: transparent; color: var(--ink-900); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-900); background: var(--ink-900); color: #fff; }

.btn-light { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.22); backdrop-filter: blur(8px); }
.btn-light:hover { background: rgba(255,255,255,0.2); }

.btn-sm { height: 42px; padding: 0 16px; font-size: 14.5px; }

.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.scrolled { border-color: var(--line); background: rgba(255,255,255,0.94); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 32px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 10px 16px;
  font-size: 15px;
  color: var(--ink-700);
  font-weight: 500;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--navy-800); background: var(--blue-50); }
.nav a.is-active { color: var(--navy-800); background: var(--blue-50); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 14.5px; color: var(--ink-700);
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); transition: all .25s ease;
}
.header-cta .wa:hover { border-color: var(--navy-800); color: var(--navy-800); }

.menu-btn { display: none; background: none; border: 0; width: 42px; height: 42px; border-radius: 999px; }
.menu-btn:hover { background: var(--bg-soft); }
.menu-btn span { display: block; width: 18px; height: 1.5px; background: var(--ink-900); margin: 4px auto; transition: transform .25s; }

@media (max-width: 1080px) {
  .header-cta .wa { display: none; }
}
@media (max-width: 920px) {
  .nav { display: none; }
  .menu-btn { display: block; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 78px 0 auto 0; background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 20px 28px 28px;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.4,.2,.2,1);
  z-index: 49;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block; padding: 16px 0; font-size: 22px; color: var(--ink-900);
  border-bottom: 1px solid var(--line-2);
  font-weight: 500; letter-spacing: -0.01em;
}
.mobile-menu .btn { width: 100%; margin-top: 18px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 110px;
  background:
    radial-gradient(1100px 600px at 80% -10%, #E8EFFF 0%, transparent 60%),
    radial-gradient(800px 600px at 0% 100%, #F4F0FF 0%, transparent 55%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero h1 { margin: 22px 0 22px; }
.hero h1 .accent { color: var(--blue-600); }
.hero h1 .red { color: var(--red-500); }

.hero-lead { font-size: 19px; color: var(--ink-500); max-width: 540px; line-height: 1.55; }

.hero-actions { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 44px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta .stat { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .stat .num {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.025em;
  color: var(--navy-800);
  line-height: 1;
}
.hero-meta .stat .lbl { font-size: 13px; color: var(--ink-400); letter-spacing: 0.02em; }

/* Hero visual — clear US visa composition */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  max-width: 560px;
  margin-left: auto;
}
.hero-visual svg.bg-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

/* --- Boarding pass (behind, peeking out) --- */
.boarding-pass {
  position: absolute;
  top: 4%;
  left: 2%;
  width: 64%;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 14px 30px -14px rgba(10,36,99,0.25), 0 0 0 1px rgba(10,36,99,0.06);
  transform: rotate(-7deg);
  z-index: 1;
}
.boarding-pass .bp-row { display: flex; align-items: center; justify-content: space-between; }
.boarding-pass .bp-airline {
  font-size: 10px; letter-spacing: 0.18em; color: var(--ink-400);
  text-transform: uppercase; font-weight: 600;
}
.boarding-pass .bp-class {
  font-size: 9.5px; letter-spacing: 0.14em; color: var(--ink-400);
  text-transform: uppercase; font-weight: 600;
  padding: 2px 7px; border: 1px solid var(--line); border-radius: 4px;
}
.boarding-pass .bp-route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 4px 0;
}
.boarding-pass .bp-city .code {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 38px;
  line-height: .9;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.boarding-pass .bp-city .city {
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--ink-400); text-transform: uppercase; font-weight: 600;
  margin-top: 3px;
}
.boarding-pass .bp-arc {
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink-300) 0 4px, transparent 4px 8px);
  position: relative;
}
.boarding-pass .bp-arc::before {
  content: '';
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 14px solid var(--blue-600);
  transform: translateX(-50%) rotate(90deg);
}
.boarding-pass .bp-meta {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px;
  border-top: 1px dashed var(--line); padding-top: 10px;
}
.boarding-pass .bp-meta .k {
  font-size: 8.5px; letter-spacing: 0.12em;
  color: var(--ink-400); text-transform: uppercase; font-weight: 600;
}
.boarding-pass .bp-meta .v {
  font-size: 12px; color: var(--ink-900); font-weight: 500;
  margin-top: 1px;
}

/* --- Visa card (front and center) --- */
.visa-card {
  position: absolute;
  top: 18%;
  left: 16%;
  right: 4%;
  bottom: 12%;
  background: #FBFAF3;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 30px 60px -18px rgba(10,36,99,0.35),
    0 14px 24px -10px rgba(10,36,99,0.15),
    0 0 0 1px rgba(10,36,99,0.08);
  transform: rotate(-2deg);
  transition: transform .5s cubic-bezier(.4,.2,.2,1);
  color: var(--ink-900);
  z-index: 2;
}
.visa-card:hover { transform: rotate(0deg) translateY(-4px); }

/* Engraved security pattern */
.visa-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(10,36,99,0.04) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(10,36,99,0.018) 14px 15px),
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(225,29,46,0.012) 14px 15px);
  pointer-events: none;
}

/* Navy header band with stars */
.visa-card .v-banner {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.visa-card .v-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.visa-card .v-banner .country {
  font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,0.95);
}
.visa-card .v-banner .stars {
  display: flex; gap: 4px;
}
.visa-card .v-banner .stars svg { width: 12px; height: 12px; }

/* Red stripe under banner */
.visa-card .v-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--red-500) 0 50%, var(--navy-700) 50% 100%);
}

/* Title row */
.visa-card .v-title-row {
  padding: 18px 22px 10px;
  display: flex; align-items: flex-end; justify-content: space-between;
  position: relative; z-index: 1;
}
.visa-card .v-title-row .pretitle {
  font-size: 9.5px; letter-spacing: 0.16em;
  color: var(--ink-400); text-transform: uppercase; font-weight: 600;
}
.visa-card .v-title-row .title {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 38px);
  color: var(--navy-900);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.visa-card .v-title-row .seal {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--red-50);
  border: 1.5px solid var(--red-500);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.visa-card .v-title-row .seal::after {
  content: ''; position: absolute; inset: -5px;
  border: 1px dashed rgba(225,29,46,0.4);
  border-radius: 50%;
}
.visa-card .v-title-row .seal .eagle {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--red-500);
  font-weight: 400;
}

/* Body */
.visa-card .v-body {
  padding: 8px 22px 12px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  position: relative; z-index: 1;
}
.visa-card .photo {
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  background: linear-gradient(180deg, #DBE3F1 0%, #B8C5DD 100%);
  position: relative; overflow: hidden;
  border: 1px solid rgba(10,36,99,0.18);
}
.visa-card .photo svg { width: 100%; height: 100%; display: block; }
.visa-card .photo::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(255,255,255,0.04) 4px 5px);
  pointer-events: none;
}

.visa-card .fields { display: flex; flex-direction: column; gap: 7px; }
.visa-card .field-row { display: flex; flex-direction: column; gap: 0; }
.visa-card .field-row .k {
  font-size: 8.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-400); font-weight: 600;
}
.visa-card .field-row .v {
  font-size: 13px; color: var(--navy-900); font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.visa-card .field-row.duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}

/* Footer with MRZ */
.visa-card .v-foot {
  margin-top: auto;
  padding: 10px 22px 14px;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-300);
  border-top: 1px dashed rgba(10,36,99,0.18);
  line-height: 1.6;
  position: relative; z-index: 1;
}

/* Big APPROVED stamp overlay */
.visa-card .approved {
  position: absolute;
  right: 22px;
  bottom: 80px;
  transform: rotate(-12deg);
  z-index: 3;
  pointer-events: none;
  text-align: center;
}
.visa-card .approved .stamp {
  border: 3px solid var(--red-500);
  color: var(--red-500);
  padding: 7px 16px 5px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.35);
  opacity: 0.94;
  font-family: 'Geist', sans-serif;
}
.visa-card .approved .sub {
  font-size: 8.5px; letter-spacing: 0.22em;
  color: var(--red-500); margin-top: 4px;
  font-weight: 600;
}

.flight-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.flight-line svg { width: 100%; height: 100%; overflow: visible; }
.flight-line .path-bg { fill: none; stroke: rgba(10,36,99,0.12); stroke-width: 1.4; stroke-dasharray: 5 6; }
.flight-line .path-fg {
  fill: none; stroke: var(--blue-500); stroke-width: 1.8;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawPath 4.5s ease-in-out infinite;
}
@keyframes drawPath {
  0%   { stroke-dashoffset: 1200; }
  55%  { stroke-dashoffset: 0; }
  85%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
.plane-marker { transform-origin: center; }
.plane-anim { animation: planeFly 4.5s ease-in-out infinite; }
@keyframes planeFly {
  0%   { offset-distance: 0%; opacity: 0; }
  5%   { opacity: 1; }
  55%  { offset-distance: 100%; opacity: 1; }
  85%  { offset-distance: 100%; opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.floating-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-900);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
.floating-chip .badge {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue-600);
}
.floating-chip.fc-1 { top: 6%;  right: -2%; animation-delay: 0s; }
.floating-chip.fc-2 { top: 48%; left: -10%; animation-delay: -2s; }
.floating-chip.fc-3 { bottom: 2%; right: 8%; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Trustbar */
.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 18px 0;
}
.trustbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
  font-size: 13.5px; color: var(--ink-500);
}
.trustbar .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; font-weight: 500; color: var(--ink-700);
}
.trustbar .pill .dot { width: 6px; height: 6px; border-radius: 50%; background: #16A34A; box-shadow: 0 0 0 4px rgba(22,163,74,0.15); }

/* Section base */
.section { padding: 110px 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { margin: 16px 0 16px; }
.section-head p { font-size: 18px; }

/* Servicios */
.services {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 30px 28px;
  transition: transform .35s cubic-bezier(.4,.2,.2,1), box-shadow .35s, border-color .35s;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-card .num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--blue-500);
  opacity: .25;
  position: absolute;
  top: 22px; right: 28px;
  transition: opacity .35s, color .35s;
}
.service-card:hover .num { opacity: .85; color: var(--blue-600); }

.service-card .icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background .3s, color .3s, transform .3s;
}
.service-card:hover .icon { background: var(--navy-800); color: #fff; transform: scale(1.04); }

.service-card h3 { margin-bottom: 10px; letter-spacing: -0.02em; }
.service-card p { font-size: 15.5px; margin: 0; }

.service-card ul {
  list-style: none; padding: 0; margin: 20px 0 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.service-card ul li {
  font-size: 14.5px; color: var(--ink-700);
  display: flex; align-items: center; gap: 10px;
}
.service-card ul li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue-50); flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2.5 6.2L4.8 8.3L9.5 3.7' fill='none' stroke='%232563EB' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
}

.service-card .link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 15px; color: var(--navy-800);
}
.service-card .link svg { transition: transform .3s; }
.service-card:hover .link svg { transform: translateX(4px); }

/* Nosotros */
.nosotros { background: var(--bg); }
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) { .nosotros-grid { grid-template-columns: 1fr; gap: 50px; } }

.nosotros-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--blue-600) 110%);
  aspect-ratio: 4 / 5;
  padding: 36px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
}
.nosotros-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 110% -10%, rgba(255,255,255,0.18) 0%, transparent 40%),
    repeating-linear-gradient(135deg, transparent 0 36px, rgba(255,255,255,0.025) 36px 37px);
  pointer-events: none;
}
.nosotros-visual .yrs {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(140px, 18vw, 200px);
  line-height: .9;
  letter-spacing: -0.04em;
  color: #fff;
  position: relative;
  z-index: 1;
}
.nosotros-visual .yrs sup { font-size: 0.32em; vertical-align: top; margin-left: 4px; font-style: normal; font-family: 'Geist', sans-serif; font-weight: 500; }
.nosotros-visual .label { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); position: relative; z-index: 1; }

.nosotros-visual .quote {
  margin-top: 24px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 24px;
}

.nosotros-body h2 { margin-bottom: 22px; }
.nosotros-body p { font-size: 17px; }

.values { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 540px) { .values { grid-template-columns: 1fr; } }
.value { display: flex; gap: 14px; }
.value .v-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg-soft); color: var(--navy-800);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid var(--line);
}
.value h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.value p { font-size: 14px; margin: 0; line-height: 1.5; }

/* Process */
.process {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(37,99,235,0.18) 0%, transparent 60%),
    radial-gradient(800px 500px at -10% 100%, rgba(225,29,46,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.process .section-head h2 { color: #fff; }
.process .section-head p { color: rgba(255,255,255,0.7); }
.process .eyebrow { color: var(--blue-400); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 920px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 30px;
  transition: background .35s, border-color .35s, transform .35s;
}
.step:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.step .step-num {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 24px;
}
.step .step-num .n {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 38px;
  color: #fff;
  letter-spacing: -0.02em;
  font-weight: 400;
  line-height: 1;
}
.step h3 { color: #fff; margin-bottom: 10px; font-size: 22px; }
.step p { color: rgba(255,255,255,0.65); font-size: 15px; }

/* Testimonios */
.testimonios { background: var(--bg-cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }

.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s, box-shadow .3s;
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi .stars { display: flex; gap: 2px; color: #F59E0B; }
.testi p { color: var(--ink-700); font-size: 16px; margin: 0; line-height: 1.55; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-2); }
.testi .who .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #DBEAFE 0%, #C7D2FE 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: var(--navy-800);
  font-size: 15px;
}
.testi .who .meta .name { font-weight: 500; font-size: 14.5px; color: var(--ink-900); }
.testi .who .meta .where { font-size: 13px; color: var(--ink-400); }

/* FAQ */
.faq { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 920px) { .faq-grid { grid-template-columns: 1fr; gap: 24px; } }

.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%; background: none; border: 0;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--blue-600); }
.faq-q .plus {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-soft); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .3s, background .3s, color .3s;
  color: var(--ink-700);
}
.faq-item.open .faq-q .plus { background: var(--navy-800); color: #fff; border-color: var(--navy-800); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,.2,.2,1);
}
.faq-a-inner { padding: 0 60px 22px 0; color: var(--ink-500); font-size: 16px; line-height: 1.65; }

/* Blog */
.blog { background: var(--bg-soft); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card .thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #0A2463 0%, #2563EB 100%);
  position: relative;
  overflow: hidden;
}
.blog-card .thumb.t2 { background: linear-gradient(135deg, #C5102A 0%, #E11D2E 60%, #FBA8B0 100%); }
.blog-card .thumb.t3 { background: linear-gradient(135deg, #061A4A 0%, #112A75 50%, #3B82F6 100%); }

.blog-card .thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.blog-card .body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card .tag {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-600); font-weight: 600;
}
.blog-card h3 { font-size: 20px; letter-spacing: -0.015em; line-height: 1.25; }
.blog-card p { font-size: 14.5px; margin: 0; }
.blog-card .meta {
  margin-top: auto; padding-top: 12px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--ink-400);
}
.blog-card .meta .read { font-weight: 500; color: var(--navy-800); display: inline-flex; align-items: center; gap: 6px; }

/* Contacto */
.contacto {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info h2 { margin-bottom: 22px; }
.contact-info .info-block {
  display: flex; gap: 14px; margin-top: 24px; align-items: flex-start;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.contact-info .info-block:first-of-type { border-top: 0; padding-top: 0; }
.contact-info .info-block .icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--blue-50); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info .info-block h4 { font-size: 15px; margin-bottom: 4px; color: var(--ink-900); }
.contact-info .info-block p, .contact-info .info-block a { font-size: 15px; color: var(--ink-500); margin: 0; }
.contact-info .info-block a:hover { color: var(--navy-800); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 22px; margin-bottom: 6px; }
.contact-form .sub { font-size: 14.5px; color: var(--ink-500); margin-bottom: 26px; }

.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--ink-700); margin-bottom: 6px; letter-spacing: -0.005em;
}
.input, .select, .textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.10);
}
.select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 4.5L6 7.5L9 4.5' fill='none' stroke='%23475569' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 14px;
  padding-right: 40px;
}

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .row-2 { grid-template-columns: 1fr; } }

.tramite-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (max-width: 540px) { .tramite-options { grid-template-columns: 1fr; } }
.tramite-options label {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-700);
  cursor: pointer;
  text-align: center;
  transition: all .2s;
}
.tramite-options input { display: none; }
.tramite-options label:hover { border-color: var(--navy-800); color: var(--navy-800); }
.tramite-options input:checked + label,
.tramite-options label.active { border-color: var(--navy-800); background: var(--navy-800); color: #fff; }

.submit-row { display: flex; gap: 12px; align-items: center; margin-top: 8px; }
.submit-row .legal { font-size: 12.5px; color: var(--ink-400); line-height: 1.4; }

.contact-form .success {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 20px;
  border-radius: 14px;
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px;
}

/* Footer */
.footer {
  background: var(--navy-900);
  color: #fff;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer .logo { margin-bottom: 18px; }
.footer .logo img { height: 28px; filter: brightness(0) invert(1); }
.footer p { color: rgba(255,255,255,0.6); font-size: 14.5px; max-width: 320px; }
.footer h5 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14.5px; color: rgba(255,255,255,0.85); transition: color .2s; }
.footer ul a:hover { color: var(--blue-400); }

.footer-bottom {
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  font-weight: 500; font-size: 14.5px;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.55);
  transition: transform .3s, box-shadow .3s;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -8px rgba(37,211,102,0.65); }
.wa-float .ring {
  position: absolute; inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(37,211,102,0.5);
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(.95); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Scroll reveal — content is visible by default; JS opts-in to hide/reveal */
.reveal {
  transition: opacity .8s cubic-bezier(.4,.2,.2,1), transform .8s cubic-bezier(.4,.2,.2,1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.js-reveal .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none !important; }
}

/* Selection */
::selection { background: var(--navy-800); color: #fff; }
