/* ════════════════════════════════════════════════════════════════
   enhance.css — capa de rediseño sobre style.css
   Mejoras: tipografía display, hero legible, parity band señorial,
   iconos consistentes, micro-interacciones. Marca intacta (naranja BTC).
   ════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --green: #2ec27e;          /* guiño bandera / "meta" paridad, uso puntual */
  --green-dim: rgba(46, 194, 126, 0.12);
  --bg-glass: rgba(14, 14, 14, 0.92);
}

/* ─── TIPOGRAFÍA DISPLAY EN TITULARES ─────────────────────── */
.hero-title,
.section-title,
.page-title,
.stat-num,
.parity-big,
.tool-text h3 {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.hero-title { letter-spacing: -0.035em; }

/* ─── HERO: legibilidad + estructura 2 columnas ───────────── */
.hero { min-height: 92vh; position: relative; }

/* capa de oscurecido PERMANENTE (div real, no se desvanece con el crossfade) */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg,
      rgba(7,7,7,0.80) 0%,
      rgba(7,7,7,0.58) 34%,
      rgba(7,7,7,0.22) 64%,
      rgba(7,7,7,0.08) 100%),
    linear-gradient(0deg,
      rgba(7,7,7,0.42) 0%,
      rgba(7,7,7,0) 30%);
}

/* ─── LOGO WORDMARK (₿olivia 🇧🇴 · BTC badge) ──────────────── */
.wm {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  white-space: nowrap;
  text-decoration: none !important;
}
/* ₿ y "olivia" comparten línea de base; ₿ crece hacia arriba */
.wm-row {
  display: inline-flex;
  align-items: flex-end;
  line-height: 1;
}
/* ₿ — ~1.5× el tamaño de "olivia", igual que en el logo de referencia */
.wm-b {
  position: relative;
  display: inline-block;
  font-size: 1.52em;
  font-weight: 800;
  line-height: 0.88;
  color: inherit;
  margin-right: -0.01em;
}
/* dos ticks verticales arriba y abajo → símbolo ₿ (más prominentes) */
.wm-b::before, .wm-b::after {
  content: '';
  position: absolute;
  left: 0.198em;
  width: 0.078em;
  height: 0.255em;
  background: currentColor;
  border-radius: 1px;
  box-shadow: 0.138em 0 0 currentColor;
}
.wm-b::before { top: -0.125em; }
.wm-b::after  { bottom: -0.125em; }
.wm-olivia { color: inherit; }
.wm-flag {
  font-size: 0.62em;
  margin-left: 0.14em;
  align-self: center;
  line-height: 1;
}
/* pill badge "BTC" — negro con texto blanco, desplazado a la derecha */
.wm-badge {
  font-size: 0.30em;
  font-weight: 700;
  letter-spacing: 0.10em;
  background: #0d0d0d;
  color: #fff;
  padding: 0.25em 1.1em;
  border-radius: 99px;
  margin-top: 0.35em;
  line-height: 1.5;
  border: 1.5px solid rgba(255,255,255,0.18);
  transform: translateX(45%);
}
.nav-wm    { font-size: 30px; }
.footer-wm { font-size: 26px; margin-bottom: 1rem; }
@media (max-width: 480px) { .nav-wm { font-size: 25px; } }

/* ─── NAVBAR LINKS: items más grandes y legibles ──────────── */
.nav-links { gap: 0.15rem; }
.nav-links > li > a {
  font-size: 0.96rem;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  letter-spacing: -0.005em;
}
@media (max-width: 1180px) {
  .nav-links > li > a { font-size: 0.88rem; padding: 0.5rem 0.65rem; }
}

/* ─── ICONOS SVG (reemplazan emoji en páginas internas) ───── */
.ic {
  width: 1em; height: 1em;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.14em;
  display: inline-block;
}
/* card-icon → placa de marca (igual que la home) */
.card-icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 13px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  margin-bottom: 0.95rem;
  font-size: 0;
}
.card-icon .ic { width: 25px; height: 25px; }
/* iconos dentro de placeholder-visual */
.placeholder-visual .ph-icon { font-size: 2.6rem; line-height: 1; }
.placeholder-visual .ph-icon .ic { width: 1em; height: 1em; }

