/* =========================================================
   SBR — Estilos
   Mobile-first · vanilla CSS
   ========================================================= */

/* ===================== TOKENS ===================== */
:root {
  --navy: #1A2B4A;
  --navy-2: #11203D;
  --navy-3: #0E1B2C;
  --ink: #0A1320;
  --ink-soft: #2C3A4F;
  --muted: #5C6B82;
  --muted-2: #8C97A8;
  --line: #E6E9EF;
  --bg: #FFFFFF;
  --off: #F6F7FA;
  --off-2: #EEF1F6;
  --lime: #D4F36B;
  --lime-2: #C5E754;
  --whatsapp: #25D366;
  --coral: #FF6B47;
  --shadow-sm: 0 1px 2px rgba(14,27,44,.05);
  --shadow-md: 0 8px 24px rgba(14,27,44,.08);
  --shadow-lg: 0 30px 60px -20px rgba(14,27,44,.25);
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.page-loader {
  position: fixed;
  inset: 0;
  background: #0E1B2C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader__logo img {
  height: 32px;
  opacity: 0.9;
}
.page-loader__spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(212, 243, 107, 0.2);
  border-top-color: #D4F36B;
  border-radius: 50%;
  animation: spinner-rotate 0.8s linear infinite;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@keyframes spinner-rotate {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader__spinner { animation: none; }
}
.section-divider-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 243, 107, 0.15) 50%, transparent 100%);
  pointer-events: none;
}
section.hero + section::before,
.sec + .sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 243, 107, 0.15) 50%, transparent 100%);
  pointer-events: none;
}
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 920px; }
.center { text-align: center; }

/* ===================== TIPOGRAFÍA ===================== */
.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--navy);
  text-wrap: balance;
}
.h2 em { font-style: italic; font-weight: 400; color: var(--ink-soft); letter-spacing: -0.03em; }

.h1-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  color: #fff;
  text-wrap: balance;
  padding: 0.04em 0 0.08em;
}
.h1-display em { font-style: italic; color: var(--lime); }

.lede {
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 56px;
  text-wrap: pretty;
}

.kicker {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 22px;
}
.kicker--lime { color: var(--lime); }
.kicker--lined {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  letter-spacing: .22em;
}
.kicker--lined::before,
.kicker--lined::after {
  content: "";
  display: block; width: 28px; height: 1px;
  background: rgba(212,243,107,.55);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(212,243,107,.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212,243,107,.25); }
  50% { box-shadow: 0 0 0 8px rgba(212,243,107,0); }
}

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 8px; vertical-align: middle; }
.dot--live { background: var(--lime); box-shadow: 0 0 0 3px rgba(212,243,107,.3); animation: pulse 2s ease-in-out infinite; }

/* ===================== BOTONES ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 250ms ease,
              background 200ms ease,
              color 200ms ease,
              border-color 200ms ease;
  white-space: nowrap;
  will-change: transform, box-shadow;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(-1px) scale(0.98); transition-duration: 100ms; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }

/* PRIMARY — sombra tintada navy en todas las apariciones */
.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 1px 2px rgba(26,43,74,0.10), 0 4px 12px -4px rgba(26,43,74,0.18);
}
.btn--primary:hover {
  background: var(--ink);
  color: #fff;
  box-shadow:
    0 2px 4px rgba(26,43,74,0.12),
    0 12px 24px -6px rgba(26,43,74,0.28),
    0 24px 48px -12px rgba(26,43,74,0.32);
}

.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 24px -6px rgba(26,43,74,0.24);
}

/* WHITE — sobre fondos navy, sombra tintada lima */
.btn--white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px -4px rgba(212,243,107,0.20);
}
.btn--white:hover {
  color: var(--navy);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.10),
    0 12px 24px -6px rgba(212,243,107,0.35),
    0 24px 48px -16px rgba(212,243,107,0.30);
}

/* WHATSAPP — verde tintado consistente */
.btn--whatsapp {
  background: #25D366 !important;
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 1px 2px rgba(37,211,102,0.18), 0 4px 12px -4px rgba(37,211,102,0.24);
}
.btn--whatsapp:hover {
  background: #1FB858 !important;
  color: #fff !important;
  box-shadow:
    0 2px 4px rgba(37,211,102,0.20),
    0 12px 24px -6px rgba(37,211,102,0.36),
    0 24px 48px -16px rgba(37,211,102,0.30);
}
.btn--whatsapp svg { fill: #fff; color: #fff; }

.btn--ghost-invert {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.22);
}
.btn--ghost-invert:hover {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.32);
}
.btn--block { width: 100%; }

