/* ============================================================
   NAVI — Tu guía. Cualquier ciudad.
   Paleta: #0A0F1E (navy) · #00D4A0 (teal) · #1A2240 (navy 2) · #FFFFFF
   Tipografía: Sora (display) · Plus Jakarta Sans (body)
   ============================================================ */

:root {
  --navy: #0A0F1E;
  --navy-2: #1A2240;
  --navy-3: #232C52;
  --teal: #00D4A0;
  --teal-bright: #00E5C0;
  --blue: #3D7BFF;
  --white: #FFFFFF;
  --text: #E8ECF6;
  --text-dim: #9AA5C0;
  --border: rgba(255, 255, 255, 0.08);
  --border-teal: rgba(0, 212, 160, 0.25);
  --glass: rgba(26, 34, 64, 0.55);
  --grad: linear-gradient(120deg, #00E5C0 0%, #00B4D8 50%, #3D7BFF 100%);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--white); line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }

::selection { background: var(--teal); color: var(--navy); }

/* ---------- Reveal (con CSS defensivo) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow--dark { color: var(--navy); opacity: 0.75; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; padding: 0 24px; }
.section-head p { color: var(--text-dim); margin-top: 14px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: 100px;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--grad);
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(0, 212, 160, 0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(0, 212, 160, 0.4); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--border-teal); background: rgba(0, 212, 160, 0.06); }

.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--full { width: 100%; }

.btn--whatsapp {
  background: #25D366;
  color: #072514;
  box-shadow: 0 8px 30px rgba(7, 37, 20, 0.3);
}
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(7, 37, 20, 0.4); }
.btn--whatsapp svg { width: 22px; height: 22px; }

.btn--google {
  width: 100%;
  background: var(--white);
  color: #1F2430;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
}
.btn--google:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); }
.btn--google svg { width: 20px; height: 20px; }

.btn__pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 160, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(0, 212, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 160, 0); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(10, 15, 30, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 24px; width: auto; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--white); }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
}
.lang-toggle__opt {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  padding: 5px 11px;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.lang-toggle__opt.is-active { background: var(--teal); color: var(--navy); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}
.hero__glow--teal {
  width: 480px; height: 480px;
  background: rgba(0, 212, 160, 0.13);
  top: -120px; left: -120px;
}
.hero__glow--blue {
  width: 560px; height: 560px;
  background: rgba(61, 123, 255, 0.12);
  bottom: -180px; right: -100px;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--teal);
  background: rgba(0, 212, 160, 0.08);
  border: 1px solid var(--border-teal);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 26px;
}
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

.hero__title {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero__title span { display: block; }
.hero__sub {
  color: var(--text-dim);
  font-size: 1.08rem;
  max-width: 520px;
  margin-top: 22px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 42px; }
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.hero__trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Phone mockup ---------- */
.hero__visual { position: relative; display: flex; justify-content: center; }
.phone {
  width: 310px;
  background: linear-gradient(160deg, #161D36, #0D1326);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 212, 160, 0.06);
  position: relative;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone__notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #0A0F1E;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone__screen {
  background: #0C1224;
  border-radius: 32px;
  padding: 44px 16px 18px;
  overflow: hidden;
}
.phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.phone__logo { height: 13px; width: auto; }
.phone__time { font-size: 0.62rem; color: var(--text-dim); }
.phone__greet {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.phone__search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.phone__search svg { width: 14px; height: 14px; }
.phone__chips { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.phone__chip {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 100px;
}
.phone__chip--on { background: rgba(0, 212, 160, 0.14); color: var(--teal); border-color: var(--border-teal); }
.phone__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 9px;
}
.phone__card--hero {
  background: linear-gradient(135deg, rgba(0, 212, 160, 0.16), rgba(61, 123, 255, 0.13));
  border-color: var(--border-teal);
}
.phone__card-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
}
.phone__card-sub { font-size: 0.7rem; color: var(--white); margin-top: 2px; }
.phone__card-meta { display: flex; align-items: center; gap: 8px; margin-top: 9px; }
.phone__avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--navy);
  font-size: 0.58rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone__avatar--alt { background: linear-gradient(135deg, #3D7BFF, #7C5CFF); color: var(--white); }
.phone__avatar--alt2 { background: linear-gradient(135deg, #FF7847, #FF4787); color: var(--white); }
.phone__rating { font-size: 0.66rem; color: var(--teal); }
.phone__btn {
  display: block;
  text-align: center;
  background: var(--teal);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 8px;
  margin-top: 10px;
}
.phone__card-row { display: flex; align-items: center; gap: 10px; }
.phone__card-title2 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--white);
}
.phone__card-sub2 { font-size: 0.64rem; color: var(--text-dim); margin-top: 1px; }

.phone__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 34, 64, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-teal);
  border-radius: 14px;
  padding: 10px 15px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.phone__float svg {
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 50%;
  padding: 3px;
}
.phone__float--1 { top: 16%; right: -4%; animation: float 5s ease-in-out infinite 0.6s; }
.phone__float--2 { bottom: 14%; left: -7%; animation: float 5.5s ease-in-out infinite 1.1s; }
.phone__float-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.8s infinite;
}

/* ============================================================
   STATS
   ============================================================ */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 50px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label { font-size: 0.84rem; color: var(--text-dim); margin-top: 6px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 110px 24px; max-width: var(--maxw); margin: 0 auto; }
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 160, 0.45), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service:hover {
  transform: translateY(-5px);
  border-color: var(--border-teal);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.service:hover::before { opacity: 1; }
.service__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}
.service__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: rgba(0, 212, 160, 0.09);
  border: 1px solid var(--border-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service__icon svg { width: 28px; height: 28px; }
.service__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  opacity: 0.6;
}
.service__tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 5px;
  letter-spacing: 0.02em;
}
.service__desc { color: var(--text-dim); font-size: 0.94rem; margin-top: 14px; }
.service__list { margin-top: 18px; display: grid; gap: 10px; }
.service__list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.88rem;
  color: var(--text);
}
.service__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.25s ease;
}
.service__cta:hover { gap: 13px; }