/* veladura suave por slide (deja ver las fotos; el texto lo cubre .hero-scrim) */
.hero-slide::after {
  background:
    linear-gradient(110deg,
      rgba(8,8,8,0.55) 0%,
      rgba(8,8,8,0.40) 45%,
      rgba(8,8,8,0.16) 100%);
}

/* leve zoom lento para dar vida a las fotos */
.hero-slide {
  background-position: center 35%;
  animation: heroFade 24s infinite, heroZoom 24s infinite ease-out;
}
@keyframes heroZoom {
  0%, 20% { transform: scale(1.06); }
  100%    { transform: scale(1); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

/* anula el margen heredado del .hero-content viejo */
.hero .hero-inner .hero-content {
  max-width: 880px;
  padding: 0;
  margin: 0;
}
/* sombra sutil para mantener legible el texto sobre fondo más claro */
.hero-content .hero-title,
.hero-content .hero-sub {
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.5);
}

.hero-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  color: var(--orange);
  padding: 0.35rem 0.9rem 0.35rem 0.55rem;
  border-radius: 30px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge-row .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(46,194,126,0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,194,126,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(46,194,126,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,194,126,0); }
}

.hero-title { font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin-bottom: 1.25rem; }
.hero-sub   { font-size: 1rem; color: #c8c8c8; max-width: 480px; }

/* fila inferior: paridad (izq) + estadísticas (der) en una sola línea */
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
  margin-top: 1.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.hero-bottom .hero-stats {
  gap: 1.6rem;
  padding-top: 0;
  border-top: none;
  margin: 0;
  flex: 0 0 auto;
}
.hero-stats .stat { display: flex; flex-direction: column; }
.stat-num   { font-size: 1.45rem; }
.hero-stats .stat-label { font-size: 0.6rem; }

/* ─── PARIDAD · línea compacta (izquierda de la fila) ─────── */
.parity-strip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0;
  flex: 0 0 auto;
}
.parity-strip .ps-coin {
  width: 114px; height: 114px; object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 5px 16px rgba(242,88,38,0.32));
  transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  transform-origin: 50% 50%;
}
.parity-strip .ps-coin:hover { transform: rotate(360deg); }
@keyframes coin-spin-block {
  0%   { transform: rotate(0deg)   scale(1);    filter: drop-shadow(0 5px 16px rgba(242,88,38,0.32)); }
  50%  { transform: rotate(540deg) scale(1.08); filter: drop-shadow(0 8px 22px rgba(242,88,38,0.55)); }
  100% { transform: rotate(720deg) scale(1);    filter: drop-shadow(0 5px 16px rgba(242,88,38,0.32)); }
}
.parity-strip .ps-coin.spin {
  animation: coin-spin-block 1.5s cubic-bezier(0.34, 1.06, 0.64, 1);
}
.parity-strip .ps-body { flex: 0 0 auto; width: 180px; }
.parity-strip .ps-top {
  display: flex; flex-direction: column; gap: 0.12rem;
  margin-bottom: 0.5rem;
}
.parity-strip .ps-num {
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  color: #fff; white-space: nowrap; text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.parity-strip .ps-num .val { color: var(--orange); }
.parity-strip .ps-meta {
  font-size: 0.66rem; color: rgba(255,255,255,0.62); line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.parity-strip .ps-block {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  font-variant-numeric: tabular-nums;
  margin-top: 0.15rem;
}
.parity-strip .ps-block .block-num {
  color: var(--orange);
  font-weight: 600;
}
.parity-strip .parity-track { height: 5px; }

@media (max-width: 880px) {
  .hero-bottom { flex-wrap: wrap; gap: 1.6rem; }
}

/* ─── PARITY SIGNATURE CARD (columna derecha del hero) ─────── */
.parity-card {
  background: var(--bg-glass);
  backdrop-filter: blur(22px) saturate(0.6);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 18px 48px rgba(0,0,0,0.6);
  max-width: 300px;
  margin-left: auto;
}

.parity-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.95rem;
}
.parity-coin {
  width: 44px; height: 44px; object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(242,88,38,0.35));
  flex-shrink: 0;
}
.parity-kicker {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
}
.parity-goal-label {
  font-family: var(--display);
  font-size: 0.9rem; font-weight: 600; color: #fff; line-height: 1.25;
}
.parity-goal-label b { color: var(--orange); }