@media (max-width: 639px) {
  .btn--block-mob { width: 100%; }
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible {
  outline-offset: 3px;
}

/* ===================== REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===================== AURORA ===================== */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aurora__blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; animation: float 18s ease-in-out infinite; }
.aurora--page .aurora__blob--1 { width: 480px; height: 480px; top: -150px; right: -150px; background: rgba(212,243,107,.45); }
.aurora--page .aurora__blob--2 { width: 380px; height: 380px; bottom: -100px; left: -100px; background: rgba(26,43,74,.08); animation-delay: -6s; }
.aurora--page .aurora__blob--3 { width: 220px; height: 220px; top: 30%; left: 60%; background: rgba(255,107,71,.06); animation-delay: -12s; }
.aurora--navy .aurora__blob { opacity: .25; }
.aurora--navy .aurora__blob--1 { width: 600px; height: 600px; top: -200px; right: -200px; background: rgba(212,243,107,.7); }
.aurora--navy .aurora__blob--2 { width: 400px; height: 400px; bottom: -150px; left: -100px; background: rgba(80,120,200,.5); animation-delay: -6s; }
.aurora--navy-strong .aurora__blob { opacity: .35; }
.aurora--navy-strong .aurora__blob--1 { width: 700px; height: 700px; top: -250px; left: 50%; transform: translateX(-50%); background: rgba(212,243,107,.55); }
.aurora--navy-strong .aurora__blob--2 { width: 400px; height: 400px; bottom: -150px; right: -100px; background: rgba(80,120,200,.5); animation-delay: -8s; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.05); }
  66% { transform: translate(-30px,30px) scale(.95); }
}

/* ===================== HEADER ===================== */
.hdr {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(255,255,255,0);
  transition: background .3s ease, box-shadow .3s ease;
}
.hdr.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
}
.hdr__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.hdr__brand { display: flex; align-items: center; flex-shrink: 0; }
.hdr__logo { height: 40px; width: auto; display: block; }
.hdr__nav { display: none; gap: 32px; }
.hdr__nav a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 6px 0;
  letter-spacing: -0.005em;
  transition: color 200ms ease;
}
.hdr__nav a:hover { color: var(--navy); }
.hdr__nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--lime); transform: scaleX(0); transform-origin: left;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.hdr__nav a:hover::after { transform: scaleX(1); }
.hdr__right { display: flex; align-items: center; gap: 12px; }
.hdr__right .btn--sm { display: none; }

/* Burger */
.hdr__burger {
  width: 44px; height: 44px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: 10px;
}
.hdr__burger span {
  display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hdr__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hdr__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.hdr__mobile {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 20px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 8px 24px rgba(14,27,44,.06);
}
.hdr__mobile[hidden] { display: none; }
.hdr__mobile a:not(.btn) { padding: 14px 0; font-size: 16px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--off-2); }
.hdr__mobile a:not(.btn):last-of-type { border-bottom: 0; }
.hdr__mobile .btn { margin-top: 12px; }

@media (min-width: 768px) {
  .hdr__logo { height: 44px; }
  .hdr__right .btn--sm { display: inline-flex; }
}
@media (min-width: 1024px) {
  .hdr__nav { display: flex; }
  .hdr__burger { display: none; }
  .hdr__mobile { display: none !important; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 78% 50%, rgba(212,243,107,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 35%, rgba(26,43,74,0.04) 0%, transparent 60%);
}
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .hero__particles { display: none; }
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center;
}
.hero__text { position: relative; z-index: 2; }
.hero__visual-zone {
  position: relative;
  width: 100%;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* ===================== HERO — IPHONE MOCKUP ===================== */
.iphone-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  perspective-origin: 50% 45%;
  pointer-events: auto;
}
.iphone__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 140%;
  height: 100%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 55% 45% at 42% 38%, rgba(26,43,74,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 35% at 58% 78%, rgba(212,243,107,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26,43,74,0.06) 0%, transparent 80%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}
