/* =========================================================
   UNICAMBIOSVE · Landing page
   Style: dark · neon green/teal · modern fintech
   ========================================================= */

*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --bg: #06090d;
  --bg-2: #0b1117;
  --bg-3: #0f1620;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);

  --text: #e9f1ee;
  --text-dim: #97a6a1;
  --text-muted: #6b7c77;

  --brand-1: #14e8c1;   /* teal */
  --brand-2: #22ff7a;   /* neon green */
  --brand-3: #7bf1ad;   /* mint */

  --grad: linear-gradient(135deg, #14e8c1 0%, #22ff7a 100%);
  --grad-soft: linear-gradient(135deg, rgba(20,232,193,.15), rgba(34,255,122,.15));
  --grad-glow: radial-gradient(60% 60% at 50% 50%, rgba(20,232,193,.55), rgba(34,255,122,0) 70%);

  --shadow-lg: 0 30px 80px -20px rgba(20,232,193,.25), 0 10px 40px -10px rgba(0,0,0,.5);
  --shadow-md: 0 8px 32px -10px rgba(0,0,0,.6);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --container: 1240px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: 'cv11', 'ss01', 'ss03'; /* Inter: alt 'a', curved 'l', single-story 'g' como XE */
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input { font: inherit; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==================== LOADER ==================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.loader-img { width: 140px; height: auto; opacity: .95; filter: drop-shadow(0 0 40px rgba(34,255,122,.45)); }
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 30%;
  background: var(--grad);
  border-radius: 99px;
  animation: loaderMove 1.2s infinite ease-in-out;
}
@keyframes loaderMove {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(330%); }
}