.parity-big {
  font-size: 1.9rem; font-weight: 700; color: #fff;
  line-height: 1; margin-bottom: 0.2rem;
}
.parity-big .val { color: var(--orange); }
.parity-unit { font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0; }
.parity-sub {
  font-size: 0.74rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5;
}

/* barra de progreso hacia 1 SAT = 1 BOB */
.parity-track {
  position: relative;
  height: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.parity-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  transform: scaleX(0.02);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--orange), #ffb070);
  border-radius: 20px;
  transition: transform 1.4s cubic-bezier(0.22,1,0.36,1);
}
.parity-scale {
  display: flex; justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.66rem; color: var(--text-muted);
}
.parity-scale .goal { color: var(--green); font-weight: 600; }
.parity-pct {
  margin-top: 0.7rem;
  font-size: 0.72rem; color: var(--text-muted); line-height: 1.5;
}
.parity-pct b { color: var(--orange); font-weight: 700; }

/* ─── ICON TILES (reemplazan emoji) ───────────────────────── */
.icon-tile {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 13px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  margin-bottom: 0.95rem;
}
.icon-tile svg {
  width: 24px; height: 24px;
  stroke: var(--orange); stroke-width: 1.7;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

/* alinear logos dentro de un tile neutro para consistencia visual */
.logo-tile {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 13px;
  background: #fff;
  margin-bottom: 0.95rem;
  padding: 8px;
}
.logo-tile img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* card un poco más viva */
.card { border-radius: 14px; }
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* ─── SECTION EYEBROW con linea ───────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.section-eyebrow::before {
  content: ''; width: 22px; height: 2px;
  background: var(--orange); border-radius: 2px;
}

/* ─── SUB-DROPDOWN ANIDADO (Adquiere Bitcoin) ────────────── */
.has-subdropdown { position: relative; }
.has-subdropdown > a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.has-subdropdown > a::after {
  content: '›';
  color: rgba(255,255,255,0.4);
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1;
  margin-left: 0.4rem;
  transition: transform 0.2s ease, color 0.2s ease;
}
.has-subdropdown:hover > a::after,
.has-subdropdown.open > a::after {
  color: var(--orange);
  transform: translateX(2px);
}
.subdropdown-menu {
  list-style: none;
  padding: 0.3rem 0;
  margin: 0;
  position: absolute;
  top: -0.3rem;
  left: 100%;
  min-width: 200px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 999;
}
.has-subdropdown:hover > .subdropdown-menu,
.has-subdropdown:focus-within > .subdropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.subdropdown-menu li a {
  display: block;
  padding: 0.55rem 1.1rem;
  color: #ccc;
  text-decoration: none;
  font-size: 0.86rem;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.subdropdown-menu li a:hover {
  background: rgba(242,88,38,0.1);
  color: var(--orange);
}
/* móvil: sub-dropdown en flujo normal, toggle por click */
@media (max-width: 900px) {
  .subdropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0.3rem 1rem;
    display: none;
    min-width: 0;
  }
  .has-subdropdown.open > .subdropdown-menu { display: block; }
  .has-subdropdown > a::after { content: '▾'; }
  .has-subdropdown.open > a::after { transform: rotate(180deg); }
}

/* ─── LOGO MOSTRO · flotación + glow verde ────────────────── */
@keyframes mostro-logo-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-6px) rotate(2deg); }
}
.mostro-logo-anim {
  display: block;
  width: 230px;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 10px 26px rgba(46, 194, 126, 0.45));
  animation: mostro-logo-float 5s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  will-change: transform;
}
.mostro-logo-anim:hover {
  transform: scale(1.07);
  animation-play-state: paused;
  filter: drop-shadow(0 14px 32px rgba(46, 194, 126, 0.65));
}
@media (max-width: 768px) {
  .mostro-logo-anim { width: 180px; max-height: 160px; }
}
@media (prefers-reduced-motion: reduce) {
  .mostro-logo-anim { animation: none; }
}

/* ─── IMAGEN MOSTRO BOLIVIANO · retrato completo a la derecha ─ */
.mostro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  overflow: visible;
  min-height: 520px;
}
.mostro-visual img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 660px;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mostro-visual:hover img {
  transform: scale(1.025);
}
@media (max-width: 768px) {
  .mostro-visual { min-height: 380px; }
  .mostro-visual img { max-height: 500px; }
}

