:root{
  /* ancho útil máximo (sube/baja según tu gusto) */
  --wbn-container: 1920px;

  /* “gutter” lateral fluido: no se queda fijo en 80px */
  --wbn-gutter: clamp(22px, 4.5vw, 140px);

  /* paddings verticales fluidos */
  --wbn-padY-hero: clamp(96px, 12vh, 170px);
  --wbn-padY-section: clamp(90px, 10vh, 150px);
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000000;
  overflow: hidden;
}

/* Overlay lateral (el tuyo) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 100%
  );
  z-index: 0;
}

/* ====== FIX: FADE INFERIOR SIN BLUR (mata la línea sin “borroso”) ====== */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;          /* ajusta 160–260px según te guste */
  pointer-events: none;
  z-index: 1;             /* arriba del ::before, abajo del contenido */

  /* Fade limpio a negro para fusionar con la siguiente sección */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.22) 22%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.82) 78%,
    #000 100%
  );
}

.hero__container {
  width: 100%;
  max-width: var(--wbn-container);
  margin: 0 auto;
  padding: 0 var(--wbn-gutter);
  position: relative;
  z-index: 2;
}

.hero__content {
  /* en vez de “760px fijo”, crece con la pantalla */
  max-width: clamp(680px, 42vw, 980px);
  padding: var(--wbn-padY-hero) 0;
  position: relative;
}

.hero__content::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -80px;
  right: 40%;
  bottom: -60px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 80%,
    transparent 100%
  );
  filter: blur(40px);
  z-index: -1;
  border-radius: 20px;
}

.hero__title {
  /* escala real en monitores grandes */
  font-size: clamp(3.2rem, 3.6vw + 1rem, 6.1rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: clamp(18px, 1.6vw, 34px);
  text-shadow: 0 2px 25px rgba(0, 0, 0, 0.9);
  position: relative;
}

.hero__title::after {
  content: '';
  position: absolute;
  top: -25px;
  left: -40px;
  right: 50%;
  bottom: -25px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 80%,
    transparent 100%
  );
  filter: blur(35px);
  z-index: -1;
  border-radius: 15px;
}

.hero__subtitle {
  /* también escala, sin verse gigante en laptop */
  font-size: clamp(1.05rem, 0.85vw + 0.65rem, 1.75rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: clamp(28px, 3.2vw, 56px);
  max-width: clamp(520px, 34vw, 760px);
  font-weight: 300;
  position: relative;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero__subtitle::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -30px;
  right: 40%;
  bottom: -15px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 80%,
    transparent 100%
  );
  filter: blur(25px);
  z-index: -1;
  border-radius: 10px;
}

.hero__actions {
  display: flex;
  gap: 24px;
  align-items: center;
  position: relative;
}

.hero__actions::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -25px;
  right: 30%;
  bottom: -20px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 80%,
    transparent 100%
  );
  filter: blur(20px);
  z-index: -1;
  border-radius: 35px;
}


/* ==================== PRIMARY (Contáctanos) — Minimal + trazo oro líquido ==================== */

.hero__btn--primary{
  --gold1: #d4af37;
  --gold2: #ffd700;
  --gold3: #ffefb0;

  position: relative;
  isolation: isolate;
  overflow: visible;

  background: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: 100;

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 20px 40px;

  transition:
    transform .22s cubic-bezier(.2,.8,.2,1),
    box-shadow .22s ease,
    border-color .22s ease,
    background .28s ease;
}


/* Para animar el conic-gradient suave */
@property --spin {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* Trazo que recorre el borde (solo aparece en hover) */
.hero__btn--primary::before{
  content: '';
  position: absolute;
  inset: -2px;                 /* deja respirar el trazo por fuera */
  border-radius: inherit;
  padding: 2px;                /* grosor del trazo */
  z-index: -1;
  pointer-events: none;

  /* Segmento pequeño dorado + cola suave: “oro líquido” */
  background: conic-gradient(
    from var(--spin),
    transparent 0deg 305deg,
    rgba(255,239,176,0.0) 305deg,
    rgba(255,239,176,0.85) 316deg,
    rgba(255,215,0,1.0) 324deg,
    rgba(212,175,55,0.95) 334deg,
    rgba(255,239,176,0.0) 346deg,
    transparent 346deg 360deg
  );

  /* Recorta para que sea SOLO borde (no rellene el centro) */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  filter: saturate(1.15);
  transition: opacity .18s ease;
}

/* Glow externo sutil (por fuera) */
.hero__btn--primary::after{
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  z-index: -2;
  pointer-events: none;

  background: conic-gradient(
    from var(--spin),
    transparent 0deg 305deg,
    rgba(255,215,0,0.25) 324deg,
    rgba(212,175,55,0.22) 334deg,
    transparent 360deg
  );

  filter: blur(18px);
  opacity: 0;
  transition: opacity .18s ease;
}

/* Hover: aparece el trazo + corre alrededor + glow */
.hero__btn--primary:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 14px 34px rgba(0,0,0,0.55);
}

.hero__btn--primary:hover,
.hero__btn--primary.is-active{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 14px 34px rgba(0,0,0,0.55);
  
}
/* --- Primary: sweep controlado por JS (termina aunque salgas) --- */
.hero__btn--primary.is-cycle::before,
.hero__btn--primary.is-cycle::after{
  opacity: 1;
  animation: wbnGoldTrace 1.25s linear 1;
 
}
/* MICA: solo durante la animación (cuando JS pone .is-cycle) */
.hero__btn--primary.is-cycle{
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.02));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


@keyframes wbnGoldTrace{
  to { --spin: 360deg; }
}

/* Focus visible (premium) */
.hero__btn--primary:focus-visible{
  outline: none;
  border-color: rgba(255,215,0,0.22);
  box-shadow:
    0 0 0 3px rgba(255,215,0,0.14),
    0 14px 34px rgba(0,0,0,0.55);
}

/* Respeta reduce motion */
@media (prefers-reduced-motion: reduce){
  .hero__btn--primary:hover::before,
  .hero__btn--primary:hover::after{
    animation: none;
  }
}

/* ==================== FIN PRIMARY ==================== */

.hero__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.hero__btn--secondary::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, transparent, #D4AF37, transparent, transparent);
  background-size: 400% 400%;
  border-radius: 50px;
  z-index: -1;
  animation: goldBorder 8s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__btn--secondary:hover::before {
  opacity: 1;
}