.iphone {
  position: relative;
  z-index: 1;
  width: 220px;
  aspect-ratio: 9 / 18;
  opacity: 0;
  transform: scale(0.88);
  will-change: opacity, transform;
}
.iphone__tilter {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;
}
.iphone__bezel {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, #22344E 0%, #0E1A2C 48%, #050912 100%);
  border-radius: 42px;
  padding: 6px;
  box-shadow:
    /* Highlight superior (luz cenital) */
    inset 0 1px 0 rgba(255,255,255,0.12),
    /* Bordes internos definidos */
    inset 0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 0 2px rgba(26,43,74,0.4),
    /* Sombras tintadas navy multicapa */
    0 1px 2px rgba(26,43,74,0.08),
    0 8px 16px -4px rgba(26,43,74,0.18),
    0 24px 40px -12px rgba(14,27,44,0.45),
    0 48px 80px -24px rgba(14,27,44,0.55),
    /* Hairline outer */
    0 0 0 0.5px rgba(255,255,255,0.06);
}
.iphone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 120% 50% at 50% -10%, rgba(70,100,160,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 110%, rgba(212,243,107,0.04) 0%, transparent 65%),
    linear-gradient(178deg, #16273F 0%, #0B1626 60%, #08111F 100%);
  border-radius: 36px;
  overflow: hidden;
  padding: 40px 8px 12px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.04);
}
.iphone__screen::after {
  /* Reflejo glassy sutil */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 36px 36px 0 0;
}
.iphone__notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 18px;
  background: #03060c;
  border-radius: 100px;
  z-index: 3;
  box-shadow:
    inset 0 0 0 0.5px rgba(255,255,255,0.06),
    inset 0 -1px 1px rgba(0,0,0,0.5);
}
.iphone__statusbar {
  text-align: center;
  margin-bottom: 16px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.iphone__time {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  font-feature-settings: "tnum" 1;
}
.iphone__date {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  margin-top: 5px;
  letter-spacing: 0.02em;
}
.iphone__notifs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 3px;
  flex: 1;
}
.iphone__notif {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: 13px;
  padding: 8px 9px;
  opacity: 0;
  transform: translateY(14px);
  will-change: transform, opacity;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 1px 2px rgba(0,0,0,0.06),
    0 6px 14px -6px rgba(0,0,0,0.10);
}
.iphone__notif-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
}
.iphone__notif-icon svg { width: 13px; height: 13px; display: block; }
.iphone__notif--lead .iphone__notif-icon { background: var(--lime); color: var(--navy); }
.iphone__notif--stat .iphone__notif-icon { background: var(--coral); color: #fff; }
.iphone__notif-body { flex: 1; min-width: 0; }
.iphone__notif-app {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.iphone__notif-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.iphone__notif-meta {
  font-size: 9.5px;
  color: var(--muted);
  line-height: 1.25;
  margin-top: 1px;
}
.iphone__notif-amount {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2px;
}
.iphone__homebar {
  width: 34%;
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 100px;
  margin: 6px auto 0;
}
.iphone__pill {
  position: absolute;
  z-index: 4;
  top: -18px;
  left: -28px;
  background: #fff;
  padding: 8px 12px 8px 10px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 1px 2px rgba(26,43,74,0.06),
    0 8px 20px -4px rgba(26,43,74,0.18),
    0 18px 36px -12px rgba(26,43,74,0.30);
  opacity: 0;
  transform: translateY(-6px);
  will-change: opacity, transform;
}
.iphone__pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(212,243,107,0.30);
  animation: iphone-pill-pulse 2.2s ease-in-out infinite;
}
@keyframes iphone-pill-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(212,243,107,0.30); }
  50% { box-shadow: 0 0 0 6px rgba(212,243,107,0); }
}