/* ─── CODE INLINE · comandos de bot estilo terminal ───────── */
.step-text code,
.tool-text code {
  font-family: 'SF Mono', 'Menlo', 'Consolas', 'Monaco', monospace;
  font-size: 0.88em;
  background: rgba(242, 88, 38, 0.10);
  color: var(--orange);
  padding: 0.12em 0.42em;
  border-radius: 4px;
  border: 1px solid rgba(242, 88, 38, 0.22);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ─── PLACEHOLDER lnp2pbot · logo en lugar de icono ────────── */
.lnp2p-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  min-height: 280px;
}
.lnp2p-visual img {
  filter: drop-shadow(0 6px 20px rgba(0, 153, 255, 0.30));
  transition: transform 0.35s ease;
}
.lnp2p-visual:hover img {
  transform: translateY(-4px) scale(1.04);
}

/* ─── MONEDA BITCOIN SVG · flotación + brillo ─────────────── */
@keyframes btc-coin-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.btc-coin-svg {
  width: 170px;
  height: 170px;
  display: block;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 10px 22px rgba(242, 88, 38, 0.40));
  animation: btc-coin-float 4.5s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  will-change: transform;
}
.btc-coin-svg:hover {
  transform: scale(1.06) rotate(8deg);
  animation-play-state: paused;
  filter: drop-shadow(0 14px 28px rgba(242, 88, 38, 0.55));
}
@media (max-width: 768px) {
  .btc-coin-svg { width: 130px; height: 130px; }
}
@media (prefers-reduced-motion: reduce) {
  .btc-coin-svg { animation: none; }
}

/* ─── LOGO NUEVED · ciclo de color animado ────────────────── */
/* Cicla matiz: naranja → oro → verde → azul → magenta → naranja.
   La sombra (drop-shadow) sigue el matiz actual = efecto halo de neón. */
@keyframes nueved-color-cycle {
  0% {
    filter: hue-rotate(0deg) saturate(1)
            drop-shadow(0 6px 22px rgba(242, 88, 38, 0.45));
  }
  20% {
    filter: hue-rotate(40deg) saturate(1.1)
            drop-shadow(0 6px 22px rgba(245, 197, 24, 0.45));
  }
  40% {
    filter: hue-rotate(135deg) saturate(1.05)
            drop-shadow(0 6px 22px rgba(46, 194, 126, 0.45));
  }
  60% {
    filter: hue-rotate(215deg) saturate(1.1)
            drop-shadow(0 6px 22px rgba(59, 130, 246, 0.45));
  }
  80% {
    filter: hue-rotate(295deg) saturate(1.15)
            drop-shadow(0 6px 22px rgba(214, 58, 200, 0.45));
  }
  100% {
    filter: hue-rotate(360deg) saturate(1)
            drop-shadow(0 6px 22px rgba(242, 88, 38, 0.45));
  }
}
.nueved-logo-anim {
  animation: nueved-color-cycle 12s ease-in-out infinite;
  will-change: filter;
}
.nueved-logo-anim:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .nueved-logo-anim { animation: none; }
}

/* ─── TOOL-VISUAL · video con mismas dimensiones que img ──── */
.tool-visual video {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #000;
}

/* ─── FAQ · lista de preguntas colapsables ────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-item {
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-item[open] {
  border-color: rgba(242,88,38,0.35);
  background: rgba(242,88,38,0.04);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.3rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  content: '−';
  transform: scale(1.1);
}
.faq-answer {
  padding: 0 1.3rem 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-size: 0.94rem;
}
.faq-answer a {
  color: var(--orange);
  font-weight: 600;
}
.faq-answer a:hover { text-decoration: underline; }

/* ─── CONTACTO · barra de iconos grandes tipo Berlín ──────── */
.contact-icons-bar {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.1rem 1.4rem;
  border-radius: 18px;
  max-width: 880px;
  margin: 0 auto 2rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  background: var(--orange);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, background 0.22s;
  flex-shrink: 0;
}
.contact-icon:hover {
  background: #ff7a47;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 24px rgba(242, 88, 38, 0.45);
}
.contact-icon svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.contact-extra-info {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.98rem;
  line-height: 1.55;
}
.contact-extra-info a {
  color: var(--orange);
  font-weight: 600;
}
.contact-aggregator {
  text-align: center;
  padding: 1.5rem 0;
}
.contact-aggregator-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .contact-icons-bar { padding: 0.85rem 0.9rem; gap: 0.5rem; }
  .contact-icon { width: 56px; height: 56px; }
  .contact-icon svg { width: 26px; height: 26px; }
}