.hero__btn--secondary:hover {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

@keyframes goldBorder {
  0% {
    background-position: -300% 0%;
  }
  100% {
    background-position: 300% 0%;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero__scroll::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, transparent, transparent, #D4AF37, transparent, transparent);
  background-size: 400% 400%;
  border-radius: 50%;
  z-index: -1;
  animation: goldBorder 8s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__scroll:hover::before {
  opacity: 1;
}

.hero__scroll:hover {
  border-color: transparent;
  transform: translateX(-50%) scale(1.05);
}

.hero__scroll-icon {
  width: 24px;
  height: 24px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  margin-top: -8px;
  transition: all 0.3s ease;
}

.hero__scroll:hover .hero__scroll-icon {
  border-color: #D4AF37;
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}




/* ==================== Secondary: hover cycle (2 spins + 1 gold sweep) ==================== */

.hero__btn--secondary{
  /* base icon button */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;

  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  text-decoration: none;

  position: relative;
  isolation: isolate;
  line-height: 0;
  perspective: 900px;

  transition:
    transform .22s cubic-bezier(.2,.8,.2,1),
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.hero__btn--secondary svg{
  width: 24px;
  height: 24px;
  display: block;

  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;

  /* ayuda a que al salir del hover no “pegue” tan feo */
  transition: transform .28s ease;
}

.hero__btn--secondary path{ fill: currentColor; }

/* “resaltado leve” estable durante hover (sin exagerar) */
.hero__btn--secondary:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
}

/* Destello dorado: existe pero invisible por defecto */
.hero__btn--secondary::before{
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  pointer-events: none;
  z-index: -1;

  /* “segmento” de oro en el borde */
  background: conic-gradient(
    from 0deg,
    transparent 0deg 305deg,
    rgba(255,239,176,0.0) 305deg,
    rgba(255,239,176,0.85) 320deg,
    rgba(255,215,0,1.0) 332deg,
    rgba(212,175,55,0.95) 346deg,
    rgba(255,239,176,0.0) 360deg
  );

  /* solo borde (sin rellenar el centro) */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  transform: rotate(0deg);
  filter: saturate(1.1);
}

/* SOLO en hover corre el ciclo (no hay idle) */
/* la animación corre 1 ciclo completo (4s) aunque se vaya el hover */
.hero__btn--secondary.is-cycle svg{
  animation: wbnLogoSpinCycle 4s cubic-bezier(.2,.9,.2,1) 1 both;
}

.hero__btn--secondary.is-cycle::before{
  animation: wbnGoldSweepCycle 4s linear 1 both;
}

/* el look “hover” también lo controlamos por clase para que no brinque feo */
.hero__btn--secondary.is-active{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
}

/* 2 vueltas rápidas al inicio, luego queda quieto */
@keyframes wbnLogoSpinCycle{
  0%   { transform: rotateY(0deg) scale(1); }
  14%  { transform: rotateY(720deg) scale(1.04); } /* ~0.56s si dura 4s */
  22%  { transform: rotateY(720deg) scale(1); }
  100% { transform: rotateY(720deg) scale(1); }
}

/* destello dorado: una pasada lenta y se apaga */
@keyframes wbnGoldSweepCycle{
  0%   { opacity: 0; transform: rotate(0deg); }
  8%   { opacity: 1; }
  40%  { opacity: 1; transform: rotate(360deg); }  /* “lento” */
  52%  { opacity: 0; transform: rotate(360deg); }
  100% { opacity: 0; transform: rotate(360deg); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .hero__btn--secondary:hover svg,
  .hero__btn--secondary:hover::before{
    animation: none !important;
  }
}

/* ==================== fin ==================== */

/*******************************************************************/
/* =========================
   QUÉ HACEMOS (INTRO NEGRO)
   ========================= */

.what-we-do { width: 100%; }

/* Rectángulo negro */
.what-we-do__intro{
  width: 100%;
  background: #000;
  padding: 0; /* controlado por inner */
}

/* Más ancho que antes, y menos “encerrado” */
.what-we-do__intro-inner{
  width: 100%;
  max-width: var(--wbn-container);
  margin: 0 auto;
  padding: var(--wbn-padY-section) var(--wbn-gutter);

  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* balance fino */
  gap: clamp(32px, 4vw, 84px);
  align-items: center;
}

.what-we-do__lead{
  font-size: clamp(2.2rem, 2.4vw + 1rem, 3.9rem);
  line-height: 1.10;
  margin: 0 0 22px 0;
  max-width: clamp(720px, 46vw, 980px);
  letter-spacing: -0.02em;
}

.what-we-do__sub{
  font-size: clamp(1.05rem, 0.55vw + 0.9rem, 1.28rem);
  line-height: 1.75;
  margin: 0;
  max-width: clamp(520px, 30vw, 720px);
  color: rgba(255,255,255,0.86);
}

.what-we-do__visual{
  min-height: clamp(360px, 34vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wbn-model{
  width: min(720px, 100%);
  height: clamp(360px, 34vw, 560px);
  display: block;
  background: transparent;
}


/* Texto más grande y con mejor jerarquía */
.what-we-do__text{
  color: #fff;
}

.what-we-do__lead{
  font-size: clamp(2.4rem, 2.2vw + 1.2rem, 3.6rem);
  line-height: 1.12;
  margin: 0 0 24px 0;
  max-width: 860px;
  letter-spacing: -0.02em;
}

.what-we-do__sub{
  font-size: clamp(1.05rem, 0.45vw + 0.9rem, 1.25rem);
  line-height: 1.75;
  margin: 0;
  max-width: 620px;
  color: rgba(255,255,255,0.86);
}

/* Visual (sin cuadro) */
.what-we-do__visual{
  position: relative;
  width: 100%;
  min-height: 520px;          /* área real para el 3D */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Halo suave detrás del modelo (premium, no caja) */
.what-we-do__visual::before{
  content: '';
  position: absolute;
  width: min(520px, 90%);
  height: min(520px, 90%);
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255,215,0,0.10) 0%,
    rgba(212,175,55,0.06) 28%,
    rgba(255,255,255,0.04) 45%,
    rgba(0,0,0,0) 72%
  );
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

/* model-viewer a tamaño grande y limpio */
.wbn-model{
  width: min(620px, 100%);
  height: 520px;
  display: block;
  background: transparent;
  border: 0;
  outline: none;
}

/* Rectángulo perlado (se queda igual, solo por contexto) */
.what-we-do__icons{
  width: 100%;
  background: #f3f1ea;
  color: #0b0b0b;
}

.what-we-do__icons-inner{
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 110px 100px;
}

/* Responsive */
@media (max-width: 1024px){
  .what-we-do__intro-inner{
    padding: 96px 24px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .what-we-do__visual{
    min-height: 420px;
    justify-content: flex-start;
  }

  .wbn-model{
    width: min(520px, 100%);
    height: 420px;
  }
}


/* =========================================================
   WE DO / ICONS GRID (AUTO) + FLIP (cuadradas, título arriba)
   Aplica SOLO a lo insertado en .what-we-do__icons-inner
   ========================================================= */

.what-we-do__icons-inner{
  max-width: var(--wbn-container);
  padding: clamp(64px, 6.5vw, 120px) var(--wbn-gutter);
}

/* Head */
.what-we-do__icons-head{
  display: grid;
  gap: 10px;
  margin: 0 0 clamp(14px, 1.6vw, 22px) 0;
}

.what-we-do__icons-sub{
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.6;
  font-size: clamp(0.98rem, 0.35vw + 0.92rem, 1.12rem);
  max-width: 68ch;
  font-weight: 400;
}

/* GRID AUTO: mínimo ~4 en desktop, si cabe mete más */
.what-we-do__services{
  --card-radius: 14px;
  --card-border: rgba(11,11,11,0.10);
  --card-ink: #0b0b0b;

  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(210px, 18vw, 300px), 1fr)
  );
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
}

/* Reset de spans viejos (por si quedaron reglas anteriores) */
.what-we-do__card{
  grid-column: auto !important;

  border-radius: var(--card-radius);
  outline: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;

  perspective: 1100px;
}

/* CUADRADA */
.what-we-do__card-inner{
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 190px;

  position: relative;
  transform-style: preserve-3d;
  transition: transform 650ms cubic-bezier(.2,.85,.2,1);
}

/* Faces */
.what-we-do__card-face{
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  border: 1px solid var(--card-border);

  background: rgba(255,255,255,0.72);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.65);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  padding: clamp(18px, 1.4vw, 24px);
  backface-visibility: hidden;
  overflow: hidden;

  transition: box-shadow 220ms ease, border-color 220ms ease;
}

/* FRONT: título arriba, icono abajo */
.what-we-do__card-face--front{
  transform: rotateY(0deg);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1vw, 16px);
  text-align: center;
}

.what-we-do__card-face--front .what-we-do__card-title{ order: 1; }
.what-we-do__card-face--front .what-we-do__card-icon{ order: 2; }

/* BACK */
.what-we-do__card-face--back{
  transform: rotateY(180deg);

  display: grid;
  align-content: center;
  gap: 10px;
  text-align: left;
}

/* Hover/Focus */
.what-we-do__card:hover .what-we-do__card-face,
.what-we-do__card:focus-visible .what-we-do__card-face{
  border-color: rgba(212,175,55,0.35);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.65);
}

.what-we-do__card:focus-visible{
  box-shadow: 0 0 0 3px rgba(212,175,55,0.18);
}

/* Icono (escala con la tarjeta) */
.what-we-do__card-icon{
  width: clamp(44px, 3.2vw + 22px, 86px);
  height: auto;
  display: block;
  opacity: 0.92;
  filter: grayscale(1);
}

/* Títulos */
.what-we-do__card-title{
  margin: 0;
  color: var(--card-ink);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
  font-size: clamp(1.0rem, 0.55vw + 0.95rem, 1.2rem);
  text-align: center;
}

.what-we-do__card-face--back .what-we-do__card-title{
  text-align: left;
}

.what-we-do__card-text{
  margin: 0;
  color: rgba(11,11,11,0.72);
  font-weight: 400;
  line-height: 1.65;
  font-size: clamp(0.95rem, 0.25vw + 0.92rem, 1.06rem);
  max-width: 44ch;
}

.what-we-do__card-hint{
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(11,11,11,0.46);
}

/* FLIP */
.what-we-do__card.is-flipped .what-we-do__card-inner{
  transform: rotateY(180deg);
}

/* CTA card: un toque más “premium” */
.what-we-do__card--cta .what-we-do__card-face{
  border-color: rgba(212,175,55,0.22);
  background:
    radial-gradient(circle at 30% 20%,
      rgba(212,175,55,0.10),
      rgba(255,255,255,0.70) 55%,
      rgba(255,255,255,0.72) 72%
    );
}

.what-we-do__card--cta:hover .what-we-do__card-face,
.what-we-do__card--cta:focus-visible .what-we-do__card-face{
  border-color: rgba(212,175,55,0.50);
}

/* Mobile */
@media (max-width: 640px){
  .what-we-do__services{
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .what-we-do__card-inner{
    min-height: 210px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .what-we-do__card-inner,
  .what-we-do__card-face{
    transition: none !important;
  }
}






.what-we-do__icons-title{
  display: inline-flex;     /* se ajusta al texto */
  width: fit-content;       /* por si algún width:100% lo pisa */
  max-width: 100%;
  align-items: center;

    margin: 0 0 clamp(9px, 1vw, 19px) 0;


  font-size: clamp(2.1rem, 2.2vw + 0.9rem, 3.2rem);
  line-height: 1;
  letter-spacing: -0.01em;

  color: rgba(30,30,30,0.88);
  background: #d4af37;

  padding: 0.34em 0.55em 0.18em;
  border-radius: 6px;

  /* si el texto se parte en 2 líneas, que el fondo “siga” */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}




/* CONTENEDOR con GIF (usa el mismo selector donde pusiste el background) */
.what-we-do__icons{
  position: relative;
  overflow: hidden;

  /* importante para evitar “costuras” por repetición */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #000; /* fallback / base oscura */
}

/* overlay negro para “difuminar” el borde superior */
.what-we-do__icons::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  /* controla cuánto “baja” la oscuridad */
  --fadeTop: 52%;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.98) 0%,
    rgba(0,0,0,0.88) 12%,
    rgba(0,0,0,0.60) 28%,
    rgba(0,0,0,0.25) 42%,
    rgba(0,0,0,0.00) var(--fadeTop)
  );
}

/* asegura que tu contenido quede arriba del overlay */
.what-we-do__icons-inner{
  position: relative;
  z-index: 1;
}

:root{
  --wbn-gold: #d4af37;

  --wbn-text: rgba(255,255,255,.92);
  --wbn-text-muted: rgba(255,255,255,.72);

  --wbn-glass: rgba(10,10,10,.46);
  --wbn-glass-2: rgba(10,10,10,.34);
  --wbn-border: rgba(255,255,255,.12);
}

/* Panel “mica” detrás del header + grid (para leer sobre el GIF) */
.what-we-do__icons-inner{
  isolation: isolate;
  position: relative;  /* importante para el ::before */
}

.what-we-do__icons-inner::before{
  content:"";
  position:absolute;
  inset: clamp(10px, 1.4vw, 18px);
  z-index: -1;

  border-radius: clamp(18px, 2vw, 28px);
  border: 1px solid var(--wbn-border);

  background: linear-gradient(
    180deg,
    rgba(12,12,12,.58) 0%,
    rgba(12,12,12,.46) 45%,
    rgba(12,12,12,.30) 100%
  );

  box-shadow:
    0 28px 90px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.10);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Header legible en dark */
.what-we-do__icons-head{ color: var(--wbn-text); }

.what-we-do__icons-sub{
  color: var(--wbn-text-muted);
  text-shadow: 0 10px 34px rgba(0,0,0,.70);
}

/* Tu chip dorado, pero con más “peso” sobre fondo oscuro */
.what-we-do__icons-title{
  box-shadow:
    0 16px 46px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.18);
}