/* ==================== TICKER ==================== */
.ticker {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(6, 9, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-feature-settings: 'tnum' 1, 'lnum' 1, 'zero' 1;
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  padding: 8px 0;
  gap: 36px;
  animation: tickerScroll 50s linear infinite;
}
.ticker-track .t-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ticker-track .t-up { color: var(--brand-2); }
.ticker-track .t-down { color: #ff7a7a; }
.ticker-track .t-pair { color: var(--text); font-weight: 600; }
.ticker-dot { color: var(--brand-1); opacity: .5; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==================== NAV ==================== */
.nav {
  position: sticky;
  top: 33px;
  z-index: 80;
  background: rgba(6,9,13,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: padding .3s ease;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
}
.logo-img { width: 44px; height: 44px; object-fit: contain; }
.logo-text { font-size: 16px; letter-spacing: .04em; }
.logo-text b { color: var(--brand-2); font-weight: 700; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0 auto;
  padding: 0;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a {
  color: var(--text-dim);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--grad);
  color: #062014;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-pill);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(34,255,122,.35);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .2s;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  will-change: transform;
}
.orb-1 {
  width: 500px; height: 500px;
  top: -120px; left: -120px;
  background: radial-gradient(circle, rgba(20,232,193,.65), transparent 70%);
}
.orb-2 {
  width: 600px; height: 600px;
  top: 200px; right: -200px;
  background: radial-gradient(circle, rgba(34,255,122,.45), transparent 70%);
}
.orb-3 {
  width: 400px; height: 400px;
  bottom: -100px; left: 30%;
  background: radial-gradient(circle, rgba(123,241,173,.35), transparent 70%);
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-inner > * { min-width: 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 0 rgba(34,255,122,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,255,122,.6); }
  70% { box-shadow: 0 0 0 12px rgba(34,255,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,255,122,0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.02;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.hero-sub {
  font-size: 17.5px;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 0 36px;
}
.hero-sub b { color: var(--text); font-weight: 600; }

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  white-space: nowrap;
  text-align: center;
}
.btn-block { white-space: normal; }
.btn-primary {
  background: var(--grad);
  color: #062014;
  box-shadow: 0 8px 28px rgba(34,255,122,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(34,255,122,.4);
}
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: rgba(255,255,255,.3);
}
.btn-block { width: 100%; justify-content: center; padding: 16px 24px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

.hero-trust {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--text-dim);
  font-size: 14px;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust svg {
  color: var(--brand-1);
}

/* ==================== CONVERTER ==================== */
.converter {
  position: relative;
  background: linear-gradient(180deg, rgba(20,30,40,.7), rgba(11,17,23,.85));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}
.converter-glow {
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(20,232,193,.35), transparent 50%, rgba(34,255,122,.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.converter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.converter-tabs {
  display: flex;
  background: rgba(255,255,255,.04);
  padding: 4px;
  border-radius: var(--radius-pill);
  gap: 2px;
}
.tab {
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}
.tab.active {
  background: var(--grad);
  color: #062014;
}
.tab:not(.active):hover { color: var(--text); }

/* Título estático del converter (reemplaza tabs) */
.converter-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.converter-title img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 2px;
}
.converter-title strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.converter-title small {
  display: block;
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 1px;
}

.live-dot {
  font-size: 12px;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.live-dot span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-2);
  animation: pulse 2s infinite;
}

.conv-field {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color .2s;
}
.conv-field:focus-within {
  border-color: rgba(34,255,122,.5);
  background: rgba(34,255,122,.04);
}
.conv-field label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.conv-input {
  display: flex;
  align-items: center;
  gap: 12px;
}
.conv-input input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 26px;
  font-weight: 600;
  font-family: var(--font-mono);
  font-feature-settings: 'tnum' 1, 'lnum' 1, 'zero' 1;
  letter-spacing: -0.02em;
  min-width: 0;
}
.conv-input input[readonly] {
  color: var(--brand-3);
}
.conv-currency {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: background .2s;
  flex-shrink: 0;
}
.conv-currency:hover { background: rgba(255,255,255,.1); }
.flag { font-size: 20px; line-height: 1; display: inline-flex; align-items: center; }
.flag-img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
}
.picker-list .pflag .flag-img { width: 26px; height: 26px; }

.conv-swap {
  display: flex;
  margin: -10px auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  align-items: center;
  justify-content: center;
  color: var(--brand-1);
  position: relative;
  z-index: 2;
  transition: transform .3s, color .2s;
}
.conv-swap:hover { transform: rotate(180deg); color: var(--brand-2); }

.conv-rate {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(20,232,193,.05);
  border: 1px solid rgba(20,232,193,.15);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  transition: background .3s, border-color .3s;
}
@keyframes rateFlash {
  0%   { background: rgba(20,232,193,.05); border-color: rgba(20,232,193,.15); }
  20%  { background: rgba(34,255,122,.22); border-color: rgba(34,255,122,.55); box-shadow: 0 0 24px rgba(34,255,122,.25); }
  100% { background: rgba(20,232,193,.05); border-color: rgba(20,232,193,.15); box-shadow: none; }
}
.conv-rate.rate-flash {
  animation: rateFlash 1.4s ease;
}
.rate-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rate-line + .rate-line { margin-top: 6px; }
.rate-line span { color: var(--text-dim); }
.rate-line strong {
  color: var(--brand-2);
  font-weight: 600;
  font-family: var(--font-mono);
  font-feature-settings: 'tnum' 1, 'lnum' 1, 'zero' 1;
  letter-spacing: -0.01em;
}
.rate-line.muted span { color: var(--text-muted); font-size: 12px; }

.rate-meta { margin-top: 8px; padding-top: 8px; border-top: 1px dashed rgba(255,255,255,.06); }
.xe-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--brand-1) !important;
  font-size: 12px !important;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s, gap .2s;
}
.xe-link:hover { color: var(--brand-2) !important; gap: 6px; }
.xe-link svg { opacity: .8; }
.next-refresh {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
  font-size: 11.5px !important;
}

.conv-body > * + * { margin-top: 12px; }
.converter-body > .conv-field + .conv-swap { margin-top: -6px; }
.converter-body > .conv-swap + .conv-field { margin-top: -6px; }
.converter-body > * + * { margin-top: 14px; }
.converter-body > .conv-rate { margin-top: 18px; }

.conv-fineprint {
  margin: 14px 0 0;
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ==================== TRUST BAR ==================== */
.trustbar {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.trustbar-title {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

/* Strip horizontal — logos en color sobre pill blanco compacto */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 4px 10px;
  height: 36px;
  opacity: .85;
  transition: opacity .25s, transform .25s;
}
.logo-pill:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.logo-pill img {
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  /* Sombrita sutil para que los logos oscuros (BBVA, Bancolombia, Banesco) se separen del fondo */
  filter: drop-shadow(0 0 1px rgba(255,255,255,.4)) drop-shadow(0 0 6px rgba(255,255,255,.15));
}

/* ==================== STATS ==================== */
.stats {
  padding: 80px 0;
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
.stat-label {
  font-size: 14px;
  color: var(--text-dim);
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-dark { background: var(--bg-2); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-1);
  margin-bottom: 16px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}
.section-head p {
  font-size: 17px;
  color: var(--text-dim);
  margin: 0;
}

/* ==================== CARDS ==================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  padding: 32px;
  background: linear-gradient(180deg, var(--surface), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: transform .3s, border-color .3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(20,232,193,.3);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(20,232,193,.25);
  color: var(--brand-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.card > p {
  color: var(--text-dim);
  margin: 0 0 18px;
  font-size: 15px;
}
.card ul {
  list-style: none;
  padding: 0; margin: 0;
}
.card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 9px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'><path d='M1 4.5l3.5 3.5L13 1' fill='none' stroke='%2322ff7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}
.card-featured {
  background: linear-gradient(180deg, rgba(20,232,193,.08), transparent);
  border-color: rgba(20,232,193,.3);
}
.card-flag {
  position: absolute;
  top: 18px; right: 18px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #062014;
  background: var(--grad);
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ==================== STEPS ==================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  padding: 28px 22px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--grad);
  color: #062014;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.step p {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0;
}

/* ==================== COUNTRIES ==================== */
.countries {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.country {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s, background .25s, border-color .25s;
}
.country:hover {
  transform: translateY(-2px);
  background: var(--surface-2);
  border-color: rgba(20,232,193,.25);
}
.cflag { font-size: 28px; line-height: 1; }
.country span { font-weight: 600; flex: 1; }
.country small {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .05em;
}

/* ==================== BENEFITS ==================== */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit {
  padding: 32px 24px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s, border-color .25s;
}
.benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(20,232,193,.3);
}
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(20,232,193,.25);
  color: var(--brand-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 10px;
}
.benefit p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin: 0;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stars {
  color: var(--brand-2);
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial p {
  font-size: 15.5px;
  color: var(--text);
  margin: 0 0 22px;
  line-height: 1.6;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #062014;
  font-weight: 700;
  font-size: 16px;
}
.t-author b { display: block; font-size: 14px; }
.t-author small { color: var(--text-muted); font-size: 12.5px; }

/* ==================== FAQ ==================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq details[open] { border-color: rgba(20,232,193,.3); }
.faq summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--brand-2);
  transition: transform .25s;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}

/* ==================== CTA FINAL ==================== */
.cta-final {
  padding: 100px 0;
}
.cta-card {
  background:
    radial-gradient(circle at 20% 30%, rgba(20,232,193,.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(34,255,122,.18), transparent 50%),
    linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid rgba(20,232,193,.25);
  border-radius: 28px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.cta-card p {
  font-size: 16px;
  color: var(--text-dim);
  margin: 0;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-brand img { width: 90px; margin-bottom: 16px; }
.footer-brand p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin: 0;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--text);
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14.5px;
}
.footer-col a {
  color: var(--text-dim);
  transition: color .2s;
}
.footer-col a:hover { color: var(--brand-2); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom small {
  color: var(--text-muted);
  font-size: 12.5px;
}

/* ==================== WHATSAPP FAB ==================== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 70;
  box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.4);
  animation: waPulse 2.5s infinite;
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0%   { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ==================== CURRENCY PICKER MODAL ==================== */
.picker-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.picker-overlay.open { display: flex; }
.picker {
  width: 100%;
  max-width: 420px;
  max-height: 80vh;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.picker-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.picker-head h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
}
.picker-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
}
.picker-close:hover { background: var(--surface-2); color: var(--text); }
#picker-search {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--text);
  outline: 0;
  transition: border-color .2s;
}
#picker-search:focus { border-color: var(--brand-2); }
.picker-list {
  list-style: none;
  margin: 0; padding: 0;
  overflow-y: auto;
  flex: 1;
}
.picker-list li {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s;
}
.picker-list li:hover { background: var(--surface); }
.picker-list li.active {
  background: var(--grad-soft);
  border: 1px solid rgba(20,232,193,.3);
}
.picker-list .pflag { font-size: 22px; }
.picker-list b { font-weight: 600; font-size: 14.5px; }
.picker-list small { color: var(--text-muted); font-size: 12px; display: block; }
.picker-list .pcode {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dim);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 980px) {
  .hero { padding: 32px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-cta-row { margin-bottom: 24px; }
  .hero-sub { margin-bottom: 28px; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(6,9,13,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 14px;
  }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .stats { padding: 48px 0; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer { padding-top: 56px; }
  .cta-final { padding: 60px 0; }
  .cta-card { padding: 36px 28px; flex-direction: column; align-items: flex-start; text-align: left; gap: 24px; }
  .trustbar { padding: 36px 0; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }

  /* Nav tighter */
  .nav-inner { padding: 10px 16px; gap: 10px; }
  .logo-text { display: none; }
  .logo-img { width: 38px; height: 38px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }

  /* Hero */
  .hero { padding: 20px 0 36px; }
  .hero-inner { gap: 24px; }
  .badge { margin-bottom: 18px; padding: 6px 12px; font-size: 12px; }
  .hero h1 { font-size: 38px; line-height: 1.06; margin-bottom: 14px; }
  .hero-sub { font-size: 15px; margin-bottom: 22px; }
  .hero-cta-row { gap: 10px; margin-bottom: 22px; }
  .hero-cta-row .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: 14px; }
  .hero-trust { gap: 14px 20px; font-size: 13px; }
  .hero-trust svg { width: 16px; height: 16px; }

  /* Converter */
  .converter { padding: 16px; border-radius: 20px; max-width: 100%; min-width: 0; }
  .converter-head { margin-bottom: 14px; flex-wrap: wrap; gap: 10px; }
  .tab { padding: 7px 11px; font-size: 12.5px; }
  .tab svg { width: 14px; height: 14px; }
  .conv-field { padding: 10px 12px; min-width: 0; }
  .conv-field label { font-size: 11.5px; margin-bottom: 4px; }
  .conv-input { gap: 8px; min-width: 0; }
  .conv-input input { font-size: 20px; min-width: 0; width: 100%; }
  .conv-currency { padding: 6px 10px; font-size: 13px; gap: 5px; }
  .conv-currency .flag { font-size: 17px; }
  .converter-body > * + * { margin-top: 10px; }
  .conv-swap { width: 36px; height: 36px; }
  .conv-rate { padding: 11px 13px; font-size: 12.5px; }
  .conv-fineprint { margin-top: 10px; font-size: 10.5px; }
  .converter .btn-block { padding: 12px 14px; font-size: 13.5px; }

  /* Sections */
  .section { padding: 44px 0; }
  .section-head { margin-bottom: 28px; }
  .section h2 { font-size: 28px; line-height: 1.12; margin-bottom: 12px; }
  .section-head p { font-size: 15px; }
  .eyebrow { margin-bottom: 10px; font-size: 12px; }

  /* Trust bar */
  .trustbar { padding: 32px 0; }
  .trustbar-title { font-size: 11.5px; margin-bottom: 20px; }
  .logo-tile { height: 64px; padding: 10px 14px; border-radius: 12px; }
  .logo-tile img { max-height: 34px; }

  /* Stats */
  .stats { padding: 36px 0; }
  .stats .container { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 18px 14px; }
  .stat-num { font-size: 32px; margin-bottom: 4px; }
  .stat-label { font-size: 12.5px; }

  /* Cards (servicios) */
  .cards { gap: 14px; }
  .card { padding: 22px; }
  .card-icon { width: 48px; height: 48px; margin-bottom: 16px; }
  .card h3 { font-size: 19px; }
  .card > p { margin-bottom: 14px; font-size: 14px; }
  .card-flag { top: 14px; right: 14px; padding: 3px 8px; font-size: 10px; }

  /* Steps */
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .step {
    padding: 18px 18px;
    text-align: left;
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 2px;
    align-items: start;
  }
  .step-n { grid-row: 1 / span 2; margin-bottom: 0; width: 42px; height: 42px; font-size: 14px; }
  .step h4 { grid-column: 2; font-size: 16px; margin-bottom: 0; }
  .step p { grid-column: 2; font-size: 13.5px; }

  /* Countries */
  .countries { grid-template-columns: 1fr 1fr; gap: 10px; }
  .country { padding: 12px 14px; gap: 10px; }
  .cflag { font-size: 22px; }
  .country span { font-size: 14px; }
  .country small { font-size: 11px; }

  /* Benefits */
  .benefits { grid-template-columns: 1fr; gap: 12px; }
  .benefit {
    padding: 18px 18px;
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 2px;
    align-items: start;
  }
  .benefit-icon { grid-row: 1 / span 2; width: 44px; height: 44px; margin-bottom: 0; border-radius: 12px; }
  .benefit-icon svg { width: 24px; height: 24px; }
  .benefit h4 { grid-column: 2; font-size: 16px; margin-bottom: 0; }
  .benefit p { grid-column: 2; font-size: 13.5px; }

  /* Testimonials */
  .testimonial { padding: 22px; }
  .testimonial p { font-size: 14.5px; margin-bottom: 16px; }
  .t-avatar { width: 38px; height: 38px; font-size: 14px; }
  .stars { margin-bottom: 10px; }

  /* FAQ */
  .faq details { margin-bottom: 10px; }
  .faq summary { padding: 16px 18px; font-size: 14.5px; }
  .faq details p { padding: 0 18px 18px; font-size: 14px; }

  /* CTA final */
  .cta-final { padding: 48px 0; }
  .cta-card { padding: 32px 24px; border-radius: 22px; gap: 18px; }
  .cta-card h2 { font-size: 26px; }
  .cta-card p { font-size: 14.5px; }
  .cta-buttons { gap: 10px; width: 100%; }
  .cta-buttons .btn { flex: 1; justify-content: center; padding: 14px 16px; font-size: 14px; }

  /* Footer */
  .footer { padding-top: 44px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-brand img { width: 70px; margin-bottom: 12px; }
  .footer-brand p { font-size: 13.5px; }
  .footer-col h5 { margin-bottom: 12px; }
  .footer-col ul li { margin-bottom: 8px; font-size: 13.5px; }
  .footer-bottom { padding: 16px 0; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* WhatsApp FAB */
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 24px; height: 24px; }

  /* Buttons general */
  .btn { padding: 12px 18px; font-size: 14px; }
  .btn-lg { padding: 14px 22px; font-size: 15px; }
  .btn-block { padding: 14px 18px; }
}

/* ==================== CAROUSELS (móvil) ==================== */
.carousel-dots { display: none; }

@media (max-width: 700px) {
  .cards,
  .steps,
  .testimonials {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 6px 16px 18px;
    margin: 0 -16px;
    scrollbar-width: none;
  }
  .cards::-webkit-scrollbar,
  .steps::-webkit-scrollbar,
  .testimonials::-webkit-scrollbar { display: none; }

  .cards > .card,
  .steps > .step,
  .testimonials > .testimonial {
    flex: 0 0 86%;
    scroll-snap-align: center;
    min-width: 0;
  }

  /* Logo strip móvil: scroll horizontal silencioso con pills */
  .logo-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding: 0 16px 4px;
    margin: 0 -16px;
    justify-content: flex-start;
  }
  .logo-strip::-webkit-scrollbar { display: none; }
  .logo-pill {
    height: 32px;
    padding: 4px 8px;
    flex-shrink: 0;
  }
  .logo-pill img { height: 22px; }

  /* Reset step a layout vertical centrado para el carrusel */
  .step {
    display: block;
    text-align: center;
    padding: 26px 22px;
  }
  .step-n {
    display: inline-flex;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    grid-row: auto;
  }
  .step h4 { grid-column: auto; font-size: 17px; margin-bottom: 6px; }
  .step p { grid-column: auto; font-size: 14px; }

  /* Mantener el card destacado visible en el carrusel */
  .card-featured { transform: scale(1); }

  /* Indicadores de paginación */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding: 0;
  }
  .carousel-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    transition: background .25s, width .25s;
    cursor: pointer;
  }
  .carousel-dot.active {
    background: var(--brand-2);
    width: 24px;
    border-radius: 99px;
  }
}