/* ─── BLOQUES "PRÓXIMAMENTE" (Partners, Comunidades Amigas) ─ */
.proximamente-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem 0;
}
.proximamente-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.32rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 0.9rem;
}
.proximamente-block .section-title {
  margin: 0 0 0.5rem;
}
.proximamente-block .section-sub {
  margin: 0;
  color: rgba(255,255,255,0.65);
}

/* ─── VOLUNTARIO · card con texto + icono ─────────────────── */
.voluntario-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(242,88,38,0.08) 0%, rgba(242,88,38,0.02) 100%);
  border: 1px solid rgba(242,88,38,0.22);
  border-radius: 18px;
  padding: 2.2rem 2.2rem;
}
.voluntario-text p {
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.voluntario-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.voluntario-icon {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(242,88,38,0.25), rgba(242,88,38,0.05) 70%);
  border: 1px solid rgba(242,88,38,0.3);
  color: var(--orange);
}
.voluntario-icon svg {
  width: 70px;
  height: 70px;
}
@media (max-width: 820px) {
  .voluntario-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.8rem 1.4rem; }
  .voluntario-icon { width: 130px; height: 130px; }
  .voluntario-icon svg { width: 56px; height: 56px; }
}

/* ─── BITCOIN BOLIVIA NEWS · carrusel con preview rico ────── */
.news-carousel-wrap {
  position: relative;
}
.news-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 340px;
  gap: 1.1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.3rem 0.3rem 1rem;
  -webkit-overflow-scrolling: touch;
}
.news-carousel::-webkit-scrollbar { display: none; }
.news-card {
  scroll-snap-align: start;
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 430px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  border-color: rgba(242,88,38,0.45);
  background: rgba(242,88,38,0.045);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
  text-decoration: none;
  color: #fff;
}
.news-image-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}
.news-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card:hover .news-image-wrap img {
  transform: scale(1.06);
}
/* Variante para artículo de Mostro · logo centrado en lugar de cover photo */
.news-image-mostro {
  background: linear-gradient(135deg, #0d1a0d 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-image-mostro img {
  width: auto !important;
  height: 100px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 4px 14px rgba(46, 194, 126, 0.35));
}
.news-card-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1 1 auto;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
.news-source { color: var(--orange); }
.news-date {
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.news-date::before {
  content: '·';
  margin-right: 0.5rem;
  color: rgba(255,255,255,0.3);
}
.news-card-title {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.32;
  margin: 0;
  color: #fff;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-excerpt {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.7);
  margin: 0;
  flex: 1 1 auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.01em;
  margin-top: 0.3rem;
}
/* flechas de navegación */
.news-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.2s ease;
}
.news-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.08);
}
.news-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.news-arrow-prev { left: -22px; }
.news-arrow-next { right: -22px; }
@media (max-width: 768px) {
  .news-carousel { grid-auto-columns: 280px; }
  .news-arrow { display: none; }
}

/* ─── PAGE-SUBTITLE en Economía · respira mejor para texto largo ─ */
.page-hero .page-subtitle {
  max-width: 820px;
  font-size: 1.02rem;
}

/* ─── BTN LIGHT · botón blanco para hacer brillar logos brand ─ */
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  background: #fff;
  color: #111;
  border: 1px solid #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  box-shadow: 0 4px 14px rgba(255,255,255,0.10);
}
.btn-light:hover {
  background: #f5f5f5;
  color: #111;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,255,255,0.18);
}
.apoya-btn { padding: 0.6rem 1.1rem; }
.apoya-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

/* ─── ECONOMÍA · intro narrativa centrada ─────────────────── */
.economia-intro-section {
  padding-top: 2.5rem !important;
  padding-bottom: 1.5rem !important;
}
.economia-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.economia-intro p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0 0 1rem;
}
.economia-intro p:last-child { margin-bottom: 0; }
.economia-intro strong {
  color: #fff;
}

