/* =========================================================
   Eurobit · Landing
   Paleta y tipografías heredadas del panel interno.
   ========================================================= */

:root {
  --gold-300: #fff199;
  --gold-400: #ffe766;
  --gold-500: #ffd700;
  --gold-600: #e6c200;

  --dark-50:  #fafafa;
  --dark-100: #f4f4f5;
  --dark-300: #d4d4d8;
  --dark-400: #a1a1aa;
  --dark-500: #71717a;
  --dark-600: #52525b;
  --dark-700: #3f3f46;
  --dark-800: #27272a;
  --dark-850: #1f1f23;
  --dark-900: #18181b;
  --dark-950: #09090b;

  --green: #10b981;
  --red:   #ef4444;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-glow: 0 0 60px rgba(255, 215, 0, 0.08);

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--dark-950);
  color: var(--dark-100);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

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

/* ------ Fondo decorativo ------------------------------------- */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
  z-index: -2;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.12) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
}

/* ------ Botones ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn--lg { padding: 14px 26px; font-size: 15px; }

.btn--primary {
  background: var(--gold-500);
  color: var(--dark-950);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.18);
}
.btn--primary:hover {
  background: var(--gold-400);
  box-shadow: 0 12px 36px rgba(255, 215, 0, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--dark-100);
  border-color: var(--dark-700);
}
.btn--ghost:hover {
  background: var(--dark-900);
  border-color: var(--dark-600);
}

.btn--apple {
  background: #ffffff;
  color: #000;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-align: left;
}
.btn--apple:hover { background: #f4f4f5; }
.btn--apple span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.btn--apple small { font-size: 10px; font-weight: 500; opacity: .7; text-transform: uppercase; letter-spacing: .08em; }
.btn--apple strong { font-size: 17px; font-weight: 600; }
.btn--apple.btn--lg { padding: 12px 22px; }
.btn--apple.btn--lg strong { font-size: 19px; }

/* Bloque interno de dos líneas (label pequeño arriba + valor grande abajo) */
.btn__col {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-align: left;
}
.btn__col small {
  font-size: 10px;
  font-weight: 500;
  opacity: .65;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.btn__col strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
}
.btn--lg .btn__col strong { font-size: 16px; }

/* Botón WhatsApp - verde brand oficial */
.btn--whats {
  background: #25D366;
  color: #073d1d;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25);
}
.btn--whats:hover {
  background: #20bf5b;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.38);
}

/* Botón en estado "Coming Soon" - se ve, pero está claramente desactivado */
.btn--disabled {
  background: var(--dark-800);
  color: var(--dark-400);
  border: 1px solid var(--dark-700);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}
.btn--disabled svg { opacity: 0.5; }
.btn--disabled small { color: var(--dark-500); }
.btn--disabled strong { color: var(--dark-300); }

/* ------ NAVBAR ----------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(9, 9, 11, 0.65);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.3));
}
.nav__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: #fff;
}
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  color: var(--dark-300);
}
.nav__links a { position: relative; transition: color .2s ease; }
.nav__links a:hover { color: var(--gold-500); }
.nav__cta { display: inline-flex; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ------ Selector de idioma ---------------------------------- */
.lang { position: relative; }

.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dark-800);
  color: var(--dark-100);
  padding: 8px 12px;
  border-radius: 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.lang__btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--dark-700);
}
.lang__flag { font-size: 16px; line-height: 1; }
.lang__code {
  color: var(--dark-300);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.05em;
}
.lang__chev {
  color: var(--dark-500);
  transition: transform .2s ease;
}
.lang.open .lang__chev { transform: rotate(180deg); }

.lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--dark-900);
  border: 1px solid var(--dark-800);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
}
.lang.open .lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--dark-100);
  transition: background .12s ease;
}
.lang__item:hover { background: var(--dark-850); }
.lang__item.is-active {
  background: rgba(255, 215, 0, 0.08);
  color: var(--gold-500);
}
.lang__name { flex: 1; }
.lang__check {
  opacity: 0;
  color: var(--gold-500);
  font-weight: 700;
  transition: opacity .15s;
}
.lang__item.is-active .lang__check { opacity: 1; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ------ HERO ------------------------------------------------- */
.hero {
  padding: 80px 0 100px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--gold-400);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.pill__dot {
  width: 6px; height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-500);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(0.85); }
}

.hero__title {
  font-size: clamp(36px, 5.2vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}
.grad {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-300) 50%, var(--gold-500) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  margin-top: 22px;
  color: var(--dark-400);
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero__sub-ctas {
  display: flex;
  gap: 22px;
  margin-top: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}
.hero__sub-ctas a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dark-400);
  font-weight: 500;
  transition: color .15s ease;
}
.hero__sub-ctas a:hover {
  color: var(--gold-500);
}
.hero__sub-ctas svg {
  opacity: 0.7;
}