/* Tarjetas a glass oscuro */
.what-we-do__services{
  --card-border: var(--wbn-border);
  --card-ink: var(--wbn-text);
}

.what-we-do__card-face{
  background: linear-gradient(180deg, var(--wbn-glass), var(--wbn-glass-2));
  border: 1px solid var(--wbn-border);

  box-shadow:
    0 26px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.10);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Línea highlight arriba (detalle premium) */
.what-we-do__card-face::before{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  top: 10px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.22),
    transparent
  );
  opacity: .85;
}

/* Íconos: si son PNG/SVG como <img> monocromos, inviértelos para dark */
.what-we-do__card-icon{
  filter: invert(1) grayscale(1);
  opacity: .92;
}

/* Textos */
.what-we-do__card-title{
  color: var(--wbn-text);
  text-shadow: 0 14px 34px rgba(0,0,0,.55);
}

.what-we-do__card-text{ color: rgba(255,255,255,.74); }
.what-we-do__card-hint{ color: rgba(255,255,255,.48); }

/* Hover/focus: oro sobrio */
.what-we-do__card:hover .what-we-do__card-face,
.what-we-do__card:focus-visible .what-we-do__card-face{
  border-color: rgba(212,175,55,.42);
  box-shadow:
    0 34px 110px rgba(0,0,0,.62),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* CTA card: sheen dorado sobre oscuro */
.what-we-do__card--cta .what-we-do__card-face{
  border-color: var(--wbn-border);
  background: linear-gradient(180deg, var(--wbn-glass), var(--wbn-glass-2));
}



/* 1) BASE: tu título dorado en forma de paralelogramo */
.what-we-do__icons-title{
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0 0 clamp(9px, 1vw, 19px) 0;

  font-size: clamp(2.1rem, 2.2vw + 0.9rem, 3.2rem);
  line-height: 1;
  letter-spacing: -0.01em;

  color: rgba(30,30,30,0.88);
  padding: 0.34em 0.60em 0.20em;

  /* quita el background de aquí (lo hace el ::before) */
  background: transparent;

  /* por si se parte en 2 líneas */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* 2) “PLACA” DORADA (paralelogramo) */
.what-we-do__icons-title::before{
  content: "";
  position: absolute;
  inset: -0.10em -0.12em;         /* margen del fondo alrededor del texto */
  z-index: -1;

  background: #d4af37;
  border-radius: 8px;

  /* PARÁLELOGRAMO (ajusta el % si lo quieres más/menos inclinado) */
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);

  /* opcional: sombra para que se sienta “placa” */
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

/* 3) (OPCIONAL) highlight metálico sutil */
.what-we-do__icons-title::after{
  content: "";
  position: absolute;
  inset: -0.10em -0.12em;
  z-index: -1;

  border-radius: 8px;
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.35) 0%,
    rgba(255,255,255,0.10) 18%,
    rgba(0,0,0,0.00) 55%
  );

  opacity: 0.35; /* súbelo/bájalo */
  pointer-events: none;
}



















/* =========================
   PROCESS (banda negra premium)
   ========================= */

.process{
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* 1) Container normal: alinea el heading con el resto del sitio */
.process__container{
  width: 100%;
  max-width: var(--wbn-container);
  margin: 0 auto;
  padding: var(--wbn-padY-section) var(--wbn-gutter);
}



.process__head{
  display: grid;
  gap: 10px;
  margin: 0 0 clamp(22px, 2.4vw, 38px) 0;
  max-width: 70ch;
}

.process__title{
  margin: 0;
  font-size: clamp(2.2rem, 2.1vw + 1rem, 3.2rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.process__sub{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-size: clamp(0.98rem, 0.35vw + 0.92rem, 1.12rem);
}

/* Flow */
.process__flow{
  --node: clamp(78px, 5vw, 96px);

  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.6vw, 22px);
  padding: clamp(18px, 1.8vw, 26px);

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
}



/* Nodo circular */
.process__node{
  width: var(--node);
  height: var(--node);
  border-radius: 999px;
  display: grid;
  place-items: center;

  border: 1px solid rgba(212,175,55,0.26);
  background:
    radial-gradient(circle at 30% 25%,
      rgba(212,175,55,0.12),
      rgba(255,255,255,0.06) 46%,
      rgba(0,0,0,0.02) 78%
    );

  box-shadow:
    0 18px 50px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Iconos SVG (grises) -> los llevamos a “plata” en fondo oscuro */
.process__icon{
  width: calc(var(--node) * 0.44);
  height: auto;
  display: block;
  opacity: 0.92;

  /* Ajuste para que el gris se lea “premium” sobre negro */
  filter: grayscale(1) brightness(1.25);
}

/* Textos */
.process__step-title{
  margin: 0;
  font-size: clamp(1.02rem, 0.35vw + 0.95rem, 1.18rem);
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

.process__step-text{
  margin: 0;
  color: rgba(255,255,255,0.66);
  line-height: 1.65;
  font-size: clamp(0.92rem, 0.25vw + 0.88rem, 1.02rem);
  max-width: 30ch;
}

/* Conectores (líneas) */
.process__connector{
  flex: 1 1 auto;
  height: 1px;
  margin-top: calc(var(--node) / 2);
  background: linear-gradient(
    to right,
    rgba(212,175,55,0.00),
    rgba(212,175,55,0.30),
    rgba(255,255,255,0.12)
  );
  opacity: 0.9;
}




.what-we-do__icons{
  position: relative;
  overflow: hidden;

  /* tu background del GIF */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #000;
}

/* DEGRADADO SUPERIOR (ARRIBA) */
.what-we-do__icons::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.70) 22%,
    rgba(0,0,0,0.18) 55%,
    rgba(0,0,0,0.00) 75%
  );
}

/* DEGRADADO INFERIOR (ABAJO) */
.what-we-do__icons::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 260px; /* sube a 320px si aún se nota */
  pointer-events:none;
  z-index:0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.86) 30%,
    rgba(0,0,0,0.42) 60%,
    rgba(0,0,0,0.00) 100%
  );
}

/* contenido arriba de ambos overlays */
.what-we-do__icons-inner{
  position: relative;
  z-index: 1;
}


.wbn-title-chip{
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  line-height: 1;
  letter-spacing: -0.01em;

  color: rgba(30,30,30,0.88);
  padding: 0.34em 0.60em 0.20em;
  background: transparent;

  z-index: 0;          /* FIX */
  isolation: isolate;  /* FIX */
}

.wbn-title-chip::before{
  content: "";
  position: absolute;
  inset: -0.10em -0.12em;
  z-index: -1;

  background: var(--wbn-gold, #d4af37);
  border-radius: 8px;
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
  box-shadow:
    0 16px 46px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.16);
}

.wbn-title-chip::after{
  content: "";
  position: absolute;
  inset: -0.10em -0.12em;
  z-index: -1;

  border-radius: 8px;
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.38) 0%,
    rgba(255,255,255,0.12) 18%,
    rgba(0,0,0,0.00) 55%
  );
  opacity: 0.35;
  pointer-events: none;
}


