/* ─── APOYA INLINE · dentro del page-hero, logos solos ────── */
.page-hero-with-apoya { padding-bottom: 2.5rem; }
.apoya-inline {
  margin-top: 2.2rem;
  padding: 1.8rem 1.9rem;
  background: linear-gradient(135deg, rgba(242,88,38,0.10) 0%, rgba(242,88,38,0.03) 70%, rgba(242,88,38,0.10) 100%);
  border: 1px solid rgba(242,88,38,0.28);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 1080px;
}
.apoya-inline::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.65;
}
.apoya-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.45rem;
}
.apoya-eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.apoya-title {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.apoya-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.55;
  margin: 0;
}
.apoya-text strong { color: #fff; }
.apoya-inline-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}
.apoya-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.apoya-logos-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
/* botón de logo solo: tile blanco con el logo brand centrado */
.apoya-logo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 0.65rem 1.2rem;
  height: 56px;
  min-width: 130px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.20);
  text-decoration: none;
}
.apoya-logo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(242,88,38,0.30);
}
.apoya-logo-btn img {
  height: 28px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.apoya-or {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .apoya-inline {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.5rem 1.4rem;
  }
  .apoya-inline-cta { align-items: flex-start; }
}
@media (max-width: 480px) {
  .apoya-or { width: 100%; text-align: center; }
  .apoya-logo-btn { min-width: 110px; height: 50px; }
  .apoya-logo-btn img { height: 24px; }
}

/* ─── TEASERS COMPACTOS (Autocustodia · Nodos · Minería) ──── */
.tool-teaser {
  padding-top: 2.8rem !important;
  padding-bottom: 2.8rem !important;
}
.teaser-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.teaser-inner h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin: 0.4rem 0 0.8rem;
  letter-spacing: -0.01em;
}
.teaser-inner p {
  color: rgba(255,255,255,0.74);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0 auto 1.5rem;
  max-width: 580px;
}
.teaser-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.4rem;
}
/* Bloque Amboss dentro de Nodos · estado en vivo + descripción */
.teaser-amboss {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: rgba(46, 194, 126, 0.06);
  border: 1px solid rgba(46, 194, 126, 0.22);
  border-radius: 12px;
  padding: 0.85rem 1.3rem;
  margin: 0 auto 1.3rem;
  max-width: 520px;
}
.amboss-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #2EC27E;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}
.amboss-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2EC27E;
  box-shadow: 0 0 0 0 rgba(46, 194, 126, 0.7);
  animation: amboss-pulse 1.8s ease-in-out infinite;
}
@keyframes amboss-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 194, 126, 0.6); }
  50%      { box-shadow: 0 0 0 7px rgba(46, 194, 126, 0); }
}
.amboss-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ─── MENTORÍAS · grid 3 cols + badge "incluye hardware" ──── */
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.mentor-grid .card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.mentor-grid .card-text {
  flex: 1 1 auto;
}
.mentor-grid .card-link {
  align-self: flex-start;
  margin-top: 0.8rem;
}
.mentor-grid .card-icon {
  margin-bottom: 0.9rem;
}
.mentor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(46, 194, 126, 0.13);
  color: #2EC27E;
  border: 1px solid rgba(46, 194, 126, 0.30);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-bottom: 0.65rem;
  width: fit-content;
}
.mentor-badge::before {
  content: '📦';
  font-size: 0.95em;
}
/* badge inline dentro del subtítulo */
.mentor-badge-inline {
  display: inline-block;
  font-size: 0.7em;
  font-weight: 700;
  background: rgba(46, 194, 126, 0.13);
  color: #2EC27E;
  border: 1px solid rgba(46, 194, 126, 0.30);
  padding: 0.12em 0.55em;
  border-radius: 99px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: 1px;
}
.mentor-badge-inline::before {
  content: '📦 ';
}

@media (max-width: 980px) {
  .mentor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .mentor-grid { grid-template-columns: 1fr; }
}