/* Tablet & desktop sizes */
@media (min-width: 768px) {
  .iphone { width: 252px; }
  .iphone__pill { top: -20px; left: -34px; font-size: 12.5px; padding: 9px 13px 9px 11px; }
  .iphone__pill-dot { width: 8px; height: 8px; }
}
@media (min-width: 1024px) {
  .iphone-stage { perspective: 1000px; }
  .iphone { width: 296px; }
  .iphone__bezel { border-radius: 48px; padding: 7px; }
  .iphone__screen { border-radius: 42px; padding: 46px 9px 14px; }
  .iphone__screen::after { border-radius: 42px 42px 0 0; }
  .iphone__notch { top: 13px; height: 22px; width: 33%; }
  .iphone__notif { gap: 10px; padding: 10px 11px; border-radius: 14px; }
  .iphone__notif-icon { width: 28px; height: 28px; border-radius: 8px; }
  .iphone__notif-icon svg { width: 16px; height: 16px; }
  .iphone__notif-app { font-size: 10px; }
  .iphone__notif-title { font-size: 13px; }
  .iphone__notif-meta { font-size: 11px; }
  .iphone__notif-amount { font-size: 13px; }
  .iphone__time { font-size: 52px; letter-spacing: -0.035em; }
  .iphone__date { font-size: 11.5px; }
  .iphone__pill { top: -24px; left: -40px; font-size: 13px; padding: 10px 14px 10px 12px; }
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 16px 0 22px;
  color: var(--navy);
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: break-word;
}
.hero__title-italic { font-style: normal; color: var(--ink-soft); font-weight: 500; }
.hero__title em { font-style: italic; font-weight: 500; color: var(--navy); }
.hero__underline {
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  background-image: linear-gradient(to top, rgba(212,243,107,.85) 0, rgba(212,243,107,.85) 14%, transparent 14%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 2px;
}
.hero__sub {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 580px;
}
.hero__ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.hero__ctas .btn { width: 100%; }
.hero__micro { display: inline-flex; align-items: center; font-size: 13px; color: var(--muted); }

/* Hero CTA — tinted brand shadows (lift + glow) */
.hero .btn { transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease; }
.hero .btn--primary { box-shadow: 0 2px 8px rgba(26,43,74,.10); }
.hero .btn--primary:hover {
  transform: translateY(-3px);
  background: var(--ink);
  box-shadow: 0 22px 44px -10px rgba(26,43,74,.36), 0 4px 14px rgba(26,43,74,.14);
}
.hero .btn--whatsapp { box-shadow: 0 2px 8px rgba(37,211,102,.14) !important; }
.hero .btn--whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -10px rgba(37,211,102,.42), 0 4px 14px rgba(37,211,102,.18) !important;
}

@media (min-width: 640px) {
  .hero__ctas { flex-direction: row; gap: 14px; }
  .hero__ctas .btn { width: auto; }
}
@media (min-width: 768px) {
  .hero__visual-zone { min-height: 500px; }
}
@media (min-width: 1024px) {
  .hero { padding: 72px 0 100px; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .hero__visual-zone { min-height: 580px; }
}

/* ===================== SECCIONES BASE ===================== */
.sec { position: relative; padding: 84px 0; overflow: hidden; }
.sec--white { background: #fff; }
.sec--off { background: var(--off); }
.sec--navy { background: var(--navy-3); color: rgba(255,255,255,.85); }
.sec--navy .h2 { color: #fff; }
.sec--navy .h2 em { color: rgba(255,255,255,.7); }
@media (min-width: 768px) { .sec { padding: 120px 0; } }
@media (min-width: 1024px) { .sec { padding: 132px 0; } }

/* ===================== PROBLEMAS ===================== */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .grid-3 { gap: 28px; } }

.card {
  background: #fff;
  border: 1px solid rgba(26,43,74,0.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 350ms ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(26,43,74,0.03),
    0 4px 12px -4px rgba(26,43,74,0.04);
}
.card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime) 0%, var(--lime-2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}
.sec--white .card { background: var(--off); }
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(26,43,74,0.04);
  box-shadow:
    0 2px 4px rgba(26,43,74,0.04),
    0 12px 24px -8px rgba(26,43,74,0.10),
    0 32px 60px -20px rgba(26,43,74,0.22);
}
.card:hover::before { transform: scaleX(1); }
.card__tag {
  font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 20px; display: inline-block;
}
.card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(26,43,74,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); margin-bottom: 22px;
  transition: background 350ms ease, color 350ms ease, border-color 350ms ease, transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 2px rgba(26,43,74,0.04);
}
.sec--white .card .card__icon { background: #fff; }
.card:hover .card__icon {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  transform: rotate(-4deg) scale(1.05);
  box-shadow: 0 8px 20px -6px rgba(212,243,107,0.55);
}
.card__title {
  font-family: var(--serif); font-weight: 500;
  font-size: 23px; line-height: 1.2; letter-spacing: -.015em;
  margin: 0 0 14px;
  color: var(--navy);
}
.card__body { color: var(--muted); font-size: 15px; line-height: 1.65; margin: 0; }

/* ===================== PROCESO ===================== */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 12px; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.proc-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(26,43,74,0.08);
  border-radius: var(--r-lg);
  padding: 28px 24px 22px;
  display: flex; flex-direction: column;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 350ms ease;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(26,43,74,0.03),
    0 4px 12px -4px rgba(26,43,74,0.04);
}
.proc-card::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--lime) 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}
.proc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26,43,74,0.04);
  box-shadow:
    0 2px 4px rgba(26,43,74,0.04),
    0 12px 24px -8px rgba(26,43,74,0.10),
    0 32px 60px -20px rgba(26,43,74,0.24);
}
.proc-card:hover::after { transform: scaleX(1); }
.proc-card__num {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--serif);
  font-weight: 500; font-style: italic;
  font-size: 32px; line-height: 1;
  color: rgba(212,243,107,.55);
  pointer-events: none; user-select: none;
  transition: color 350ms ease, opacity 350ms ease, transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.85;
}
.proc-card:hover .proc-card__num { opacity: 1; color: var(--lime); transform: translateX(-2px); }
.proc-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime);
  background: var(--navy);
  margin-bottom: 18px;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 350ms ease;
  box-shadow: 0 4px 10px -3px rgba(26,43,74,0.30);
}
.proc-card:hover .proc-card__icon {
  transform: rotate(-3deg) scale(1.04);
  box-shadow: 0 8px 18px -4px rgba(26,43,74,0.40);
}
.proc-card__accent {
  width: 32px; height: 2px;
  background: var(--lime); border-radius: 100px;
  margin-bottom: 14px;
  transition: width 350ms ease;
}
.proc-card:hover .proc-card__accent { width: 48px; }
.proc-card__title {
  font-family: var(--serif); font-weight: 500;
  font-size: 20px; line-height: 1.22; letter-spacing: -.015em;
  margin: 0 0 12px;
  color: var(--navy);
}
.proc-card__body {
  color: var(--muted); font-size: 14.5px; line-height: 1.62;
  margin: 0 0 22px;
  flex: 1;
}
.proc-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid rgba(26,43,74,0.06);
  font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}