/*Imagenes*/

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* Fallback */
  background-color: #000;

  /* Overlay + Imagen (el gradiente va primero para quedar ENCIMA) */
  background-image:
    linear-gradient(90deg,
      rgba(0,0,0,0.82) 0%,
      rgba(0,0,0,0.62) 45%,
      rgba(0,0,0,0.35) 100%
    ),
    url("multimedia/HERO_WebyNet.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* Background con imagen por URL (pegas tu link) */
.what-we-do__icons{
  background-image: url("https://cdn.dribbble.com/userupload/25133232/file/original-137ce832e52cc644ba051daa621ff086.gif");
  background-size: cover;          /* o: contain */
  background-position: center;
  background-repeat: no-repeat;
  /* Opcional: fija para efecto “parallax” suave */
  /* background-attachment: fixed; */
}











































































/* =========================
   PROCESS (WBN) — 100% responsive, sin overflow
   ========================= */

.wbn-process{
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.wbn-process__container{
  width: 100%;
  max-width: var(--wbn-container);
  margin: 0 auto;
  padding: var(--wbn-padY-section) var(--wbn-gutter);
}

.wbn-process__head{
  display: grid;
  gap: 10px;
  margin: 0 0 clamp(22px, 2.4vw, 38px);
  max-width: 70ch;
}

.wbn-process__title{
  margin: 0;
}

.wbn-process__sub{
  margin: 0;
  color: rgba(255,255,255,0.74);
  line-height: 1.7;
  font-size: clamp(1.0rem, 0.35vw + 0.95rem, 1.15rem);
}

/* Panel glass */
.wbn-process__panel{
  position: relative;
  border-radius: clamp(16px, 1.6vw, 22px);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);

  padding: clamp(18px, 1.8vw, 28px);
  overflow: hidden; /* clave: evita que conectores/hover provoquen scroll */
}

/* Grid auto-fit: nunca fuerza 5 columnas */
.wbn-process__grid{
  --minCard: 220px;
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  gap: clamp(14px, 1.6vw, 22px);

  grid-template-columns: repeat(auto-fit, minmax(min(var(--minCard), 100%), 1fr));
  align-items: start;
}

/* Step */
.wbn-process__step{
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;

  padding: clamp(10px, 1vw, 14px) clamp(8px, 0.9vw, 12px);
  border-radius: 16px;
}

/* Node */
.wbn-process__node{
  --node: clamp(74px, 5vw, 92px);

  width: var(--node);
  height: var(--node);
  border-radius: 999px;
  display: grid;
  place-items: center;

  border: 1px solid rgba(212,175,55,0.26);
  background:
    radial-gradient(circle at 30% 25%,
      rgba(212,175,55,0.14),
      rgba(255,255,255,0.06) 46%,
      rgba(0,0,0,0.02) 78%
    );

  box-shadow:
    0 18px 50px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Icon visible SIEMPRE (sin filtros destructivos) */
.wbn-process__icon{
  width: calc(clamp(74px, 5vw, 92px) * 0.48);
  height: auto;
  display: block;
  opacity: 0.92;

  /* Si tus SVG son negros, esto los vuelve “plata” legible sobre negro */
  filter: invert(1) grayscale(1) brightness(1.05);
}

/* Text */
.wbn-process__stepTitle{
  margin: 0;
  font-size: clamp(1.25rem, 0.65vw + 1rem, 1.42rem);
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
  font-weight: 650;
}

.wbn-process__stepText{
  margin: 0;
  color: rgba(255,255,255,0.66);
  line-height: 1.65;
  font-size: clamp(0.94rem, 0.25vw + 0.9rem, 1.05rem);
  max-width: 34ch;
}

/* Desktop connectors: SOLO cuando caben 5 en fila */
@media (min-width: 1180px){
  .wbn-process__grid{
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(18px, 1.8vw, 24px);
  }

  .wbn-process__step::after{
    content: "";
    position: absolute;
    top: calc(clamp(74px, 5vw, 92px) / 2);
    left: calc(100% + 10px);
    width: calc(clamp(18px, 1.8vw, 24px) - 2px);
    height: 1px;

    background: linear-gradient(
      to right,
      rgba(212,175,55,0.00),
      rgba(212,175,55,0.32),
      rgba(255,255,255,0.10)
    );
    opacity: 0.9;
  }

  .wbn-process__step:last-child::after{
    display: none;
  }
}

/* Mobile: compact + lectura buena */
@media (max-width: 520px){
  .wbn-process__panel{
    padding: 16px;
  }
  .wbn-process__stepText{
    max-width: 42ch;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .wbn-process__panel{
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.wbn-process__icon{
  filter: invert(1) grayscale(1) brightness(1.05);
}
.inter-v1{
    font-weight: 200;
    font-size: .85rem;
    color: #d39c06;
}































/* =========================================================
   CAPS — Collage editorial premium (sin panal)
   Pega al final para que pise lo anterior
   ========================================================= */

:root{
  --wbn-gold: #d4af37;
}

/* Sección */
.caps{
  padding: var(--wbn-padY-section, 110px) 0;
  background: #000;
  color: rgba(255,255,255,0.92);
}

.caps__container{
  width: 100%;
  max-width: var(--wbn-container, 1440px);
  margin: 0 auto;
  padding: 0 var(--wbn-gutter, 80px);
}

/* Head */
.caps__head{
  display: grid;
  gap: 10px;
  margin: 0 0 clamp(18px, 2vw, 34px);
  max-width: 70ch;
}

.caps__title{
  margin: 0;
}

.caps__titleTag{
  position: relative;
  display: inline-block;
  width: fit-content;
  line-height: 1;
  letter-spacing: -0.01em;
  font-family: "Prata", serif;
  font-size: clamp(2.0rem, 2.2vw + 0.8rem, 3.2rem);
  color: rgba(30,30,30,0.88);
  padding: 0.34em 0.62em 0.20em;
  isolation: isolate;
}

.caps__titleTag::before{
  content:"";
  position:absolute;
  inset: -0.10em -0.12em;
  z-index:-1;
  background: var(--wbn-gold);
  border-radius: 8px;
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
  box-shadow:
    0 16px 46px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.18);
}

.caps__titleTag::after{
  content:"";
  position:absolute;
  inset: -0.10em -0.12em;
  z-index:-1;
  border-radius: 8px;
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.38) 0%,
    rgba(255,255,255,0.12) 18%,
    rgba(0,0,0,0.00) 55%
  );
  opacity: 0.35;
  pointer-events: none;
}

.caps__lead{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  font-size: clamp(1.0rem, 0.35vw + 0.95rem, 1.15rem);
}

/* Panel mica */
.caps__shell{
  position: relative;
  border-radius: clamp(16px, 1.6vw, 22px);
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(
    180deg,
    rgba(12,12,12,0.58) 0%,
    rgba(12,12,12,0.46) 45%,
    rgba(12,12,12,0.30) 100%
  );
  box-shadow:
    0 30px 90px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.caps__grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(22px, 3vw, 64px);
  align-items: center;
  padding: clamp(18px, 2.2vw, 34px);
}

.caps__media{
  display: grid;
  place-items: center;
  min-height: clamp(360px, 34vw, 560px);
}

.caps__copy{
  min-height: clamp(240px, 28vw, 520px);
}

.caps__copyInner{
  width: 100%;
  height: 100%;
}

/* =========================================================
   Collage editorial — tarjetas superpuestas
   ========================================================= */

.caps__collage{
  width: min(720px, 100%);
  aspect-ratio: 1.55 / 1;        /* rectangular (evita “cuadro”) */
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 18px;
}

/* halos suaves detrás (premium, no “chafa”) */
.caps__collage::before{
  content:"";
  position:absolute;
  inset: -12%;
  z-index: 0;
  pointer-events:none;
  background:
    radial-gradient(circle at 30% 35%,
      rgba(212,175,55,0.13) 0%,
      rgba(212,175,55,0.06) 26%,
      rgba(255,255,255,0.04) 40%,
      rgba(0,0,0,0) 74%
    ),
    radial-gradient(circle at 70% 70%,
      rgba(255,255,255,0.05) 0%,
      rgba(0,0,0,0) 62%
    );
  filter: blur(18px);
  opacity: 0.95;
}

/* tarjeta base */
.caps__tile{
  position: absolute;
  left: calc(var(--x) * 1%);
  top:  calc(var(--y) * 1%);
  width: calc(var(--w) * 1%);
  height: calc(var(--h) * 1%);
  z-index: var(--z, 1);

  transform: translate(-50%, -50%) rotate(var(--r, 0deg));
  transform-origin: center;
  will-change: transform;

  border-radius: clamp(14px, 1.1vw, 18px);
  border: 1px solid rgba(255,255,255,0.12);

  background-image: var(--img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow:
    0 26px 80px rgba(0,0,0,0.62),
    inset 0 1px 0 rgba(255,255,255,0.10);

  transition:
    transform 220ms cubic-bezier(.2,.85,.2,1),
    box-shadow 220ms ease,
    filter 220ms ease;
}

/* sheen + viñeta para profundidad sin “ensuciar” */
.caps__tile::before{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events:none;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(0,0,0,0) 52%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.38) 100%);
  opacity: 0.95;
}

/* borde interno fino */
.caps__tile::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events:none;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 2px rgba(0,0,0,0.22);
}