/* ─── HOJA DE RUTA DE TUTORIALES ──────────────────────────── */
.tutorial-roadmap {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.7rem 1.5rem;
}
/* summary clickeable con chevron, oculta el marker por defecto */
.roadmap-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.roadmap-summary::-webkit-details-marker { display: none; }
.roadmap-summary::marker { display: none; content: ''; }
.roadmap-summary::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  border-radius: 1px;
  transform: rotate(45deg);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  flex-shrink: 0;
  margin-top: 0.55rem;
}
.tutorial-roadmap[open] .roadmap-summary::after {
  transform: rotate(-135deg);
  margin-top: 0.75rem;
}
.tutorial-roadmap[open] .roadmap-summary {
  margin-bottom: 1rem;
}
.roadmap-summary:hover .roadmap-title-main { color: var(--orange); }
.roadmap-title-main { transition: color 0.2s; }
.roadmap-summary > .roadmap-head { flex: 1 1 auto; }
.roadmap-head { margin-bottom: 0; }
.roadmap-title-main {
  font-family: var(--display);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
}
.roadmap-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0;
}
.roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.6rem;
}
.roadmap-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.07);
}
.roadmap-status {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 105px;
  text-align: center;
}
.roadmap-item.is-available .roadmap-status {
  background: rgba(46, 194, 126, 0.14);
  color: #2ec27e;
  border: 1px solid rgba(46, 194, 126, 0.28);
}
.roadmap-item.is-recording .roadmap-status {
  background: rgba(242, 88, 38, 0.13);
  color: var(--orange);
  border: 1px solid rgba(242, 88, 38, 0.30);
}
.roadmap-item.is-soon .roadmap-status {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.09);
}
.roadmap-name {
  color: #fff;
  font-size: 0.94rem;
  text-decoration: none;
  line-height: 1.3;
}
.roadmap-item.is-soon .roadmap-name {
  color: rgba(255,255,255,0.66);
}
a.roadmap-name:hover { color: var(--orange); }

@media (max-width: 680px) {
  .roadmap-list { grid-template-columns: 1fr; gap: 0; }
  .tutorial-roadmap { padding: 1.3rem 1.1rem; }
}

/* ─── TOOL-BLOCK DESPLEGABLE (Adquiere Bitcoin) ───────────── */
.tool-details {
  border-radius: 14px;
}
.tool-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding: 0.4rem 0 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.25s;
}
.tool-summary::-webkit-details-marker { display: none; }
.tool-summary::marker { display: none; content: ''; }
.tool-summary-text { flex: 1 1 auto; }
.tool-summary-title { margin-bottom: 0 !important; }
.tool-summary::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  border-radius: 1px;
  transform: rotate(45deg);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  margin-bottom: 0.8rem;
  flex-shrink: 0;
}
.tool-details[open] .tool-summary::after {
  transform: rotate(-135deg);
  margin-bottom: 0.3rem;
}
.tool-summary:hover { border-color: rgba(242,88,38,0.3); }
.tool-summary:hover::after { border-color: #ff7a47; }

/* ─── NUESTRO IMPACTO · grid de 4 ejes narrativos ─────────── */
.impact-section {
  background: linear-gradient(180deg, #0e0e0e 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.impact-group {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.impact-group:hover {
  border-color: var(--orange-border);
  background: rgba(242,88,38,0.045);
  transform: translateY(-3px);
}
.impact-group-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.95rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.impact-ic {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex-shrink: 0;
}
.impact-group-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
}
.impact-stat {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.75rem 0;
}
.impact-stat + .impact-stat {
  border-top: 1px dashed rgba(255,255,255,0.07);
}
.impact-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.impact-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .impact-grid { grid-template-columns: 1fr; gap: 1rem; }
  .impact-num { font-size: 1.65rem; }
  .impact-group { padding: 1.2rem 1.1rem; }
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { animation: heroFade 24s infinite; }
}

/* ─── PARIDAD BAND inferior (mini ticker honesto) ─────────── */
.parity-band {
  background: linear-gradient(135deg, #160d04 0%, #141414 60%);
  border-top: 1px solid var(--orange-border);
  border-bottom: 1px solid var(--orange-border);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding: 3rem 1.5rem 3.5rem;
  }
  .parity-card { max-width: 460px; }
  .hero-stats { gap: 2rem; }
}

/* ─── CARRUSEL POR DEPARTAMENTO ───────────────────────────── */
.depto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.depto-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.depto-label {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.4rem 1rem;
}

.depto-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.depto-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.depto-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.depto-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.depto-arrow:hover { background: var(--orange); }
.depto-prev { left: 0.4rem; }
.depto-next { right: 0.4rem; }

.depto-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
}
.depto-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s;
}
.depto-dot.active { background: var(--orange); }

/* Ocultar flechas si solo hay 1 foto */
.depto-carousel[data-single="true"] .depto-arrow { display: none; }