/* ============================================================
   ASISTENCIA INMEDIATA (SOS)
   ============================================================ */
.sos { padding: 50px 24px 110px; }
.sos__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--grad);
  border-radius: 32px;
  padding: clamp(36px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sos__inner::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  filter: blur(90px);
  top: -160px; right: -120px;
  pointer-events: none;
}
.sos__copy { position: relative; z-index: 1; }
.sos h2 { color: var(--navy); font-size: clamp(1.9rem, 4vw, 2.8rem); }
.sos__desc { color: rgba(10, 15, 30, 0.78); font-size: 1.04rem; margin-top: 16px; max-width: 480px; font-weight: 500; }
.sos__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.sos__chip {
  background: rgba(10, 15, 30, 0.1);
  border: 1px solid rgba(10, 15, 30, 0.16);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 100px;
}
.sos__actions { margin-top: 32px; }
.sos__note { font-size: 0.82rem; color: rgba(10, 15, 30, 0.65); margin-top: 14px; font-weight: 500; }

.sos__visual {
  position: relative;
  z-index: 1;
  background: rgba(10, 15, 30, 0.92);
  border-radius: 24px;
  padding: 26px 22px;
  box-shadow: 0 30px 70px rgba(10, 15, 30, 0.35);
}
.sos__bubble {
  max-width: 88%;
  border-radius: 16px;
  padding: 12px 15px;
  font-size: 0.86rem;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sos__bubble--in {
  background: var(--navy-2);
  color: var(--text);
  border-bottom-left-radius: 5px;
}
.sos__bubble--out {
  background: rgba(0, 212, 160, 0.16);
  border: 1px solid var(--border-teal);
  color: var(--white);
  margin-left: auto;
  border-bottom-right-radius: 5px;
}
.sos__time { font-size: 0.62rem; color: var(--text-dim); align-self: flex-end; }
.sos__typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 4px 0;
}
.sos__typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: typing 1.3s infinite;
}
.sos__typing span:nth-child(2) { animation-delay: 0.18s; }
.sos__typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.25; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}
.sos__typing em {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-style: normal;
  margin-left: 8px;
}

/* ============================================================
   CÓMO FUNCIONA
   ============================================================ */
.how { padding: 60px 24px 110px; max-width: var(--maxw); margin: 0 auto; }
.how__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 26px;
  align-items: start;
}
.how__step {
  text-align: center;
  padding: 20px 10px;
}
.how__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(0, 212, 160, 0.08);
  border: 1px solid var(--border-teal);
  margin-bottom: 20px;
}
.how__step h3 { margin-bottom: 10px; }
.how__step p { color: var(--text-dim); font-size: 0.92rem; max-width: 290px; margin: 0 auto; }
.how__line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--border-teal), transparent);
  margin-top: 52px;
}