/* hover: levanta y prioriza */
.caps__tile:hover{
  z-index: 20;
  transform: translate(-50%, -52%) rotate(var(--r, 0deg)) scale(1.03);
  filter: saturate(1.04) contrast(1.03);
  box-shadow:
    0 34px 120px rgba(0,0,0,0.72),
    0 0 0 1px rgba(212,175,55,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* la principal (hero) domina */
.caps__tile--hero{
  border-color: rgba(212,175,55,0.22);
  box-shadow:
    0 34px 110px rgba(0,0,0,0.70),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* =========================================================
   Distribución (irregular, NO librero)
   Ajustada para que se vea “hermosa” y con jerarquía
   ========================================================= */

/* HERO (dominante, ligeramente hacia la izquierda) */
.caps__tile--t5{ --x: 44; --y: 54; --w: 48; --h: 62; --r: -2deg; --z: 8; }

/* superiores */
.caps__tile--t2{ --x: 28; --y: 26; --w: 30; --h: 34; --r: 7deg;  --z: 4; }
.caps__tile--t3{ --x: 72; --y: 24; --w: 30; --h: 34; --r: -7deg; --z: 3; }
.caps__tile--t1{ --x: 50; --y: 12; --w: 22; --h: 26; --r: -9deg; --z: 2; }

/* laterales */
.caps__tile--t4{ --x: 14; --y: 54; --w: 22; --h: 28; --r: -10deg; --z: 1; }
.caps__tile--t6{ --x: 86; --y: 46; --w: 22; --h: 28; --r: 11deg;  --z: 1; }

/* base (peso visual) */
.caps__tile--t8{ --x: 26; --y: 80; --w: 32; --h: 38; --r: -6deg; --z: 5; }
.caps__tile--t7{ --x: 78; --y: 62; --w: 32; --h: 38; --r: 6deg;  --z: 6; }
.caps__tile--t9{ --x: 58; --y: 86; --w: 26; --h: 30; --r: 4deg;  --z: 3; }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px){
  .caps__grid{ grid-template-columns: 1fr; }
  .caps__media{ min-height: clamp(340px, 55vw, 520px); }
  .caps__collage{
    width: min(680px, 100%);
    aspect-ratio: 1.25 / 1;
  }
}

@media (max-width: 520px){
  .caps__collage{
    width: 100%;
    aspect-ratio: 1 / 1.28;
  }

  /* reacomodo para móvil (evita cortes) */
  .caps__tile--t5{ --x: 50; --y: 52; --w: 62; --h: 58; --r: -2deg; }
  .caps__tile--t2{ --x: 28; --y: 22; --w: 40; --h: 30; --r: 6deg; }
  .caps__tile--t3{ --x: 72; --y: 22; --w: 40; --h: 30; --r: -6deg; }
  .caps__tile--t1{ --x: 50; --y: 10; --w: 30; --h: 22; --r: -8deg; }

  .caps__tile--t8{ --x: 28; --y: 78; --w: 44; --h: 34; --r: -5deg; }
  .caps__tile--t7{ --x: 72; --y: 70; --w: 44; --h: 34; --r: 5deg; }
  .caps__tile--t9{ --x: 50; --y: 90; --w: 34; --h: 24; --r: 3deg; }

  .caps__tile--t4{ --x: 12; --y: 52; --w: 26; --h: 22; --r: -10deg; }
  .caps__tile--t6{ --x: 88; --y: 50; --w: 26; --h: 22; --r: 10deg; }
}

@media (prefers-reduced-motion: reduce){
  .caps__tile{ transition: none !important; }
}


/* =========================================================
   CAPS — Collage V1 (FIX): sin fondo debajo + sin recorte
   Pégalo al FINAL de tu CSS
   ========================================================= */

/* 1) Que el área del collage NO recorte nada */
.caps__media{
  overflow: visible !important;
}

/* 2) Quita el “fondo/placa” que está detrás del collage */
.caps__collage{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  /* importante: deja que las tarjetas sobresalgan */
  overflow: visible !important;

  /* si tu versión tenía padding/rounded que se veía como base */
  padding: 0 !important;
  border-radius: 0 !important;
}

/* 3) Por si el fondo venía de pseudo-elementos */
.caps__collage::before,
.caps__collage::after{
  content: none !important;
}

/* 4) Asegura que las tarjetas se vean completas aunque “salgan” */
.caps__tile{
  overflow: visible !important;
}



/* =========================================================
   CAPS — Copy (título + párrafo) para el espacio vacío
   Pega al FINAL de tu CSS
   ========================================================= */

.caps__copy{
  min-height: clamp(240px, 28vw, 520px);
  display: flex;
  align-items: center;
}

.caps__copyInner{
  width: 100%;
  max-width: 60ch;
}

.caps__copyTitle{
  margin: 0 0 14px 0;
  font-size: clamp(1.6rem, 1.15vw + 1rem, 2.45rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 18px 60px rgba(0,0,0,0.65);
  position: relative;
}

/* detalle premium sutil debajo del título */
.caps__copyTitle::after{
  content: "";
  display: block;
  width: clamp(72px, 7vw, 120px);
  height: 2px;
  margin-top: 12px;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    rgba(212,175,55,0.0),
    rgba(212,175,55,0.55),
    rgba(255,255,255,0.10),
    rgba(212,175,55,0.0)
  );
  opacity: 0.9;
}

.caps__copyText{
  margin: 0;
  font-size: clamp(1.0rem, 0.35vw + 0.95rem, 1.15rem);
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255,255,255,0.74);
  text-shadow: 0 14px 46px rgba(0,0,0,0.70);
}

/* Responsive: en mobile centra y baja un poco la densidad */
@media (max-width: 1024px){
  .caps__copy{
    min-height: auto;
    align-items: flex-start;
  }
  .caps__copyInner{
    max-width: 70ch;
    padding-top: 6px;
  }
}

@media (max-width: 520px){
  .caps__copyTitle{
    font-size: clamp(1.45rem, 1.2vw + 1.15rem, 2.05rem);
  }
  .caps__copyText{
    font-size: 1.02rem;
    line-height: 1.72;
  }
}














/* =========================================================
   CAPS — Team roster V2 (editorial minimal)
   Pega al FINAL de tu CSS
   ========================================================= */

.caps__roster{
  margin-top: clamp(18px, 2.2vw, 26px);
  padding-top: clamp(14px, 1.8vw, 20px);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.caps__rosterHead{
  display: grid;
  gap: 8px;
  margin-bottom: clamp(12px, 1.6vw, 18px);
}

/* etiqueta editorial */
.caps__rosterKicker{
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;

  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.76);
}

.caps__rosterKicker::after{
  content:"";
  height: 1px;
  width: clamp(56px, 6vw, 92px);
  background: linear-gradient(
    90deg,
    rgba(212,175,55,0.65),
    rgba(255,255,255,0.10),
    rgba(212,175,55,0.00)
  );
  opacity: .9;
}

.caps__rosterLead{
  margin: 0;
  max-width: 62ch;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  text-shadow: 0 14px 44px rgba(0,0,0,0.65);
}

/* Lista */
.caps__rosterList{
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* Cada fila (sin tarjetas, puro editorial) */
.caps__person{
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;

  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);

  transition: transform 180ms cubic-bezier(.2,.85,.2,1);
}

/* Micro-acento dorado al hover (profesional, no “flashy”) */
.caps__person::before{
  content:"";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 2px;
  border-radius: 99px;

  background: linear-gradient(
    180deg,
    rgba(212,175,55,0.00),
    rgba(212,175,55,0.55),
    rgba(212,175,55,0.00)
  );
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.caps__person:hover{
  transform: translateY(-1px);
}
.caps__person:hover::before{
  opacity: 1;
  transform: translateX(0);
}

/* Mark (círculo minimal) */
.caps__personMark{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);

  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.caps__personIcon{
  width: 18px;
  height: 18px;
  display: block;
  opacity: 0.92;

  /* si vienen oscuros, “plata” sobre negro */
  filter: invert(1) grayscale(1) brightness(1.08);
}

/* hover: aro dorado leve */
.caps__person:hover .caps__personMark{
  border-color: rgba(212,175,55,0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 46px rgba(0,0,0,0.45);
}

/* Texto */
.caps__personBody{
  display: grid;
  gap: 3px;
  min-width: 0;
}

.caps__personName{
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
  line-height: 1.2;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.caps__personRole{
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.35;
  font-size: 0.95rem;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dos columnas en pantallas grandes (queda muy pro en layout editorial) */
@media (min-width: 1180px){
  .caps__rosterList{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(26px, 2.8vw, 44px);
  }
  .caps__person{
    padding: 14px 0;
  }
}

/* Mobile: deja respirar nombres */
@media (max-width: 520px){
  .caps__personName{
    white-space: normal;
  }
}



























/* =========================================================
   SIGNATURE — Starfield Canvas (sección completa)
   ========================================================= */

.signature{
  position: relative;
  width: 100%;
  overflow: hidden;            /* evita scroll horizontal por el canvas */
  background: #000;
}

.signature--starfield{
  min-height: 100vh;
}

/* Canvas cubre toda la sección */
.signature__canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;        /* no estorba clicks */
  z-index: 0;
}

/* Contenido encima */
.signature__container{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--wbn-container, 1440px);
  margin: 0 auto;
  padding: var(--wbn-padY-section, 110px) var(--wbn-gutter, 80px);
}

/* (Opcional) Overlay sutil para “lujo” y legibilidad */
.signature--starfield::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 800px at 50% 40%, rgba(255,255,255,0.06), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
}


/* Asegura capas correctas */
.signature__canvas { z-index: 0; }
.signature__container { z-index: 2; position: relative; }

/* Feather corto arriba (difuminado SOLO en el borde superior) */
.signature--starfield{
  --sf-feather: 120px; /* 80px = más corto / 140px = más suave */
}

/* Este es el que elimina la línea */
.signature--starfield::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;                 /* mata líneas de 1px por subpixel */
  height: var(--sf-feather);
  pointer-events: none;
  z-index: 1;

  /* negro -> transparente (solo arriba) */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0) 100%
  );
}





/* Canvas = fondo */
.signature__canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 1;
}

/* Logo 3D centrado sobre el canvas */
.signature__visual{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none; /* no estorba scroll */
}

/* Tamaño responsive del logo */
.signature__model{
  width: clamp(240px, 28vw, 560px);
  height: clamp(240px, 28vw, 560px);
  background: transparent;
  opacity: 0.96;
  filter: drop-shadow(0 22px 80px rgba(0,0,0,0.55));
}

/* Contenido arriba de todo */
.signature__container{
  position: relative;
  z-index: 3;
}


/* Antes lo tenías en none. Déjalo en auto para que pase el drag */
.signature__visual{
  pointer-events: auto;
}

/* Asegura que el model sí reciba eventos */
.signature__model{
  pointer-events: auto;
  cursor: grab;
  touch-action: none; /* importante en móvil: evita que el drag haga scroll */
}

.signature__model:active{
  cursor: grabbing;
}


/* =========================================================
   SIGNATURE — capas definitivas (override final)
   ========================================================= */