.proc-card__footer svg { transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), color .35s; }
.proc-card:hover .proc-card__footer svg { transform: translateX(5px); color: var(--navy); }

/* ===================== METRICS ===================== */
.sec--metrics { padding-top: 32px; padding-bottom: 32px; }
@media (min-width: 768px) { .sec--metrics { padding-top: 48px; padding-bottom: 48px; } }
.metrics {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  padding: 36px 28px;
  background: linear-gradient(135deg, var(--off) 0%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}
@media (min-width: 768px) { .metrics { grid-template-columns: repeat(3, 1fr); padding: 44px 36px; } }
.metric { text-align: left; }
.metric:not(:last-child) { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
@media (min-width: 768px) {
  .metric { text-align: center; padding-bottom: 0; border-bottom: 0; padding: 0 16px; }
  .metric:not(:last-child) { border-right: 1px solid var(--line); }
}
.metric__num {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(40px, 5vw, 56px); line-height: 1;
  letter-spacing: -.02em;
  color: var(--navy); margin-bottom: 8px;
}
.metric__label { font-size: 14px; line-height: 1.4; color: var(--muted); }
.metric__foot { font-size: 12px; color: var(--muted-2); text-align: center; margin-top: 16px; font-style: italic; }

/* ===================== OFERTA ===================== */
.offer {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  position: relative;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .offer { padding: 48px 44px; } }
.offer::before {
  content: "";
  position: absolute; top: 0; left: 24px; right: 24px;
  height: 4px; background: var(--lime);
  border-radius: 0 0 8px 8px;
}
.offer__tag {
  display: inline-flex; align-items: center;
  background: var(--navy); color: var(--lime);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.offer__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(24px, 3.4vw, 36px); line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--navy);
  margin: 0 0 18px;
  text-wrap: balance;
}
.offer__body { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 28px; }
.offer__pact {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--off);
  border-radius: var(--r-md);
}
.offer__pact-row { display: flex; gap: 14px; align-items: flex-start; }
.offer__pact-row p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.offer__pact-row p strong { color: var(--navy); }
.offer__pact-mark {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--lime); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.offer__pact-mark--alt { background: var(--coral); color: #fff; }

/* ===================== GARANTÍA ===================== */
.sec--guarantee { padding: 112px 0; text-align: center; }
@media (min-width: 768px) { .sec--guarantee { padding: 140px 0; } }
@media (min-width: 1024px) { .sec--guarantee { padding: 160px 0; } }
.sec--guarantee .container { position: relative; z-index: 1; }
.guarantee__shield {
  display: inline-flex; align-items: center; justify-content: center;
  width: 104px; height: 104px; border-radius: 26px;
  background:
    radial-gradient(circle at 30% 30%, rgba(212,243,107,0.18), rgba(212,243,107,0.04) 60%),
    rgba(212,243,107,0.06);
  border: 1px solid rgba(212,243,107,0.28);
  color: var(--lime);
  margin-bottom: 32px;
  box-shadow:
    inset 0 1px 0 rgba(212,243,107,0.20),
    0 0 0 8px rgba(212,243,107,0.04),
    0 20px 50px -16px rgba(212,243,107,0.30);
}
.guarantee__shield svg { width: 60px; height: 60px; }
.guarantee__sub {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(20px, 2.6vw, 30px); line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--lime);
  max-width: 720px; margin: 0 auto 26px;
  text-wrap: pretty;
}
.guarantee__body {
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.75;
  color: rgba(255,255,255,.72);
  max-width: 620px; margin: 0 auto 44px;
  text-wrap: pretty;
}