/* ============================================================
   TRUST / VERIFICACIÓN
   ============================================================ */
.trust { background: linear-gradient(180deg, transparent, rgba(26, 34, 64, 0.4) 18%, rgba(26, 34, 64, 0.4) 82%, transparent); }
.trust__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 110px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.trust__copy p { color: var(--text-dim); margin-top: 16px; }
.trust__extra { margin-top: 36px; display: grid; gap: 22px; }
.trust__extra-item { display: flex; gap: 16px; align-items: flex-start; }
.trust__extra-item svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 3px; }
.trust__extra-item h4 { font-size: 1rem; margin-bottom: 4px; }
.trust__extra-item p { font-size: 0.88rem; color: var(--text-dim); margin: 0; }

.trust__steps { display: grid; gap: 16px; }
.trust__step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.trust__step:hover { border-color: var(--border-teal); transform: translateX(6px); }
.trust__check {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust__step h4 { font-size: 1rem; }
.trust__step p { font-size: 0.86rem; color: var(--text-dim); margin-top: 3px; }

/* ============================================================
   REGISTRO
   ============================================================ */
.register { padding: 110px 24px; max-width: var(--maxw); margin: 0 auto; }
.register__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.register__copy p { color: var(--text-dim); margin-top: 16px; }
.register__perks { margin-top: 28px; display: grid; gap: 13px; }
.register__perks li {
  position: relative;
  padding-left: 28px;
  font-size: 0.94rem;
}
.register__perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: rgba(0, 212, 160, 0.14);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 3px;
}

.register__card {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 42px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  position: relative;
}
.register__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.register__divider::before,
.register__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
}
.field input,
.field select {
  width: 100%;
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.92rem;
  color: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239AA5C0' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field input::placeholder { color: rgba(154, 165, 192, 0.55); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 212, 160, 0.12);
}
.register__forgot {
  display: block;
  margin: 8px 0 0 auto;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.register__forgot:hover { color: var(--teal); }
.register__switch {
  text-align: center;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.register__switch button {
  background: none;
  border: none;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}
.register__legal {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.register__success { text-align: center; padding: 30px 10px; }
.register__logout {
  display: inline-block;
  margin-top: 20px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.82rem;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}
.register__logout:hover { color: var(--teal); }
.register__success-icon { display: inline-block; margin-bottom: 18px; }
.register__success-icon svg { width: 64px; height: 64px; }
.register__success h3 { margin-bottom: 10px; }
.register__success p { color: var(--text-dim); font-size: 0.94rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 30px 24px 110px; max-width: 820px; margin: 0 auto; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq__item[open] { border-color: var(--border-teal); }
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__item p {
  padding: 0 26px 22px;
  color: var(--text-dim);
  font-size: 0.93rem;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final { padding: 60px 24px 130px; position: relative; overflow: hidden; }
.final::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(0, 212, 160, 0.07);
  filter: blur(120px);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final__inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.final h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
.final p { color: var(--text-dim); font-size: 1.06rem; margin-top: 18px; }
.final__ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); background: rgba(10, 15, 30, 0.8); }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 24px 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand .nav__brand { margin-bottom: 16px; }
.footer__tagline { color: var(--text-dim); font-size: 0.9rem; max-width: 260px; }
.footer__col { display: grid; gap: 11px; align-content: start; }
.footer__col h5 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.footer__col a, .footer__col span {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--teal); }
.footer__bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 22px 24px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-2);
  border: 1px solid var(--border-teal);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 100px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  max-width: min(90vw, 480px);
  text-align: center;
}
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 70px; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__ctas, .hero__trust { justify-content: center; }
  .trust__inner, .register__inner { grid-template-columns: 1fr; gap: 50px; }
  .sos__inner { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; }
  .how__line { display: none; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 15, 30, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0 18px;
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    z-index: -1;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 14px 28px; font-size: 1rem; }
  .nav__burger { display: flex; }
  .nav .btn--sm { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .phone__float--1 { right: 0; }
  .phone__float--2 { left: 0; }
}

@media (max-width: 480px) {
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__inner { grid-template-columns: 1fr; }
  .phone { width: 280px; }
  .btn { width: 100%; }
  .lang-toggle { margin-right: 4px; }
  .hero { padding-top: 120px; }
}

/* Solo gateamos la animación flotante (no las micro-interacciones) */
@media (prefers-reduced-motion: reduce) {
  .phone, .phone__float--1, .phone__float--2 { animation: none; }
}