/* Base */
.signature { position: relative; overflow: hidden; background: #000; }

/* Canvas al fondo */
.signature__canvas{ z-index: 0 !important; }

/* Overlay sutil arriba del canvas, abajo del modelo */
.signature--starfield::after{
  z-index: 1 !important;
  pointer-events: none;
}

/* Logo 3D arriba del overlay */
.signature__visual{ z-index: 2 !important; pointer-events: auto; }

/* Feather arriba (para mezclar secciones sin tapar el modelo) */
.signature--starfield::before{ z-index: 3 !important; pointer-events: none; }

/* Contenido siempre arriba */
.signature__container{ z-index: 4 !important; position: relative; }

/* Seguridad: ningún pseudo-elemento bloquea interacción */
.signature--starfield::before,
.signature--starfield::after{ pointer-events: none; }


/* Solo: autor alineado al lado derecho del texto */
.signature__quoteBy{
  display: block;
  width: 100%;
  text-align: right;
  margin-top: 8px;

  color: rgba(255,255,255,0.72);
  font-size: 13px;
  letter-spacing: 0.04em;
}


.quote{
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.signature__quoteText{
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.5;
}



/* =========================================================
   SIGNATURE — bloqueo de interacción (solo giro automático)
   ========================================================= */

.signature__visual{
  pointer-events: none !important; /* no interacción */
}

.signature__model{
  pointer-events: none !important; /* no drag */
  cursor: default !important;
  touch-action: auto !important;
}


/* Bloque visual centrado (logo + cita) */
.signature__visual{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  pointer-events: none; /* no interacción */
}

/* Caja MÁS grande para que no se recorte, pero visualmente similar */
.signature__model{
  /* caja grande = margen invisible */
  width: clamp(320px, 36vw, 760px);
  height: clamp(320px, 36vw, 760px);

  /* “regresa” el tamaño visual (ajusta si quieres) */
  transform: scale(0.82);
  transform-origin: center;

  background: transparent;
  opacity: 0.96;
  filter: drop-shadow(0 22px 80px rgba(0,0,0,0.55));

  pointer-events: none; /* sin drag */
  cursor: default;
}
/* ================================
   SIGNATURE — FIX recorte + no interacción
   Pegar al FINAL del CSS
   ================================ */

.signature__visual{
  /* centrado real del bloque logo + cita */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  pointer-events: none; /* bloque completo no interactivo */
  overflow: visible;    /* por si algún efecto visual sobresale */
}

/* Caja MÁS grande para que al rotar no se corte */
.signature__model{
  width: clamp(320px, 38vw, 820px);
  height: clamp(320px, 38vw, 820px);

  /* Mantén el tamaño visual “premium” sin crecer demasiado */
  transform: scale(0.82);
  transform-origin: center;

  background: transparent;
  opacity: 0.96;
  filter: drop-shadow(0 22px 80px rgba(0,0,0,0.55));

  /* NO drag */
  pointer-events: none !important;
  cursor: default !important;
  touch-action: auto !important;
}












/* =========================================================
   SIGNATURE — Quote más cerca del logo (FIX real)
   Pegar AL FINAL del CSS
   ========================================================= */

.signature--starfield{
  /* usa tus valores actuales como “source of truth” */
  --sig-model-box: clamp(320px, 38vw, 820px);
  --sig-model-scale: 0.82;

  /* distancia real entre logo y cita (ajústala) */
  --sig-gap: clamp(8px, 1.2vh, 14px);
}

/* Mantén el layout del bloque */
.signature__visual{
  gap: var(--sig-gap) !important;
}

/* CLAVE: compensar el “aire” que crea el scale dentro de una caja grande */
.signature__model{
  width: var(--sig-model-box) !important;
  height: var(--sig-model-box) !important;
  transform: scale(var(--sig-model-scale)) !important;
  transform-origin: center !important;

  /* Sube la cita acercándola al tamaño visual real del modelo */
  margin-bottom: calc(var(--sig-model-box) * (1 - var(--sig-model-scale)) / -2) !important;
}

/* Por si algún margin previo te separa de más */
.signature__quote{
  margin: 0 !important;
}
/* =========================================================
   SIGNATURE — Levantar la cita (FIX definitivo)
   Pegar AL FINAL del CSS
   ========================================================= */

.signature--starfield{
  /* Ajusta este valor hasta que quede perfecto */
  --sig-quote-lift: clamp(80px, 9vw, 170px);

  /* Gap real entre logo y cita (opcional) */
  --sig-gap: clamp(6px, 1vh, 12px);
}

/* Mantén el stack (logo arriba, cita abajo) pero con gap menor */
.signature__visual{
  gap: var(--sig-gap) !important;
}

/* Sube la cita sin mover el modelo ni alterar el centrado del bloque */
.signature__quote{
  transform: translateY(calc(-1 * var(--sig-quote-lift))) !important;
  will-change: transform;
}
/* Ajuste fino: estaba demasiado pegado */
.signature--starfield{
  /* antes estaba muy alto, bájalo */
  --sig-quote-lift: clamp(40px, 5vw, 110px);

  /* deja respirar un poco */
  --sig-gap: clamp(10px, 1.6vh, 20px);
}






















/* =========================================================
   WBN FOOTER — Minimal 100% transparente (override final)
   - Sin placa/blur/bordes
   - Iconos sin contenedor visible
   - Footer más cerca (sin crear “otra sección”)
   ========================================================= */

/* Reserva espacio para el footer y lo pega al final del viewport de la sección */
.signature--starfield{
  --wbn-footer-reserve: clamp(92px, 13vh, 150px);
}

.signature__stage{
  position: relative;
  min-height: 100vh;
  padding-bottom: var(--wbn-footer-reserve);
}

/* Footer flotando dentro del starfield (no añade un bloque “duplicado”) */
.wbn-footer{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 4;
  pointer-events: auto;

  /* Menos aire arriba/abajo */
  padding: clamp(12px, 1.8vh, 18px) 0;


  background: transparent !important;
}

/* Contenedor general */
.wbn-footer__container{
  width: 100%;
  max-width: var(--wbn-container, 1440px);
  margin: 0 auto;
  padding: 0 var(--wbn-gutter, 80px);
}

/* ADIÓS placa: sin blur, sin borde, sin sombra, sin radios */
.wbn-footer__surface{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* Grid igual, pero compactito */
.wbn-footer__grid{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(14px, 2.2vw, 34px);
  align-items: end;
}

/* Legal minimal */
.wbn-footer__links{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.wbn-footer__links a{
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 300;
}

.wbn-footer__links a:hover{
  color: rgba(255,255,255,0.92);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wbn-footer__copy{
  margin-top: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  font-weight: 300;
}

/* Contacto derecha */
.wbn-footer__contact{
  text-align: right;
}

.wbn-footer__email{
  display: inline-block;
  text-decoration: none;
  color: rgba(255,255,255,0.94);

  /* Mantén tu vibe elegante */
  font-family: "Prata", serif;
  font-size: clamp(1.5rem, 2.55vw, 3.075rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.wbn-footer__email:hover{
  opacity: 0.92;
}

.wbn-footer__meta{
  margin-top: 6px;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  font-weight: 300;
}

/* Acciones: más compacto */
.wbn-footer__actions{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* WhatsApp minimal (sin “pill” visible) */
.wbn-footer__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;

  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
}

.wbn-footer__btn:hover{
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Redes: SIN contenedores visibles */
.wbn-footer__social{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.wbn-footer__socialLink{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* Quita círculo/borde/fondo */
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;

  opacity: 0.72;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.wbn-footer__socialLink:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.wbn-footer__socialIcon{
  width: 18px;
  height: 18px;
  display: block;

  /* tus SVG negros -> “plata” sobre negro */
  filter: invert(1) grayscale(1) brightness(1.08);
}

/* Responsive */
@media (max-width: 820px){
  .wbn-footer__grid{
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }
  .wbn-footer__contact{
    text-align: left;
  }
  .wbn-footer__actions{
    justify-content: flex-start;
  }
}


/* =========================================================
   WBN FOOTER — Ajuste fino de bordes + copyright centrado
   (Pegar AL FINAL y eliminar overrides previos que choquen)
   ========================================================= */

#signature-starfield{
  /* Ajusta qué tan cerca quieres todo de los bordes */
  --wbn-footer-inset: clamp(10px, 1.1vw, 28px);
}

/* 1) Quita el gutter grande del container del footer */
#signature-starfield .wbn-footer__container{
  padding-left: var(--wbn-footer-inset) !important;
  padding-right: var(--wbn-footer-inset) !important;
  max-width: none !important;   /* permite que llegue al borde real */
}

/* 2) Convierte el grid en 3 zonas: izquierda / centro / derecha */
#signature-starfield .wbn-footer__grid{
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: clamp(14px, 2.2vw, 34px);
}

/* 3) “Rompe” el wrapper .wbn-footer__legal para que sus hijos sean items del grid */
#signature-starfield .wbn-footer__legal{
  display: contents !important;
}

/* IZQUIERDA: links pegados al borde izquierdo */
#signature-starfield .wbn-footer__links{
  grid-column: 1;
  justify-self: start;
}

/* CENTRO: copyright centrado horizontalmente */
#signature-starfield .wbn-footer__copy{
  grid-column: 2;
  justify-self: center;
  text-align: center;
  margin-top: 0 !important; /* evita que “baje” raro */
}

/* DERECHA: bloque de contacto pegado al borde derecho */
#signature-starfield .wbn-footer__contact{
  grid-column: 3;
  justify-self: end;
  text-align: right;
}

/* Responsive: en móvil vuelve a 1 columna, orden lógico */
@media (max-width: 820px){
  #signature-starfield .wbn-footer__grid{
    grid-template-columns: 1fr;
    align-items: start;
  }

  #signature-starfield .wbn-footer__links{
    grid-column: 1;
  }

  #signature-starfield .wbn-footer__contact{
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  #signature-starfield .wbn-footer__copy{
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }
}