.hero__trust {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--dark-800);
}
.trust { display: flex; flex-direction: column; gap: 2px; }
.trust strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.04em;
}
.trust span { font-size: 12px; color: var(--dark-500); text-transform: uppercase; letter-spacing: 0.06em; }

/* ------ Hero card -------------------------------------------- */
.hero__card {
  background: linear-gradient(180deg, rgba(31,31,35,0.9) 0%, rgba(24,24,27,0.9) 100%);
  border: 1px solid var(--dark-800);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: .4;
}

.hero__card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.hero__card-coin { display: flex; align-items: center; gap: 12px; }
.hero__card-name { font-size: 15px; font-weight: 600; color: #fff; }
.hero__card-pair { font-size: 12px; color: var(--dark-500); font-family: 'IBM Plex Mono', monospace; }

.live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.live__dot {
  width: 6px; height: 6px; background: var(--green); border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero__card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero__card-change {
  font-size: 13px;
  color: var(--dark-400);
  font-family: 'IBM Plex Mono', monospace;
}
.hero__card-change.up { color: var(--green); }
.hero__card-change.down { color: var(--red); }

.hero__card-spark {
  margin: 24px 0 14px;
  height: 80px;
}
.hero__card-spark svg { width: 100%; height: 100%; display: block; }

.hero__card-foot {
  font-size: 11px;
  color: var(--dark-500);
  text-align: right;
  letter-spacing: 0.04em;
}

/* ------ COIN ICONOS ----------------------------------------- */
.coin-ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}
.coin-ico.small { width: 32px; height: 32px; font-size: 16px; }
.coin-btc { background: linear-gradient(135deg, #f7931a, #ffb84d); }
.coin-eth { background: linear-gradient(135deg, #627eea, #8ba0ee); }
.coin-sol { background: linear-gradient(135deg, #9945ff, #14f195); }
.coin-xrp { background: linear-gradient(135deg, #23292f, #6b7280); }
.coin-ada { background: linear-gradient(135deg, #0033ad, #1f57c5); }
.coin-dot { background: linear-gradient(135deg, #e6007a, #ff5fa8); }
.coin-doge { background: linear-gradient(135deg, #c2a633, #e1c350); }
.coin-ltc { background: linear-gradient(135deg, #345d9d, #6a8bc7); }
.coin-link { background: linear-gradient(135deg, #2a5ada, #5b85e8); }
.coin-usdt { background: linear-gradient(135deg, #26a17b, #5cc9a4); }

/* ------ Sección heads --------------------------------------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.section-sub {
  margin-top: 12px;
  color: var(--dark-400);
  font-size: 16px;
  max-width: 600px;
}

/* ------ PRECIOS --------------------------------------------- */
.prices { padding: 60px 0 100px; }
.prices__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.prices__update {
  font-size: 12px;
  color: var(--dark-500);
  font-family: 'IBM Plex Mono', monospace;
}

.prices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.price-card {
  background: var(--dark-900);
  border: 1px solid var(--dark-800);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,215,0,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,215,0,0.06);
}
.price-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.price-card__name { font-size: 14px; font-weight: 600; color: #fff; }
.price-card__sym { font-size: 11px; color: var(--dark-500); font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.04em; }
.price-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 8px;
  transition: color .3s ease;
}
.price-card__price.flash-up { color: var(--green); }
.price-card__price.flash-down { color: var(--red); }
.price-card__change {
  font-size: 13px;
  font-family: 'IBM Plex Mono', monospace;
  display: inline-flex; align-items: center; gap: 4px;
}
.price-card__change.up { color: var(--green); }
.price-card__change.down { color: var(--red); }
.price-card__change.flat { color: var(--dark-400); }

.skeleton {
  background: linear-gradient(90deg, var(--dark-900) 25%, var(--dark-850) 50%, var(--dark-900) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
.skeleton--price {
  display: inline-block;
  width: 120px;
  height: 28px;
}
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }

/* ------ TIENDA FÍSICA --------------------------------------- */
.store {
  padding: 80px 0;
  position: relative;
}

.store__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: stretch;
}

.store__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}

.store__card {
  background: var(--dark-900);
  border: 1px solid var(--dark-800);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .2s ease, transform .2s ease;
}
.store__card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}
.store__card--service {
  grid-column: span 2;
}

.store__card-ico {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 215, 0, 0.08);
  color: var(--gold-500);
  border-radius: 10px;
  flex-shrink: 0;
}

.store__card h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.store__card p {
  font-size: 14px;
  color: var(--dark-300);
  line-height: 1.6;
}
.store__card p strong {
  color: #fff;
  font-weight: 600;
}

.store__list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.store__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark-100);
}

.store__ctas {
  grid-column: span 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

/* Mapa */
.store__map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--dark-800);
  min-height: 480px;
  background: var(--dark-900);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.store__map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.7);
  transition: filter .3s ease;
}
.store__map:hover iframe { filter: invert(0.85) hue-rotate(180deg) saturate(0.85); }

.store__map-link {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(9, 9, 11, 0.92);
  color: var(--gold-500);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .15s ease, border-color .15s ease;
  z-index: 2;
}
.store__map-link:hover {
  background: rgba(9, 9, 11, 1);
  border-color: var(--gold-500);
}

/* ------ APP -------------------------------------------------- */
.app {
  padding: 80px 0;
  position: relative;
}
.app__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}
.app__features {
  list-style: none;
  margin: 28px 0;
  display: grid;
  gap: 12px;
}
.app__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--dark-100);
}
.check {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold-500);
  border-radius: 50%;
  font-size: 13px;
  flex-shrink: 0;
}
.app__ctas {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.app__note { margin-top: 16px; color: var(--dark-500); font-size: 13px; }

.app__soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.app__soon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 10px var(--gold-500);
  animation: pulse 1.8s infinite;
}

/* Phone mockup */
.app__visual {
  display: flex; justify-content: center;
  perspective: 1000px;
}
.phone {
  width: 280px;
  height: 560px;
  background: linear-gradient(180deg, #1a1a1d 0%, #0a0a0c 100%);
  border-radius: 42px;
  border: 8px solid #1a1a1d;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(255,215,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  padding: 14px;
  position: relative;
  transform: rotate(-3deg);
  transition: transform .4s ease;
}
.phone:hover { transform: rotate(0deg); }

.phone__badge {
  position: absolute;
  top: -12px;
  right: -10px;
  z-index: 5;
  background: var(--gold-500);
  color: var(--dark-950);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  transform: rotate(8deg);
}

.phone__notch {
  width: 100px; height: 26px;
  background: #000;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
}
.phone__screen {
  background: #0a0a0c;
  border-radius: 28px;
  height: 100%;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.phone__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}
.phone__logo img { width: 28px; height: 28px; filter: drop-shadow(0 0 8px rgba(255,215,0,0.4)); }
.phone__title { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.12em; color: #fff; font-size: 18px; }

.phone__balance {
  background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0.02) 100%);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phone__balance span { color: var(--dark-500); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.phone__balance strong { font-family: 'Bebas Neue', sans-serif; color: #fff; font-size: 28px; letter-spacing: 0.02em; }
.phone__balance em { color: var(--green); font-size: 11px; font-style: normal; font-family: 'IBM Plex Mono', monospace; }

.phone__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  border-bottom: 1px solid var(--dark-900);
}
.phone__coin { display: flex; align-items: center; gap: 10px; }
.phone__coin b { display: block; color: #fff; font-size: 13px; font-weight: 600; }
.phone__coin span { color: var(--dark-500); font-size: 11px; }
.phone__val { font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 500; }
.phone__val.up { color: var(--green); }
.phone__val.down { color: var(--red); }
.phone__cta {
  margin-top: auto;
  background: var(--gold-500);
  color: var(--dark-950);
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* ------ FEATURES -------------------------------------------- */
.features {
  padding: 80px 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.feature {
  background: var(--dark-900);
  border: 1px solid var(--dark-800);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color .2s ease, transform .2s ease;
}
.feature:hover {
  border-color: rgba(255,215,0,0.2);
  transform: translateY(-2px);
}
.feature__ico {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,215,0,0.08);
  color: var(--gold-500);
  border-radius: 12px;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
}
.feature p {
  font-size: 14px;
  color: var(--dark-400);
  line-height: 1.55;
}

/* ------ CTA FINAL ------------------------------------------- */
.cta {
  padding: 60px 0 100px;
}
.cta__box {
  background:
    radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.12), transparent 60%),
    linear-gradient(180deg, var(--dark-900), var(--dark-950));
  border: 1px solid var(--dark-800);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255,215,0,0.05), transparent 50%);
  pointer-events: none;
}
.cta__box h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: #fff;
  font-weight: 700;
  max-width: 600px;
  margin: 0 auto 14px;
  line-height: 1.2;
}
.cta__box p {
  color: var(--dark-400);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------ FOOTER ---------------------------------------------- */
.footer {
  background: var(--dark-900);
  border-top: 1px solid var(--dark-800);
  padding: 60px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer__brand p {
  margin-top: 12px;
  color: var(--dark-500);
  font-size: 13px;
  max-width: 280px;
}
.footer__address {
  margin-top: 14px;
  color: var(--dark-400);
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
}
.footer__address strong { color: #fff; font-weight: 600; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__cols a {
  display: block;
  color: var(--dark-400);
  font-size: 14px;
  padding: 4px 0;
  transition: color .15s ease;
}
.footer__cols a:hover { color: var(--gold-500); }

.footer__bottom {
  border-top: 1px solid var(--dark-800);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--dark-500);
}
.footer__warn { max-width: 700px; line-height: 1.5; }

.footer--mini {
  padding: 24px 0;
}
.footer--mini .footer__bottom {
  border-top: 0;
  padding-top: 0;
}
.footer__back {
  color: var(--gold-500);
  font-weight: 600;
  transition: opacity .15s ease;
}
.footer__back:hover { opacity: .8; }

/* ───────── Páginas legales ───────── */
.legal-body { background: var(--dark-950); }

.legal {
  padding: 60px 0 100px;
}
.legal__container {
  max-width: 820px;
}

.legal__head {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--dark-800);
}
.legal__head h1 {
  font-size: clamp(36px, 5vw, 52px);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 8px 0 14px;
}
.legal__meta {
  color: var(--dark-500);
  font-size: 13px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.02em;
}

.legal__content {
  color: var(--dark-300);
  font-size: 15px;
  line-height: 1.75;
}
.legal__content h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--dark-800);
}
.legal__content h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.legal__content h3 {
  color: var(--gold-500);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 32px 0 12px;
}
.legal__content p {
  margin-bottom: 16px;
  color: var(--dark-300);
}
.legal__content a:not(.btn) {
  color: var(--gold-500);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  transition: border-color .15s;
}
.legal__content a:not(.btn):hover { border-color: var(--gold-500); }

.legal__content strong { color: #fff; font-weight: 600; }

.legal__data {
  list-style: none;
  margin: 20px 0 24px;
  padding: 24px;
  background: var(--dark-900);
  border: 1px solid var(--dark-800);
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
}
.legal__data li {
  font-size: 14px;
  color: var(--dark-300);
}
.legal__data strong {
  display: inline-block;
  min-width: 120px;
  color: var(--dark-400);
  font-weight: 500;
}

.legal__bullets {
  list-style: none;
  margin: 12px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.legal__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--dark-300);
  line-height: 1.7;
}
.legal__bullets li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

.legal__nav {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--dark-800);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__legal {
  color: var(--dark-500);
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.02em;
}

/* ------ RESPONSIVE ------------------------------------------ */
@media (max-width: 960px) {
  .hero { padding: 50px 0 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__trust { gap: 24px; }
  .app__inner { grid-template-columns: 1fr; gap: 60px; }
  .app__visual { order: -1; }
  .store__grid { grid-template-columns: 1fr; gap: 24px; }
  .store__map { min-height: 360px; }
  .store__map iframe { min-height: 360px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__actions { gap: 8px; }
  .lang__btn { padding: 7px 10px; }
  .lang__menu { right: 0; min-width: 200px; }
  .nav.open .nav__links {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--dark-950);
    border-bottom: 1px solid var(--dark-800);
    flex-direction: column;
    padding: 20px 24px;
    gap: 12px;
  }
  .hero__title { font-size: 38px; }
  .hero__card { padding: 22px; }
  .hero__card-price { font-size: 44px; }
  .hero__trust { flex-wrap: wrap; gap: 20px; }
  .trust strong { font-size: 22px; }
  .cta__box { padding: 40px 24px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .store__info { grid-template-columns: 1fr; }
  .store__card--service, .store__ctas { grid-column: span 1; }
}

@media (max-width: 420px) {
  .footer__cols { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__ctas .btn__col { align-items: center; text-align: center; }
}

/* ============== Cookie consent banner ===================== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(24, 24, 27, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--dark-800);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  padding: 18px 22px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .35s ease;
}
.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1 1 280px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--dark-300);
  margin: 0;
}
.cookie-banner__text a {
  color: var(--gold-500);
  border-bottom: 1px solid rgba(255, 215, 0, 0.35);
  margin-left: 4px;
  white-space: nowrap;
  transition: border-color .15s ease;
}
.cookie-banner__text a:hover { border-color: var(--gold-500); }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 10px 18px;
  font-size: 13px;
}

@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
  .cookie-banner__inner { gap: 14px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; justify-content: center; }
}