/* ===================== EQUIPO ===================== */
.team {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  margin-top: 32px; margin-bottom: 64px;
}
@media (min-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); gap: 48px; } }
@media (min-width: 1024px) { .team { gap: 64px; margin-bottom: 80px; } }
.member { display: flex; flex-direction: column; align-items: flex-start; }
.member__photo {
  width: 100%; max-width: 320px; aspect-ratio: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--off);
  border: 1px solid rgba(26,43,74,0.06);
  margin-bottom: 24px;
  position: relative;
  box-shadow:
    0 2px 4px rgba(26,43,74,0.04),
    0 16px 32px -12px rgba(26,43,74,0.18),
    0 32px 60px -24px rgba(26,43,74,0.20);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 400ms ease;
}
.member__photo::after {
  /* Highlight glassy sutil arriba */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 30%);
  pointer-events: none;
}
.member:hover .member__photo {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(26,43,74,0.04),
    0 20px 36px -10px rgba(26,43,74,0.22),
    0 40px 72px -24px rgba(26,43,74,0.26);
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.95) contrast(1.02); }
.member__role { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; }
.member__name { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.4vw, 30px); line-height: 1.15; margin: 0 0 18px; letter-spacing: -.015em; color: var(--navy); }
.member__bio { font-size: 15px; line-height: 1.72; color: var(--ink-soft); margin: 0; max-width: 46ch; }

/* HISTORIA COMPARTIDA */
.story {
  background: linear-gradient(180deg, var(--off) 0%, #fff 100%);
  border: 1px solid rgba(26,43,74,0.06);
  border-radius: var(--r-xl);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(26,43,74,0.03),
    0 8px 24px -12px rgba(26,43,74,0.10);
}
.story::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--lime);
  border-radius: 0 0 4px 4px;
}
@media (min-width: 768px) { .story { padding: 56px clamp(32px, 5vw, 72px); text-align: center; } }
.story__title {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.18;
}
.story p {
  font-size: 16px; line-height: 1.78;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 0 auto 18px;
  text-wrap: pretty;
}
.story p:last-child { margin-bottom: 0; }

/* ===================== FAQ ===================== */
.faq { display: flex; flex-direction: column; }
.faq__item {
  border-bottom: 1px solid rgba(26,43,74,0.08);
  transition: background 250ms ease;
}
.faq__item:first-child { border-top: 1px solid rgba(26,43,74,0.08); }
.faq__q {
  display: flex; align-items: center; gap: 18px;
  width: 100%; padding: 26px 4px; text-align: left;
  color: var(--ink);
  transition: color 200ms ease;
}
.faq__q:hover { color: var(--navy); }
.faq__num {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  color: var(--muted-2); font-size: 16px; flex-shrink: 0; width: 30px;
  transition: color 250ms ease, opacity 250ms ease;
}
.faq__item:hover .faq__num { color: var(--coral); }
.faq__item--open .faq__num { color: var(--coral); opacity: 1; }
.faq__text {
  flex: 1;
  font-family: var(--sans);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.faq__icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(26,43,74,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
  transition: background 250ms ease, transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__item:hover .faq__icon { background: rgba(26,43,74,0.09); }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--ink); border-radius: 2px;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), background 200ms ease;
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; }
.faq__item--open .faq__icon {
  background: var(--navy);
  transform: rotate(90deg);
}
.faq__item--open .faq__icon::before, .faq__item--open .faq__icon::after { background: var(--lime); }
.faq__item--open .faq__icon::after { transform: scaleY(0); }
.faq__a-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 450ms cubic-bezier(0.22, 1, 0.36, 1), opacity 350ms ease;
}
.faq__item--open .faq__a-wrap {
  max-height: 999px;
  opacity: 1;
}
.faq__a {
  padding: 0 52px 0 48px;
}
.faq__a p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  padding-bottom: 28px;
  max-width: 64ch;
}
@media (max-width: 639px) {
  .faq__a { padding: 0 0 0 48px; }
}