/* =========================================================
   PROCESS — Título tipo "Capacidades" (más grande)
   Pegar AL FINAL
   ========================================================= */

.wbn-process__title{
  /* Igualar jerarquía visual con el de "Capacidades" */
  font-size: clamp(1.9rem, 2.05vw + 0.8rem, 3.1rem);
  line-height: 1;
}


/* =========================================================
   HERO — Mini menu superior (WebyNet)
   Pegar AL FINAL del CSS
   ========================================================= */

.hero{
  position: relative;
}

/* Barra superior (no ocupa layout, flota) */
.hero__nav{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3; /* arriba del overlay y del contenido */
  pointer-events: none; /* permite que solo los links reciban click */
}

.hero__navInner{
  width: 100%;
  max-width: var(--wbn-container);
  margin: 0 auto;
  padding: 18px var(--wbn-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* ===== Brand ===== */
.hero__brand{
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
}

.hero__brandMark{
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: rgba(255,255,255,0.90);
  opacity: 0.92;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.55));
}

.hero__brandMark svg{
  width: 100%;
  height: 100%;
  display: block;
}

.hero__brandName{
  font-family: "Prata", serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero__brand:hover{
  color: rgba(255,255,255,1);
}

/* ===== Links (derecha) ===== */
.hero__navLinks{
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.hero__navLinks a{
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  font-weight: 300;
  transition: color 160ms ease, opacity 160ms ease;
}

.hero__navLinks a:hover{
  color: rgba(255,255,255,0.96);
}

/* CTA pequeño (no se ve como botón grande, pero sí “premium”) */
.hero__navCta{
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__navCta:hover{
  border-color: rgba(212,175,55,0.22);
}

/* Mobile: deja solo el logo + nombre (oculta links) */
@media (max-width: 820px){
  .hero__navLinks{
    display: none;
  }
  .hero__navInner{
    padding: 16px var(--wbn-gutter);
  }
}

/* Ajuste fino: “Servicios” un poco más arriba (solo este ancla) */
#services-cards{
  scroll-margin-top: 60px; /* antes 90px; ajusta 50–70px a tu gusto */
}



















/* =========================================================
   WBN — Slider/Navegación vertical (rombos dorados) — CORREGIDO
   - Tooltip NO se recorta (overflow visible + tooltip fuera)
   - Rail/fill siguen “limpios” (caps internos para que no se vea feo)
   - Tooltip sin rotación (más elegante y legible)
   ========================================================= */
:root{
  --wbn-gold: #c9a227;
  --wbn-gold-soft: rgba(201,162,39,.25);
  --wbn-gold-mid: rgba(201,162,39,.55);
  --wbn-glass: rgba(0,0,0,.38);

  /* offset por si tienes header fijo (si no, déjalo en 0) */
  --wbn-scroll-offset: 0px;
}

.wbn-scroll{
  position: fixed;
  right: clamp(14px, 2.2vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  padding: 14px 12px;
  border-radius: 999px;

  background: var(--wbn-glass);
  border: 1px solid rgba(201,162,39,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 46px rgba(0,0,0,.55);

  /* PROGRESO (0..1) seteado por JS */
  --wbn-scroll-progress: 0;

  /* Rail dinámico (JS lo ajusta) */
  --wbn-rail-start: 18px;
  --wbn-rail-len: calc(100% - 36px);

  /* CLAVE: permite tooltips fuera sin recortarlos */
  overflow: visible;

  /* evita artefactos raros de composición */
  isolation: isolate;
}

/* CAP superior e inferior para ocultar el rail en las “puntas”
   (esto evita que se vea fea la línea arriba/abajo aunque overflow sea visible) */
.wbn-scroll::before,
.wbn-scroll::after{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

/* rail (fondo) */
.wbn-scroll::before{
  top: var(--wbn-rail-start);
  height: var(--wbn-rail-len);
  width: 1px;
  background: rgba(201,162,39,.22);
}

/* fill (progreso) */
.wbn-scroll::after{
  top: var(--wbn-rail-start);
  width: 2px;
  height: calc(var(--wbn-rail-len) * var(--wbn-scroll-progress));
  border-radius: 2px;
  background: rgba(201,162,39,.9);
  filter: drop-shadow(0 0 8px rgba(201,162,39,.20));
}

/* caps (tapan puntas del rail dentro del pill) */
.wbn-scroll .wbn-scroll__cap{
  position: absolute;
  left: 0;
  right: 0;
  height: 18px;              /* debe empatar con --wbn-rail-start */
  background: var(--wbn-glass);
  border-radius: 999px;
  z-index: 1;
  pointer-events: none;
}
.wbn-scroll .wbn-scroll__cap--top{ top: 0; }
.wbn-scroll .wbn-scroll__cap--bot{ bottom: 0; }

/* rombos */
.wbn-scroll__dot{
  position: relative;
  z-index: 2; /* encima del rail */
  display: block;

  width: 14px;
  height: 14px;

  transform: rotate(45deg);
  border-radius: 2px;

  background: rgba(0,0,0,.28);
  border: 1px solid var(--wbn-gold-mid);

  transition:
    width .18s ease,
    height .18s ease,
    background .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.wbn-scroll__dot:hover{
  background: rgba(201,162,39,.18);
  box-shadow:
    0 0 0 4px rgba(201,162,39,.08),
    0 0 20px rgba(201,162,39,.14);
}

/* activo: rombo alargado */
.wbn-scroll__dot[aria-current="true"]{
  width: 14px;
  height: 34px;
  background: rgba(201,162,39,.22);
  border-color: rgba(201,162,39,.95);
  box-shadow:
    0 0 0 4px rgba(201,162,39,.10),
    0 0 26px rgba(201,162,39,.18);
}

/* tooltip (sin rotación y fuera del contenedor) */
.wbn-scroll__dot::after{
  content: attr(data-label);
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);

  opacity: 0;
  pointer-events: none;
  white-space: nowrap;

  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;

  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(201,162,39,.18);
  border-radius: 999px;
  padding: 8px 10px;

  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 99999;
}

.wbn-scroll__dot:hover::after{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.wbn-scroll__dot:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 4px rgba(201,162,39,.14),
    0 0 0 1px rgba(201,162,39,.75) inset;
}

/* Anclas: 1px para que el “scrollspy” las detecte */
#services-cards,
#equipo-anchor,
#page-bottom{
  height: 1px;
}

/* Offset visual al llegar por anchor */
#services-intro,
#services-cards,
#equipo-anchor,
#page-bottom{
  scroll-margin-top: 60px;
}

/* responsive */
@media (max-width: 900px){
  .wbn-scroll{
    top: auto;
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    gap: 16px;
    padding: 12px 14px;
  }

  .wbn-scroll::before{
    left: 18px;
    right: 18px;
    top: 50%;
    height: 1px;
    width: calc(100% - 36px);
    transform: translateY(-50%);
  }

  .wbn-scroll::after{
    left: 18px;
    top: 50%;
    height: 2px;
    width: calc((100% - 36px) * var(--wbn-scroll-progress));
    transform: translateY(-50%);
  }

  .wbn-scroll .wbn-scroll__cap{ display: none; }
  .wbn-scroll__dot::after{ display: none; }
}

/* Ocultar scrollbar nativa, pero mantener scroll */
html{ scrollbar-width: none; }
html::-webkit-scrollbar{ width: 0; height: 0; }





























/* =========================================================
   WBN — Reveal premium (sin AOS)
   Aparece al bajar y se quita al subir (mirror)
   ========================================================= */

html.wbn-js .wbn-reveal{
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  filter: blur(1.5px);
  transition:
    opacity 900ms cubic-bezier(.2,.8,.2,1),
    transform 900ms cubic-bezier(.2,.8,.2,1),
    filter 900ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform, filter;
}

/* Direcciones */
html.wbn-js .wbn-reveal--up{ transform: translate3d(0, 18px, 0); }
html.wbn-js .wbn-reveal--left{ transform: translate3d(-22px, 0, 0); }
html.wbn-js .wbn-reveal--right{ transform: translate3d(22px, 0, 0); }

/* Estado visible */
html.wbn-js .wbn-reveal.is-in{
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}

/* Delays (premium, sutil) */
html.wbn-js .wbn-reveal--delay-1{ transition-delay: 120ms; }
html.wbn-js .wbn-reveal--delay-2{ transition-delay: 220ms; }
html.wbn-js .wbn-reveal--delay-3{ transition-delay: 320ms; }

/* Accesibilidad */
@media (prefers-reduced-motion: reduce){
  html.wbn-js .wbn-reveal{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}









/* =========================================================
   HERO NAV — Hover solo línea dorada (sin fondo)
   CTA "Contacto" sin dorado por defecto (solo en hover)
   ========================================================= */

:root{
  --wbn-gold: #c9a227;
}

/* base */
.hero__navLinks a{
  position: relative;
  display: inline-flex;
  align-items: center;

  text-decoration: none;
  color: rgba(255,255,255,.78);

  padding: 10px 10px;
  border-radius: 999px;

  transition: color .28s ease, transform .28s ease, filter .28s ease;
}

/* línea dorada que nace desde el centro */
.hero__navLinks a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%) scaleX(0);

  width: calc(100% - 16px);
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(201,162,39,.95),
    transparent
  );

  opacity: 0;
  transition: transform .32s ease, opacity .32s ease;
}

/* hover: solo color + línea */
.hero__navLinks a:hover{
  color: rgba(255,255,255,.98);
  transform: translateY(-1px);
  filter: drop-shadow(0 0 10px rgba(201,162,39,.12));
}

.hero__navLinks a:hover::after{
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

/* focus accesible */
.hero__navLinks a:focus-visible{
  outline: 2px solid rgba(201,162,39,.55);
  outline-offset: 2px;
}

/* CTA "Contacto": normal igual que los demás (sin dorado/borde) */
.hero__navLinks .hero__navCta{
  color: rgba(255,255,255,.78);
  border: 0;
  background: transparent;
  box-shadow: none;
}

/* en hover, se comporta igual (línea + brillo sutil) */
.hero__navLinks .hero__navCta:hover{
  color: rgba(255,255,255,.98);
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  .hero__navLinks a,
  .hero__navLinks a::after{
    transition: none !important;
  }
}



















/* =========================================================
   WBN — PROCESO: hover pop + estela conectada (SVG overlay)
   ========================================================= */

:root{
  --wbn-gold: #c9a227;
}

/* Asegura overlay dentro del panel */
.wbn-process__panel{
  position: relative;
  overflow: hidden; /* evita que la estela se salga feo */
}

/* Los nodos por encima de la estela */
.wbn-process__grid,
.wbn-process__step{
  position: relative;
  z-index: 2;
}

/* ===== POP en contenedor del SVG ===== */
.wbn-process__node{
  cursor: pointer;
  transform: translateZ(0);
  transition: transform .22s ease, filter .22s ease;
  will-change: transform;

  /* opcional: para que el "pop" se sienta premium */
  filter: drop-shadow(0 0 0 rgba(0,0,0,0));
}

.wbn-process__node:hover{
  transform: translateZ(0) scale(1.07);
  filter: drop-shadow(0 0 14px rgba(201,162,39,.18));
}

.wbn-process__node:active{
  transform: translateZ(0) scale(1.06);
}

/* si el JS le pone el pop (para mobile) */
.wbn-process__node.is-pop{
  transform: translateZ(0) scale(1.07);
  filter: drop-shadow(0 0 14px rgba(201,162,39,.18));
}

/* ===== Estela: SVG overlay ===== */
.wbn-process__trail{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* línea base (siempre visible, sutil) */
.wbn-process__trailBase{
  fill: none;
  stroke: rgba(201,162,39,.18);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* glow que “viaja” */
.wbn-process__trailGlow{
  fill: none;
  stroke: rgba(201,162,39,.95);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;

  /* la estela: un tramo brillante y el resto invisible */
  stroke-dasharray: 80 920;
  stroke-dashoffset: 1000;

  opacity: 0;
  filter:
    drop-shadow(0 0 10px rgba(201,162,39,.55))
    drop-shadow(0 0 26px rgba(201,162,39,.22));
}

/* cuando corre la estela */
.wbn-process__panel.wbn-trail--run .wbn-process__trailGlow{
  opacity: 1;
  animation: wbnTrailMove 1.35s cubic-bezier(.2,.9,.2,1) forwards;
}

@keyframes wbnTrailMove{
  from{ stroke-dashoffset: 1000; }
  to{   stroke-dashoffset: 0; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  .wbn-process__node,
  .wbn-process__panel.wbn-trail--run .wbn-process__trailGlow{
    transition: none !important;
    animation: none !important;
  }
}





/* =========================================================
   WBN — PROCESO: hover + FIX overlays (para que sí dispare)
   ========================================================= */

/* Asegura stacking correcto */
.wbn-process__panel{ position: relative; }
.wbn-process__grid{ position: relative; z-index: 2; }

/* Si tu JS mete una capa/estela, esto evita que “tape” el hover */
.wbn-process__panel canvas,
.wbn-process__panel .wbn-process__fx,
.wbn-process__panel .wbn-process__beam,
.wbn-process__panel .wbn-process__trail,
.wbn-process__beam,
.wbn-process__trail,
.wbn-process__spark,
.wbn-trail,
.wbn-beam,
.wbn-fx{
  pointer-events: none !important;
  z-index: 1 !important;
}

/* Los nodos arriba y clickeables */
.wbn-process__node{
  position: relative;
  z-index: 3;
  pointer-events: auto !important;
  cursor: pointer;
}

/* Glow integrado (detrás) */
.wbn-process__node::after{
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  pointer-events: none;

  background: radial-gradient(circle,
    rgba(201,162,39,.22) 0%,
    rgba(201,162,39,.10) 35%,
    rgba(201,162,39,0) 70%
  );

  opacity: 0;
  transform: scale(.92);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(.2,.9,.2,1);
}

/* Escala el SVG (img) para no pelear con transform inline de AOS */
.wbn-process__node > img,
.wbn-process__node > .wbn-process__icon{
  display: block;
  transform: translateZ(0) scale(1);
  transform-origin: 50% 50%;
  will-change: transform, filter;
  transition:
    transform 260ms cubic-bezier(.2,.9,.2,1),
    filter 220ms ease;
}

/* Dispara por hover en el LI o en el node (por si hay gaps) */
.wbn-process__step:hover .wbn-process__node::after,
.wbn-process__node:hover::after{
  opacity: 1;
  transform: scale(1);
}

.wbn-process__step:hover .wbn-process__node > img,
.wbn-process__step:hover .wbn-process__node > .wbn-process__icon,
.wbn-process__node:hover > img,
.wbn-process__node:hover > .wbn-process__icon{
  transform: translateZ(0) scale(1.12);
  filter:
    drop-shadow(0 0 14px rgba(201,162,39,.22))
    drop-shadow(0 0 28px rgba(201,162,39,.12));
}

/* Mobile: “hover” equivalente */
@media (hover: none){
  .wbn-process__node:active::after{ opacity: 1; transform: scale(1); }
  .wbn-process__node:active > img,
  .wbn-process__node:active > .wbn-process__icon{
    transform: translateZ(0) scale(1.10);
  }
}



/* ===== YouTube Modal (minimal premium) ===== */
body.yt-modal-open { overflow: hidden; }

.yt-modal[hidden] { display: none; }

.yt-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
}

.yt-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.yt-modal__panel{
  position: relative;
  width: min(1020px, 92vw);
  border-radius: 20px;
  overflow: hidden;

  background: rgba(0,0,0,.72);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 90px rgba(0,0,0,.60);

  transform: translateY(10px) scale(.985);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}

.yt-modal.is-open .yt-modal__panel{
  transform: translateY(0) scale(1);
  opacity: 1;
}

.yt-modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;

  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;

  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
}

.yt-modal__close:hover{
  border-color: rgba(212, 175, 55, .45); /* acento dorado sutil */
}

/* Contenedor 16:9 */
.yt-modal__frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.yt-modal__frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (prefers-reduced-motion: reduce){
  .yt-modal__panel{ transition: none; transform: none; opacity: 1; }
}








/* ===========================
   WBN Loader (overlay)
   =========================== */
.wbn-loader{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;              /* JS lo prende */
  place-items: center;
  background: #000;
}

.wbn-loader.is-on{ display: grid; }

.wbn-loader::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(circle at 50% 45%,
      rgba(212,175,55,.18) 0%,
      rgba(212,175,55,.08) 26%,
      rgba(255,255,255,.06) 38%,
      rgba(0,0,0,0) 60%);
  filter: blur(18px);
  opacity: .9;
  pointer-events:none;
}

.wbn-loader__panel{
  position: relative;
  width: min(520px, 92vw);
  padding: 26px 22px 22px;
  border-radius: 18px;
  background: rgba(12,12,12,.72);
  border: 1px solid rgba(212,175,55,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  gap: 14px;
  text-align: center;
}

.wbn-loader__mark{
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,.35);
  background: radial-gradient(circle at 30% 30%,
    rgba(212,175,55,.35), rgba(212,175,55,.12) 42%, rgba(0,0,0,.35) 72%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}

/* Barrido dorado ligero */
.wbn-loader__mark::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg,
    transparent 35%,
    rgba(212,175,55,.45) 50%,
    transparent 65%);
  transform: translateX(-35%) rotate(10deg);
  animation: wbnSweep 1.25s ease-in-out infinite;
  opacity:.9;
}

@keyframes wbnSweep{
  0%{ transform: translateX(-45%) rotate(10deg); }
  50%{ transform: translateX(25%) rotate(10deg); }
  100%{ transform: translateX(55%) rotate(10deg); }
}

.wbn-loader__name{
  font-family: "Prata", serif;
  font-size: 22px;
  letter-spacing: .3px;
  color: #fff;
}

.wbn-loader__sub{
  display:block;
  margin-top: 4px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.wbn-loader__bar{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
}

.wbn-loader__barFill{
  display:block;
  height: 100%;
  width: 35%;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(212,175,55,.15),
    rgba(212,175,55,.85),
    rgba(212,175,55,.25));
  filter: saturate(1.05);
  animation: wbnBar 1.05s ease-in-out infinite;
}

@keyframes wbnBar{
  0%{ transform: translateX(-80%); }
  50%{ transform: translateX(40%); }
  100%{ transform: translateX(160%); }
}

.wbn-loader__hint{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-size: 12px;
  color: rgba(212,175,55,.85);
  letter-spacing: .3px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .wbn-loader__mark::after,
  .wbn-loader__barFill{
    animation: none !important;
  }
}


.wbn-loader__mark{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;

  background: radial-gradient(120% 120% at 30% 20%,
    rgba(199,156,72,.28), rgba(0,0,0,.55) 58%, rgba(0,0,0,.78));
  border: 1px solid rgba(199,156,72,.28);
  box-shadow: 0 18px 45px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
}

.wbn-loader__mark svg{
  width: 40px;   /* ajusta si lo quieres más grande */
  height: 40px;
  display: block;
  color: var(--gold);
  filter: drop-shadow(0 8px 14px rgba(199,156,72,.20));
}

.wbn-loader__mark svg *{
  fill: currentColor;
}