/* ===================== CTA FINAL ===================== */
.sec--cta-final { padding: 120px 0 130px; text-align: center; }
@media (min-width: 768px) { .sec--cta-final { padding: 140px 0 150px; } }
@media (min-width: 1024px) { .sec--cta-final { padding: 160px 0 170px; } }
.cta__sub {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  max-width: 600px;
  margin: 0 auto 8px;
  text-align: center;
  text-wrap: pretty;
}
.cta-row { display: flex; flex-direction: column; justify-content: center; gap: 12px; margin: 36px 0 8px; flex-wrap: wrap; align-items: center; }
.cta-row .btn { width: 100%; max-width: 320px; }
@media (min-width: 640px) {
  .cta-row { flex-direction: row; gap: 14px; }
  .cta-row .btn { width: auto; max-width: none; }
}
.fineprint { font-size: 14px; color: rgba(255,255,255,.55); margin: 24px 0 0; }
.fineprint a {
  color: var(--lime);
  border-bottom: 1px solid rgba(212,243,107,.4);
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
}
.fineprint a:hover { color: #fff; border-bottom-color: #fff; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,243,107,0.20) 50%, transparent 100%);
}
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 48px; } }
.footer__logo { height: 38px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer__tag { font-size: 13px; color: rgba(255,255,255,.5); margin: 0; line-height: 1.5; }
.footer__heading {
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.95);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}
.footer__heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 18px; height: 1px;
  background: rgba(212,243,107,0.6);
}
.footer li { font-size: 14px; margin-bottom: 10px; }
.footer a {
  position: relative;
  color: rgba(255,255,255,0.7);
  transition: color 250ms ease;
}
.footer a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.footer a:hover::after { transform: scaleX(1); }
.footer a:hover { color: #fff; }
.footer__bottom { padding-top: 28px; font-size: 12px; color: rgba(255,255,255,.4); text-align: center; letter-spacing: 0.01em; }

/* ===================== COOKIES ===================== */
.cookies {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--ink); color: rgba(255,255,255,.9);
  padding: 16px 20px;
  box-shadow: 0 -10px 30px rgba(0,0,0,.2);
  animation: cookies-in .4s ease backwards;
}
.cookies[hidden] { display: none; }
@keyframes cookies-in { from { transform: translateY(100%); } }
.cookies__inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.cookies p { margin: 0; font-size: 13px; line-height: 1.5; }
.cookies p a { color: var(--lime); border-bottom: 1px solid rgba(212,243,107,.4); }
.cookies__btns { display: flex; gap: 8px; flex-wrap: wrap; }
@media (min-width: 768px) {
  .cookies__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; }
  .cookies p { flex: 1; }
}

/* Body lock when mobile menu open */
body.menu-open { overflow: hidden; }

/* ===================== ACCESIBILIDAD: prefers-reduced-motion ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .aurora__blob { animation: none !important; }
  .eyebrow__dot, .dot--live { animation: none !important; box-shadow: 0 0 0 4px rgba(212,243,107,.25) !important; }
  .card:hover, .proc-card:hover, .btn:hover { transform: none !important; }
  .card:hover .card__icon { transform: none !important; }
  .hero .reveal { opacity: 1 !important; transform: none !important; }
  .iphone { opacity: 1 !important; transform: scale(1) !important; }
  .iphone__notif { opacity: 1 !important; transform: none !important; }
  .iphone__pill { opacity: 1 !important; transform: none !important; }
  .iphone__pill-dot { animation: none !important; box-shadow: 0 0 0 3px rgba(212,243,107,0.30) !important; }
  .iphone__tilter { transform: none !important; }
}

/* ===================== NOISE OVERLAY: desactivar en móvil ===================== */
@media (max-width: 767px) {
  body::before { display: none; }
}
