/* ============================
   Base / Reset
============================ */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: #010101;
  color: rgba(0, 87, 250, 0.92);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ============================
   Page shell
============================ */
.page{
  min-height: 100%;
  display: grid;

  /* márgenes controlables del rectángulo (.shell) */
  padding-top: var(--shell-mt, 110px);
  padding-right: var(--shell-mr, 22px);
  padding-bottom: var(--shell-mb, 92px);
  padding-left: var(--shell-ml, 22px);

  /* ubicación dentro de la página */
  place-items: start center; /* arriba y centrado horizontal */
}


:root{
  --shell-max-w: 14000px;   /* <- ajustá esto */
  --shell-max-h: 760px;    /* <- y esto */
  --shell-radius: 26px;
}

.shell{
  position: relative;
  width: min(var(--shell-max-w), 100%);
  height: min(var(--shell-max-h), 92vh);
  border-radius: var(--shell-radius);
  overflow: hidden;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 24px 90px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ============================
   Background layers
============================ */
.hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 28%, rgba(14, 14, 104, 0.3), transparent 46%),
    radial-gradient(circle at 82% 45%, rgba(0, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 20% 70%, rgba(0, 255, 255, 0.12), transparent 46%),
    radial-gradient(circle at 12% 35%, rgba(0, 102, 255, 0.1), transparent 40%),
    radial-gradient(circle at 55% 92%, rgba(0, 128, 255, 0.1), transparent 45%),
    #000;
  background-size: 140% 140%;
  background-position: 50% 32%;
  animation: heroBgDrift 18s ease-in-out infinite;

}



/* vignette + subtle inner haze */
.hero-bg::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(circle at 50% 50%, transparent 38%, rgba(0,0,0,0.75) 75%),
    linear-gradient(to bottom, rgba(0,0,0,0.30), rgba(0,0,0,0.55));
  pointer-events:none;
}

/* film grain */
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  opacity: 0.10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events:none;
  background-size: 220px 220px;
  animation: grainShift 2.4s steps(6) infinite;

}

.hero-particles{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity: 0.55;
}

.hero-network{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity: 0.60;
  pointer-events:none;
  animation: networkDrift 22s ease-in-out infinite;
  will-change: transform
}

.net-line{
  fill:none;
  stroke: rgba(255,255,255,0.18);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-dasharray: 6 10;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.06));
  animation: dash 10s linear infinite;
}

.net-node{
  fill: rgba(255,255,255,0.40);
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.10));
  animation: pulse 3.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes dash{
  to { stroke-dashoffset: -140; }
}

@keyframes pulse{
  0%,100% { transform: scale(1); opacity: .45; }
  50% { transform: scale(1.35); opacity: .75; }
}

.brand{
  display:flex;
  align-items:center;
  padding-left: 6px;
}

/* Logo PNG en lugar de .brand-mark */
.brand-logo{
  width: 49px;          /* mismo tamaño que el brand-mark */
  height: 49px;
  display: block;
  object-fit: contain;
  
  /* look “glow” similar al anterior */
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.10));
  opacity: 0.95;
}


.brand-mark::before{
  content:"";
  position:absolute;
  inset: 6px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.65);
  border-right-color: transparent;
  transform: rotate(18deg);
  opacity: 0.9;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  padding: 0 6px;
  min-width: 0;
}

.nav-link{
  font-size: 16px;
  letter-spacing: 0.01em;
  color: rgb(255, 255, 255);
  padding: 4px 8px;
  line-height: 1;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
  white-space: nowrap;
}

.nav-link:hover{
  color: rgba(6, 155, 255, 0.92);
  background: rgba(255,255,255,0.06);
}

.nav-link.is-active{
  color: rgba(246, 246, 246, 0.92);
}

.nav-pill{
  padding: 6px 12px;
  gap: 6px;
}


.pill-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 0 14px rgba(255,255,255,0.12);
}

.pill-caret{
  opacity: 0.7;
  margin-left: 2px;
}

.account{
  display:flex;
  justify-content:flex-end;
  padding-right: 10px;
}

.account-link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.account-link:hover{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
}

.user-ico{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  position: relative;
}

.user-ico::before{
  content:"";
  position:absolute;
  width: 7px; height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  top: 3px; left: 50%;
  transform: translateX(-50%);
}

.user-ico::after{
  content:"";
  position:absolute;
  width: 12px; height: 7px;
  border-radius: 999px 999px 6px 6px;
  border: 1px solid rgba(255,255,255,0.30);
  border-top: 0;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  opacity: 0.75;
}

/* ============================
   Hero content
============================ */
.hero{
  position: relative;
  z-index: 5;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 110px 24px 90px;
}

/* ===== HERO TITLE (separar colores + controlar grueso) ===== */
:root{
  --hero-brand-color: rgba(255,255,255,0.96);   /* Innovaducate */
  --hero-labs-color:  rgb(0, 98, 255);  /* LABS (azul) */

  --hero-brand-weight: 650;  /* grosor Innovaducate */
  --hero-labs-weight:  800;  /* grosor LABS */
}

.hero-title{
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  text-shadow: 0 18px 60px rgba(0,0,0,0.55);

  /* para que quede prolijo el espacio entre palabras */
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
}

/* ============================
   HERO TITLE (Innovaducate / LABS)
   - Colores separados
   - Control de grosor por variable
   - Reveal letra por letra
============================ */
.hero-title{
  display: inline-flex;
  align-items: baseline;
  gap: .35ch;

  /* tocá esto */
  --brand-color: rgba(255,255,255,0.92);
  --labs-color: rgba(0, 87, 250, 0.95);

  /* grosor controlable */
  --title-weight: 620;

  /* timing */
  --reveal-duration: 900ms;
  --reveal-stagger-ms: 90; /* <- ahora es número, no tiempo */
}

.hero-title__brand{
  color: var(--brand-color);
  font-weight: var(--title-weight);
}

.hero-title__labs{
  color: var(--labs-color);
  font-weight: var(--title-weight);
}

/* Estado inicial (oculto) */
.hero-title .char{
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(10px);
  will-change: transform, opacity, filter;
}

/* Disparo del reveal */
.hero-title.is-reveal .char{
  animation: titleCharReveal var(--reveal-duration) cubic-bezier(.2,.9,.2,1) forwards;
  animation-delay: var(--d, 0ms); /* <- delay real viene del JS */
}

@keyframes titleCharReveal{
  0%{
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    filter: blur(10px);
  }
  60%{
    opacity: 1;
    transform: translateY(-2px) scale(1);
    filter: blur(0px);
  }
  100%{
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

/* Reduce motion: sin animación */
@media (prefers-reduced-motion: reduce){
  .hero-title .char{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}


.hero-title__brand{
  color: var(--hero-brand-color);
  font-weight: var(--hero-brand-weight);
}

.hero-title__labs{
  color: var(--hero-labs-color);
  font-weight: var(--hero-labs-weight);
}



.hero-subtitle{
  margin: 14px 0 0;
  max-width: 820px;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.60);
  padding: 0 10px;
}

.hero-actions{
  margin-top: 22px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  will-change: transform;
}

.btn:hover{ transform: translateY(-1px); }

.btn-dark{
  background: rgba(10,10,10,0.55);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-dark:hover{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.22);
}

.btn-light{
  background: rgb(0, 30, 255);
  color: rgba(255, 253, 253, 0.88);
  border-color: rgb(99, 99, 99);
  box-shadow: 0 18px 50px rgba(0,0,0,0.40);
}

.btn-light:hover{
  background: rgba(8, 0, 255, 0.98);
}

.btn-arrow{
  opacity: 0.75;
}

.hero-lines{
  position:absolute;
  left: 50%;
  top: calc(50% + 140px);
  transform: translateX(-50%);
  display:flex;
  gap: 18px;
  opacity: 0.65;
}

.hero-lines span{
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.40), rgba(255,255,255,0.02));
  border-radius: 999px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.06));
}

.hero-lines span:nth-child(2){ height: 100px; opacity: .75; }
.hero-lines span:nth-child(3){ height: 88px; opacity: .55; }

/* ============================
   Floating labels
============================ */
.float-label{
  position:absolute;
  z-index: 6;
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,0.70);
  font-size: 12px;
  letter-spacing: 0.01em;
  opacity: 0.85;
  transform: translateZ(0);
  animation: drift 8s ease-in-out infinite;
}

.fl-text{
  display:flex;
  flex-direction: column;
  gap: 2px;
}

.fl-title{
  font-weight: 520;
  color: rgba(255,255,255,0.72);
}

.fl-sub{
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

.align-right{ text-align:right; }

.fl-dot{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(10,10,10,0.35);
  box-shadow: 0 0 18px rgba(255,255,255,0.08);
  position: relative;
}

.fl-dot::after{
  content:"";
  position:absolute;
  inset: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  opacity: 0.75;
}

.fl-left{ left: 26px; }
.fl-right{ right: 26px; }
.fl-top{ top: 190px; }
.fl-bottom{ bottom: 200px; }
.fl-mid{ top: 240px; }
.fl-low{ bottom: 220px; }

.fl-top    { animation-duration: 10s; }
.fl-bottom { animation-duration: 12s; }
.fl-mid    { animation-duration: 11s; }
.fl-low    { animation-duration: 13s; }


.float-label:nth-of-type(1){ animation-delay: -1s; }
.float-label:nth-of-type(2){ animation-delay: -3s; }
.float-label:nth-of-type(3){ animation-delay: -2s; }
.float-label:nth-of-type(4){ animation-delay: -4s; }

/* ===== Floating labels: tamaño (texto + número + puntito) ===== */
:root{
  --fl-font: 18px;        /* tamaño base del texto */
  --fl-sub-font: 14px;    /* tamaño del número */
  --fl-gap: 12px;         /* separación punto ↔ texto */

  --fl-dot: 24px;         /* tamaño del círculo exterior */
  --fl-dot-inner: 9px;    /* tamaño del círculo interior */
}

/* contenedor */
.float-label{
  font-size: var(--fl-font);
  gap: var(--fl-gap);
}

/* título */
.fl-title{
  font-size: 1em; /* hereda de .float-label */
}

/* número */
.fl-sub{
  font-size: var(--fl-sub-font);
}

/* puntito */
.fl-dot{
  width: var(--fl-dot);
  height: var(--fl-dot);
}

.fl-dot::after{
  inset: calc((var(--fl-dot) - var(--fl-dot-inner)) / 2);
}


.fl-dot::after{
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse{
  0%,100% { transform: scale(1); opacity: .70; }
  50%     { transform: scale(1.5); opacity: 1; }
}


@keyframes drift{
  0%   { transform: translate3d(0,0,0); }
  25%  { transform: translate3d(10px,-10px,0); }
  50%  { transform: translate3d(-8px,-4px,0); }
  75%  { transform: translate3d(6px,8px,0); }
  100% { transform: translate3d(0,0,0); }
}


/* ============================
   Corner UI bits
============================ */
.scroll-chip{
  position:absolute;
  left: 18px;
  bottom: 18px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0.80;
}

.chip-icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
}

.chip-time{
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.1;
}

.chip-label{
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.1;
  margin-top: 2px;
}

.corner-caption{
  position:absolute;
  right: 22px;
  bottom: 22px;
  display:flex;
  align-items:center;
  gap: 10px;
  opacity: 0.70;
}

.cc-line{
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
}

.cc-text{
  font-size: 12px;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.55);
}

/* ============================
   Responsive adjustments
============================ */
@media (max-width: 980px){

  .nav{ gap: 10px; }
  .nav-link{ padding: 10px 6px; }
}

@media (max-width: 760px){
  .shell{
    height: min(760px, 92vh);
    border-radius: 22px;
  }
  
  .brand{ justify-content: center; padding-left: 0; }
  .nav{
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 12px;
  }
  .account{ justify-content: center; padding-right: 0; }

  .float-label{ display:none; } /* en mobile, menos ruido visual */
  .hero{
    padding: 150px 18px 100px;
  }
  .hero-lines{ top: calc(50% + 160px); }
}


@media (prefers-reduced-motion: reduce){
  .net-line, .net-node, 
  .btn, .play{ transition: none !important; }
  .hero-bg{ animation: none !important; }
  .hero-bg::after{ animation: none !important; }
  .hero-network,
  .hero-particles{
  animation: none !important;
  }


}

/* ============================
   Header row (icon + navbar)
============================ */
.header-row{
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
}


/* Icono fuera de la navbar */
.brand-outside{
  position: absolute;
  left: 32px;        /* distancia desde el borde */
  top: 30px;
  transform: translateY(-50%);

  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;

  pointer-events: auto;
}



/* Navbar ahora solo ocupa su contenido */
.topbar{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: content-box;

  display: inline-flex;          /* clave */
  align-items: center;
  justify-content: center;       /* centra los botones */
  gap: 14px;                     /* separación entre botones */

  height: 44px;
  padding: 4px 50px;             /* margen interno chico */

  background: rgba(10,10,10,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 14px 40px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);

  white-space: nowrap;           /* evita cortes */
  pointer-events: auto;
}

/* ============================
   Hamburger (mobile)
============================ */

/* Botón hamburguesa (oculto en desktop) */
.nav-toggle{
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Icono hamburguesa */
.burger{
  position: relative;
  width: 16px;
  height: 2px;
  background: rgba(255,255,255,0.78);
  border-radius: 999px;
}
.burger::before,
.burger::after{
  content:"";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: rgba(255,255,255,0.78);
  border-radius: 999px;
}
.burger::before{ top: -6px; }
.burger::after{ top: 6px; }

/* Overlay del menú (oculto por defecto) */
/* Overlay del menú (siempre existe, pero oculto) */
.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 5000;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .45s ease, visibility 0s linear .45s;
}

/* Backdrop */
.mobile-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  transition: opacity .45s ease;
}

/* Panel */
.mobile-panel{
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(12,12,12,0.78);
  box-shadow: 0 30px 120px rgba(0,0,0,0.80), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;

  transform: translateY(-40px) scale(0.90);
  opacity: 0;
  transition: transform .55s cubic-bezier(.2,.9,.2,1), opacity .55s ease;

  will-change: transform, opacity;
}

/* Estado abierto */
.mobile-menu.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .45s ease, visibility 0s linear 0s;
}

.mobile-menu.is-open .mobile-backdrop{
  opacity: 1;
}

.mobile-menu.is-open .mobile-panel{
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Estado cerrándose (para animar salida) */
.mobile-menu.is-closing{
  opacity: 0;
  visibility: visible;     /* se mantiene visible mientras anima */
  pointer-events: none;
  transition: opacity .48s ease, visibility 0s linear .48s;
}

.mobile-menu.is-closing .mobile-backdrop{
  opacity: 0;
}

.mobile-menu.is-closing .mobile-panel{
  transform: translateY(-40px) scale(0.98);
  opacity: 0;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .mobile-menu,
  .mobile-backdrop,
  .mobile-panel{
    transition: none !important;
  }
}


.mobile-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-title{
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  letter-spacing: .01em;
}
.mobile-close{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255, 0, 0, 0.9);
  cursor: pointer;
    display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
  font-size: 15px;
}

.mobile-nav{
  display:flex;
  flex-direction: column;
  padding: 10px;
  gap: 8px;
}
.mobile-link{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}
.mobile-link:hover{
  background: rgba(255,255,255,0.06);
}
.mobile-link.is-pill{
  gap: 10px;
}

/* mobile logo del lateral*/

@media (max-width: 760px){

  /* en mobile: mostramos hamburguesa y ocultamos nav desktop */
  .topbar .nav{
    display: none;
  }
  .nav-toggle{
    display: inline-flex;
  }

  /* topbar: bien compacta en mobile */
  .topbar{
    height: 44px;
    padding: 6px 10px;
  }

  @media (prefers-reduced-motion: reduce){
  .brand-outside{ transition: none !important; }
}


  /* Logo fuera de la navbar: se oculta al scrollear hacia abajo (controlado por JS) */
  .brand-outside{
    transition: opacity .18s ease, transform .18s ease;
    will-change: opacity, transform;
  }
  .header-row.is-logo-hidden .brand-outside{
    opacity: 0;
    transform: translateY(-50%) scale(0.86);
    pointer-events: none;
  }
}


.nav-toggle.is-open .burger{
  background: transparent;
}
.nav-toggle.is-open .burger::before{
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle.is-open .burger::after{
  top: 0;
  transform: rotate(-45deg);
}
.burger::before,
.burger::after{
  transition: transform .2s ease, top .2s ease;
}
.burger{
  transition: background .2s ease;
}

.brand-slider--w-700{ --slider-width: 700px; }
.brand-slider--w-900{ --slider-width: 900px; }
.brand-slider--w-1200{ --slider-width: 1200px; }

@keyframes heroBgDrift{
  0%   { background-position: 50% 32%; }
  25%  { background-position: 58% 28%; }
  50%  { background-position: 54% 42%; }
  75%  { background-position: 44% 38%; }
  100% { background-position: 50% 32%; }
}
@keyframes grainShift{
  0%   { background-position: 0 0; }
  20%  { background-position: 30px -20px; }
  40%  { background-position: -20px 25px; }
  60%  { background-position: 25px 35px; }
  80%  { background-position: -35px -25px; }
  100% { background-position: 0 0; }
}

@keyframes networkDrift{
  0%   { transform: translate3d(0,0,0); }
  25%  { transform: translate3d(-10px, 6px, 0); }
  50%  { transform: translate3d(-6px, -8px, 0); }
  75%  { transform: translate3d(8px, 4px, 0); }
  100% { transform: translate3d(0,0,0); }
}

.hero-particles{
  animation: particlesDrift 26s ease-in-out infinite;
  will-change: transform;
}

@keyframes particlesDrift{
  0%   { transform: translate3d(0,0,0); }
  50%  { transform: translate3d(12px, -10px, 0); }
  100% { transform: translate3d(0,0,0); }
}

/* =========================================================
   BRAND SLIDER — debajo del rectángulo (sin tocar el HTML)
   Pegá este bloque AL FINAL del archivo.
========================================================= */

/* Variables de control (tamaños/velocidad) */
:root{
  --brand-slider-outside-gap: 0px;                 /* distancia desde el borde inferior del rectángulo */
  --brand-slider-max-w: 980px;                      /* ancho máximo del slider */
  --brand-logo-height: clamp(20px, 2.1vw, 340px);    /* alto de logos */
  --brand-logo-max-w: 150px;                        /* ancho máx de logo */
  --brand-gap: clamp(18px, 3vw, 44px);              /* separación entre logos */
  --brand-marquee-duration: 28s;                    /* velocidad (más alto = más lento) */
  --brand-fade-size: clamp(36px, 7vw, 90px);        /* fade lateral */
  --brand-gray-opacity: 0.72;                       /* opacidad en gris */
  --brand-hover-scale: 1.08;                        /* zoom al hover/focus */
}

/* 1) Permitimos que SOLO el slider “escape” del rectángulo,
      pero mantenemos el look original clipeando hero/bg */
@supports (clip-path: inset(0 round 10px)){
  .shell{
    overflow: visible; /* habilita que el slider se vea fuera */
  }

  /* Clipa todo el hero para que el rectángulo siga viéndose igual */
  .shell > .hero-bg,
  .shell > .hero{
    clip-path: inset(0 round var(--shell-radius));
  }
}

/* 2) Posiciona el slider debajo del rectángulo */
.brand-slider{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + var(--brand-slider-outside-gap));
  z-index: 10;
  pointer-events: auto;
}

/* 3) Estructura del “marquee” */
.brand-slider__viewport{
  width: min(var(--slider-width, var(--brand-slider-max-w)), calc(100% - 44px));
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

/* Fade laterales (queda natural sobre fondo negro) */
.brand-slider__viewport::before,
.brand-slider__viewport::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--brand-fade-size);
  pointer-events: none;
  z-index: 2;
}
.brand-slider__viewport::before{
  left: 0;
  background: linear-gradient(to right, #101010, rgba(0,0,0,0));
}
.brand-slider__viewport::after{
  right: 0;
  background: linear-gradient(to left, #101010c8, rgba(0,0,0,0));
}

.brand-slider__track{
  display: flex;
  width: max-content;
  align-items: center;
  animation: labsBrandMarquee var(--brand-marquee-duration) linear infinite;
  will-change: transform;
}

/* Pausa cuando el usuario interactúa (hover o teclado) */
.brand-slider__viewport:hover .brand-slider__track,
.brand-slider__viewport:focus-within .brand-slider__track{
  animation-play-state: paused;
}

.brand-slider__list{
  display: flex;
  align-items: center;
  gap: var(--brand-gap);
  list-style: none;
  padding: 0;
  margin: 0;
  padding-right: var(--brand-gap); /* asegura loop suave con -50% */
}

.brand-slider__item{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.brand-slider__logo{
  height: var(--brand-logo-height);
  width: auto;
  max-width: var(--brand-logo-max-w);

  opacity: var(--brand-gray-opacity);
  filter: grayscale(1) saturate(0);
  transform: translateZ(0);
  transition: transform 220ms ease, filter 220ms ease, opacity 220ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

/* Gris -> color + zoom */
.brand-slider__item:hover .brand-slider__logo,
.brand-slider__item:focus-visible .brand-slider__logo{
  opacity: 1;
  filter: grayscale(0) saturate(1);
  transform: scale(var(--brand-hover-scale));
}

/* Foco accesible */
.brand-slider__item:focus-visible{
  box-shadow: 0 0 0 2px rgba(0, 98, 255, 0.45);
  border-radius: 12px;
}

/* Animación loop */
@keyframes labsBrandMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 520px){
  .brand-slider__viewport{
    width: calc(100% - 28px);
  }
}

/* Reduced motion: sin auto-scroll, queda scrolleable */
@media (prefers-reduced-motion: reduce){
  .brand-slider__track{ animation: none; }

  .brand-slider__viewport{
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .brand-slider__viewport::before,
  .brand-slider__viewport::after{
    display: none;
  }

  .brand-slider__item{ scroll-snap-align: center; }
}
/* =========================================================
   FIX (desktop OK + mobile OK):
   - Ancla el slider a .page (no al viewport)
   - Lo ubica debajo del .shell con top calculado
   - En mobile limita el "nudge" para que no se suba arriba
========================================================= */

:root{
  /* Ajuste fino (desktop) */
  --brand-slider-gap: 140px;     /* distancia debajo del rectángulo */
  --brand-slider-nudge: -8px;   /* negativo = más pegado al borde */
  --brand-slider-viewport-pad-y: 6px;
}

/* .page pasa a ser el contenedor de referencia del absolute */
.page{
  position: relative;
}

/* Slider: hijo directo de .page en tu HTML */
.page > .brand-slider{
  position: absolute;
  left: 0;
  right: 0;

  /* Misma lógica que el alto del shell: height: min(var(--shell-max-h), 92vh) */
  top: calc(min(var(--shell-max-h), 92vh) + var(--brand-slider-gap));

  transform: translateY(var(--brand-slider-nudge));
  z-index: 20;
}

/* Ajuste visual: menos aire vertical */
.page > .brand-slider .brand-slider__viewport{
  padding: var(--brand-slider-viewport-pad-y) 0;
}

/* MOBILE: evita que un nudge muy negativo lo meta arriba del shell */
@media (max-width: 760px){
  :root{
    --brand-slider-gap: 130px;   /* un toque más pegado */
    --brand-slider-nudge: -6px; /* seguro en mobile */
  }

  .page > .brand-slider{
    /* limita el empuje hacia arriba en mobile aunque alguien lo cambie */
    transform: translateY(clamp(-14px, var(--brand-slider-nudge), 40px));
  }
}

/*SECCION 2*/
/* =========================================================
   Scroll “auto-salto” a la siguiente sección
   (CSS scroll-snap + estilos mínimos de sección)
   Pegá este bloque AL FINAL.
========================================================= */

:root{
  --snap-header-offset: 26px;     /* compensación para header fijo */
  --section-max-w: 1100px;
  --section-pad-y: 90px;
  --section-pad-x: 22px;
}

/* Scroll snap con fallback natural */
html{
  scroll-behavior: smooth;
  scroll-padding-top: var(--snap-header-offset);
  scroll-snap-type: y proximity; /* suave: “engancha” al soltar */
}

/* Puntos de snap */
.shell,
.section-next,
.section-s3{
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Nueva sección */
.section-next{
  width: min(var(--shell-max-w), 100%);
  margin-top: 90px; /* asegura aire vs slider (por si el slider es absoluto) */
  padding: var(--section-pad-y) var(--section-pad-x);
  scroll-margin-top: var(--snap-header-offset);
}

.section-next__inner{
  width: min(var(--section-max-w), 100%);
  margin: 0 auto;
}

.section-next__title{
  margin: 0 0 14px;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.1;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.02em;
}

.section-next__lead{
  margin: 0 0 28px;
  max-width: 62ch;
  color: rgba(255,255,255,0.70);
  line-height: 1.55;
}


/* =========================================================
   FULLSCREEN: segunda sección del tamaño de la pantalla
   Pegá este bloque AL FINAL.
========================================================= */

.section-next{
  /* pantalla completa */
  min-height: 100vh;

  /* sin “separación” que achique visualmente */
  margin-top: 0;

  /* layout similar a una sección “pantalla” */
  display: grid;
  align-items: center;

  /* padding consistente + compensación header fijo */
  padding-top: calc(var(--snap-header-offset, 96px) + 28px);
  padding-bottom: clamp(56px, 8vh, 110px);
  padding-left: var(--section-pad-x, 22px);
  padding-right: var(--section-pad-x, 22px);

  /* por si tuvieras background distintos por sección */
  background: transparent;
}

/* =========================================================
   SECTION NEXT + CARDS — “mini shell” estético + icono/logo
   Pegá este bloque AL FINAL.
========================================================= */

:root{
  --section-max-w: 1100px;

  /* cards */
  --sx-card-radius: 22px;
  --sx-card-pad: 22px;
  --sx-card-gap: 16px;
  --sx-icon-size: 44px;

  --sx-title-size: 18px;
  --sx-text-size: 14px;
  --sx-meta-size: 12px;

  --sx-border: rgba(255, 255, 255, 0.1);
  --sx-bg: rgb(0, 0, 0);
  --sx-shadow: 0 22px 70px rgba(0,0,0,0.70);
  --sx-accent: rgba(0, 98, 255, 0.70);
}

/* Sección fullscreen (si ya la tenías, esto solo la ordena) */
.section-next{
  min-height: 100vh;
  padding-left: 22px;
  padding-right: 22px;
  padding-top: calc(var(--shell-mt, 110px) * 0.65);
  padding-bottom: 96px;
}

.section-next__inner{
  width: min(var(--section-max-w), 100%);
  margin: 0 auto;
}

.section-next__title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
}

.section-next__lead{
  margin: 0 0 22px;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  max-width: 68ch;
}

/* Grid */
.section-next__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sx-card-gap);
}

/* Card = mini shell */
.sx-card{
  position: relative;
  overflow: hidden;
  border-radius: var(--sx-card-radius);
  padding: var(--sx-card-pad);

  background: var(--sx-bg);
  border: 1px solid var(--sx-border);
  box-shadow: var(--sx-shadow), inset 0 1px 0 rgba(0, 0, 0, 0.08);

  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}


/* Contenido arriba de capas */
.sx-card > *{ position: relative; z-index: 1; }

/* Header: icono + títulos */
.sx-card__head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.sx-card__icon{
  width: var(--sx-icon-size);
  height: var(--sx-icon-size);
  border-radius: 14px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.10);

  color: rgba(255,255,255,0.86);
}

.sx-card__titles{
  min-width: 0;
}

.sx-card__title{
  margin: 0;
  font-size: var(--sx-title-size);
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
  line-height: 1.15;
}

.sx-card__meta{
  margin: 6px 0 0;
  font-size: var(--sx-meta-size);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sx-card__text{
  margin: 0;
  font-size: var(--sx-text-size);
  line-height: 1.6;
  color: rgb(255, 255, 255);
  max-width: 62ch;
}

/* Hover */
.sx-card:hover{
  transform: translateY(-4px);
  border-color: rgba(0, 98, 255, 0.30);
  box-shadow: 0 30px 95px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.10);
}

.sx-card:hover .sx-card__icon{
  border-color: rgba(0, 98, 255, 0.45);
  box-shadow: 0 16px 42px rgba(0,0,0,0.52), 0 0 0 2px rgba(0, 98, 255, 0.12), inset 0 1px 0 rgba(255,255,255,0.10);
  color: rgba(0, 153, 255, 0.92);
}

/* Responsive */
@media (max-width: 760px){
  .section-next{
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 78px;
  }

  .section-next__grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sx-card{
    padding: 20px 18px;
  }

  .sx-card__meta{
    white-space: normal;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .sx-card,
  .sx-card::before{
    animation: none !important;
    transition: none !important;
  }
  .sx-card:hover{ transform: none; }
}

/* =========================================================
   LIQUID GLASS — Fondo animado detrás del cristal + hover/selección
   Pegá AL FINAL (debajo de los overrides anteriores).
========================================================= */

/* Rehabilitamos transiciones SOLO para escala/sombra */
.sx-card{
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease !important;
  transform: translateZ(0); /* suaviza en GPU */
  will-change: transform;
}

/* Fondo animado detrás del cristal (capa 1) */
.sx-card::before{
  content: "" !important;
  position: absolute;
  inset: -24px; /* se sale un poquito para que el blur no corte */
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;

  opacity: 0.55;
  filter: blur(22px);
  transform: translate3d(-4%, -3%, 0) scale(1.05);

  background:
    radial-gradient(40% 35% at 20% 25%, rgba(0, 210, 255, 0.35) 0%, rgba(0, 210, 255, 0) 60%),
    radial-gradient(45% 40% at 78% 30%, rgba(10, 150, 255, 0.28) 0%, rgba(10, 150, 255, 0) 62%),
    radial-gradient(42% 45% at 60% 78%, rgba(0, 90, 255, 0.22) 0%, rgba(0, 90, 255, 0) 60%),
    radial-gradient(38% 40% at 22% 78%, rgba(0, 140, 255, 0.18) 0%, rgba(0, 140, 255, 0) 62%);
}

/* Capa 2 (más sutil, añade “corriente” fría) */
.sx-card::after{
  content: "" !important;
  position: absolute;
  inset: -18px;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;

  opacity: 0.20;
  filter: blur(14px);
  transform: translate3d(3%, 2%, 0) scale(1.02);

  background:
    linear-gradient(110deg,
      rgba(0, 220, 255, 0.00) 0%,
      rgba(0, 220, 255, 0.18) 35%,
      rgba(0, 120, 255, 0.12) 55%,
      rgba(0, 220, 255, 0.00) 100%),
    radial-gradient(55% 55% at 65% 35%, rgba(140, 240, 255, 0.10) 0%, rgba(140, 240, 255, 0) 70%);
  mix-blend-mode: screen;
}

/* Asegura que el contenido quede arriba del “fondo” */
.sx-card > *{
  position: relative;
  z-index: 2;
}

/* Animación suave y eficiente (transform) */
@keyframes lg-drift-1{
  0%   { transform: translate3d(-10%, -7%, 0) scale(1.10) rotate(-3deg); }
  50%  { transform: translate3d(10%, 7%, 0)  scale(1.14) rotate(3deg); }
  100% { transform: translate3d(-10%, -7%, 0) scale(1.10) rotate(-3deg); }
}

@keyframes lg-drift-2{
  0%   { transform: translate3d(8%, 5%, 0)   scale(1.06) rotate(2deg); }
  50%  { transform: translate3d(-8%, -6%, 0) scale(1.09) rotate(-2deg); }
  100% { transform: translate3d(8%, 5%, 0)   scale(1.06) rotate(2deg); }
}


.sx-card::before{ animation: lg-drift-1 6.2s ease-in-out infinite; opacity: 0.82;
filter: blur(16px);}
.sx-card::after{  animation: lg-drift-2 7.6s ease-in-out infinite; opacity: 0.50;
filter: blur(10px);
}


/* Hover / Focus / Selección: agranda la card */
.sx-card:hover,
.sx-card:focus-within,
.sx-card.is-active{
  transform: scale(1.035) translateZ(0);
  box-shadow:
    0 22px 80px rgba(0,0,0,0.78),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(0, 180, 255, 0.10) !important;
  border-color: rgba(160, 240, 255, 0.28) !important;
}

/* “Más vida” al hover en el fondo (solo un poquito) */
.sx-card:hover::before,
.sx-card.is-active::before{
  opacity: 0.68;
}
.sx-card:hover::after,
.sx-card.is-active::after{
  opacity: 0.26;
}

/* Respeta Reduce Motion */
@media (prefers-reduced-motion: reduce){
  .sx-card{ transition: none !important; }
  .sx-card::before,
  .sx-card::after{
    animation: none !important;
  }
  .sx-card:hover,
  .sx-card:focus-within,
  .sx-card.is-active{
    transform: none !important;
  }
}

/* =========================================================
   AJUSTE: Cards más chicas y menos anchas (Section 2)
   Pegá AL FINAL (debajo del override global).
========================================================= */

:root{
  /* Ajustes rápidos */
  --sx2-inner-max: 1000px;   /* ancho del bloque de la sección */
  --sx2-card-max: 500px;    /* ancho máximo de cada card */
  --sx2-gap: 16px;
}

/* (Opcional) achica un poco el contenedor total de la sección */
.section-next .section-next__inner{
  width: min(var(--sx2-inner-max), 100%) !important;
  margin-inline: auto !important;
}

/* Grid: no estira cards a lo ancho, las centra */
.section-next .section-next__grid{
  display: grid !important;
  gap: var(--sx2-gap) !important;

  /* 2 columnas con ancho “real” (no full width) */
  grid-template-columns: repeat(2, minmax(0, var(--sx2-card-max))) !important;
  justify-content: center !important;  /* centra el bloque de columnas */
}

/* Card: limita ancho y evita stretch raro */
.section-next .sx-card{
  width: 100% !important;
  max-width: var(--sx2-card-max) !important;
}

/* Tablet / mobile: 1 columna y ancho cómodo */
@media (max-width: 860px){
  .section-next .section-next__grid{
    grid-template-columns: minmax(0, 520px) !important;
  }
  .section-next .sx-card{
    max-width: 520px !important;
  }
}

@media (max-width: 520px){
  .section-next .section-next__grid{
    grid-template-columns: 1fr !important;
    justify-content: stretch !important;
  }
  .section-next .sx-card{
    max-width: none !important;
  }
}


/* =========================================================
   FIX: Eliminar espacio vacío gigante en Sección 2
   - Deja que la sección mida el contenido (auto)
   - Controla padding real
   Pegá AL FINAL.
========================================================= */

.section-next{
  /* si tenías height/min-height 100vh, esto lo pisa */
  height: auto !important;
  min-height: 0 !important;

  /* bajá esto si querés aún menos aire */
  padding-bottom: clamp(2px, 1vh, 4px) !important;
}

/* por si el “inner” tenía min-height clavado */
.section-next__inner{
  height: auto !important;
  min-height: 0 !important;
}

/* por si el grid tenía un min-height raro */
.section-next__grid{
  min-height: 0 !important;
}

/* =========================================================
   SECTION 3 — Ultra minimal / centered tiles (sin bordes)
========================================================= */

:root{
  --s3-max-w: 1100px;
  --s3-pad-x: 22px;
  --s3-pad-y: clamp(76px, 8.5vh, 120px);

  --s3-text: rgba(255,255,255,0.92);
  --s3-muted: rgba(255,255,255,0.66);
  --s3-soft: rgba(255,255,255,0.10);

  --s3-logo-size: 84px;
  --s3-gap: clamp(18px, 2.2vw, 28px);
}

/* contenedor sección */
.section-s3{
  width: min(var(--shell-max-w), 100%);
  padding: var(--s3-pad-y) var(--s3-pad-x);
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.section-s3__inner{
  width: min(var(--s3-max-w), 100%);
  margin: 0 auto;
}

.section-s3__head{
  margin: 0 0 24px;
  text-align: center;
}

.section-s3__head--spaced{
  margin-top: clamp(36px, 4.4vw, 62px);
}

.section-s3__title{
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--s3-text);
}

.section-s3__lead{
  margin: 0 auto;
  max-width: 74ch;
  color: var(--s3-muted);
  line-height: 1.6;
}

/* grids */
.section-s3__grid{
  display: grid;
  gap: var(--s3-gap);
  justify-items: center; /* tiles centrados */
}

.section-s3__grid--two{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.section-s3__grid--four{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* tile minimal (no borders, no card look) */
.s3-tile{
  --s3-title-grad: linear-gradient(90deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72));

  width: 100%;
  max-width: 520px;
  text-align: center;
  padding: clamp(18px, 2.1vw, 26px) clamp(14px, 1.8vw, 22px);
  position: relative;
}

.s3-tile--compact{
  max-width: 460px;
  padding-top: 18px;
  padding-bottom: 18px;
}

/* “glow” muy sutil para separar sin bordes */
.s3-tile::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 10px;
  width: min(420px, 92%);
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.08), rgba(255,255,255,0) 60%);
  opacity: 0.55;
  pointer-events: none;
  filter: blur(12px);
}

.s3-tile > *{
  position: relative;
  z-index: 1;
}

/* logo/ícono (lo cargás vos) */
.s3-tile__logo{
  width: var(--s3-logo-size);
  height: var(--s3-logo-size);
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
  opacity: 0.95;

  /* Animaciones (suaves y baratas) */
  transform: translateZ(0);
  transform-origin: 50% 50%;
  will-change: transform, filter;

  animation-name: s3-logo-in, s3-logo-float;
  animation-duration: 520ms, 5.4s;
  animation-timing-function: cubic-bezier(.2,.9,.2,1), ease-in-out;
  animation-delay: var(--s3-stagger, 0ms), calc(var(--s3-stagger, 0ms) + 520ms);
  animation-fill-mode: both, both;
  animation-iteration-count: 1, infinite;
}


/* título con color/gradiente (moderno) */
.s3-tile__title{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;

  background-image: var(--s3-title-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.s3-tile__meta{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.52);
}

.s3-tile__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.70);
}

.s3-tile__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;

  font-size: 13px;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  opacity: 0.95;
}

.s3-tile__link-arrow{
  transform: translateY(-1px);
  opacity: 0.85;
}

/* Gradientes distintos por tile (títulos con color) */
.s3-tile--a{ --s3-title-grad: linear-gradient(90deg, rgb(255, 255, 255), rgb(0, 179, 255)); }
.s3-tile--b{ --s3-title-grad: linear-gradient(90deg, rgb(0, 179, 255), rgb(252, 252, 252)); }
.s3-tile--c{ --s3-title-grad: linear-gradient(90deg, rgb(43, 0, 255), rgb(134, 199, 255)); }
.s3-tile--d{ --s3-title-grad: linear-gradient(90deg, rgb(134, 199, 255), rgb(43, 0, 255)); }
.s3-tile--e{ --s3-title-grad: linear-gradient(90deg, rgb(43, 0, 255), rgb(134, 199, 255)); }
.s3-tile--f{ --s3-title-grad: linear-gradient(90deg, rgb(134, 199, 255), rgb(43, 0, 255)); }

/* hover ultra suave (no “card”) */
.s3-tile:hover .s3-tile__link{
  color: rgba(255,255,255,0.92);
}

@media (max-width: 860px){
  .section-s3__grid--two,
  .section-s3__grid--four{
    grid-template-columns: 1fr;
  }

  .s3-tile{
    max-width: 520px;
  }
}

@media (prefers-reduced-motion: reduce){
  .s3-tile::before{
    filter: none;
  }
}

/* Stagger por tile (entrada escalonada) */
.s3-tile{ --s3-stagger: 0ms; }
.s3-tile--a{ --s3-stagger: 0ms; }
.s3-tile--b{ --s3-stagger: 90ms; }
.s3-tile--c{ --s3-stagger: 140ms; }
.s3-tile--d{ --s3-stagger: 190ms; }
.s3-tile--e{ --s3-stagger: 240ms; }
.s3-tile--f{ --s3-stagger: 290ms; }

/* Hover: micro “pop” + glow leve (sin look card) */
.s3-tile:hover .s3-tile__logo{
  transform: translateY(-4px) scale(1.07);
  filter: drop-shadow(0 16px 34px rgba(0,0,0,0.55));
}


/* Keyframes: entrada + flotación */
@keyframes s3-logo-in{
  from{ transform: translateY(14px) scale(0.94) rotate(-1.2deg); }
  to{ transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes s3-logo-float{
  0%{ transform: translateY(0) scale(1) rotate(0deg); }
  25%{ transform: translateY(-6px) scale(1.02) rotate(0.8deg); }
  50%{ transform: translateY(-11px) scale(1.035) rotate(-0.9deg); }
  75%{ transform: translateY(-6px) scale(1.02) rotate(0.6deg); }
  100%{ transform: translateY(0) scale(1) rotate(0deg); }
}


/* Respeta reduce motion */
@media (prefers-reduced-motion: reduce){
  .s3-tile__logo{
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }
  .s3-tile:hover .s3-tile__logo{
    filter: none;
  }
}

/*seccion 4*/
/* =========================================================
   SECTION S4 — Carrusel glass/minimal (texto izq + imagen der)
   Pegá este bloque AL FINAL.
========================================================= */

:root{
  --s4-max-w: var(--section-max-w, 1100px);
  --s4-radius: 26px;
  --s4-gap: clamp(16px, 3vw, 28px);

  /* Crystal Glass Azul */
  --s4-blue-1: rgba(14, 114, 228, 0.30);  /* azul principal */
  --s4-blue-2: rgba(0, 40, 120, 0.22);    /* azul profundo */
  --s4-blue-3: rgba(120, 210, 255, 0.14); /* brillo frío */

  --s4-glass-bg: rgba(8, 18, 40, 0.42);
  --s4-glass-bg-2: rgba(6, 10, 24, 0.30);
  --s4-border: rgba(120, 210, 255, 0.16);
  --s4-border-2: rgba(14, 114, 228, 0.22);

  --s4-title: rgba(255,255,255,0.94);
  --s4-muted: rgba(255,255,255,0.72);

  --s4-glow: 0 0 0 1px rgba(120,210,255,0.08), 0 20px 70px rgba(14,114,228,0.12);
  --s4-shadow: 0 34px 90px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.05);

  --s4-trans: 520ms;
  --s4-ease: cubic-bezier(.2,.8,.2,1);
}


.section-s4{
  width: min(var(--shell-max-w), 100%);
  /* antes estaba: clamp(56px, 8vh, 110px) */
  padding: clamp(34px, 5.2vh, 72px) var(--section-pad-x, 22px);
  scroll-margin-top: var(--snap-header-offset, 96px);
  background: transparent;
}


.section-s4__inner{
  width: min(var(--s4-max-w), 100%);
  margin: 0 auto;
}

.section-s4__head{
  /* antes: margin-bottom clamp(18px, 2.4vw, 26px) */
  margin: 0 0 clamp(10px, 1.8vw, 16px);
}


.section-s4__title{
  margin: 0 0 10px;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.1;
  color: var(--s4-title);
  letter-spacing: -0.02em;
}

.section-s4__lead{
  margin: 0;
  max-width: 62ch;
  color: var(--s4-muted);
  line-height: 1.55;
}

/* Panel glass (rectángulo) */
.s4-panel{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: var(--s4-gap);
  align-items: stretch;

  border-radius: var(--s4-radius);

  /* Crystal: capas + highlight */
  background:
    radial-gradient(120% 140% at 18% 22%, rgba(120,210,255,0.18), rgba(0,0,0,0) 55%),
    radial-gradient(140% 160% at 78% 28%, rgba(14,114,228,0.18), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, var(--s4-glass-bg), var(--s4-glass-bg-2));

  border: 1px solid var(--s4-border);
  box-shadow: var(--s4-shadow), var(--s4-glow);

  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);

  overflow: hidden;
}


/* Izquierda (texto) */
.s4-info{
  padding: clamp(18px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(240px, 34vw, 360px);
}

.s4-info__title{
  margin: 0 0 10px;
  font-size: clamp(18px, 2.1vw, 24px);
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.94);
}

.s4-info__text{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 56ch;
}

.s4-info__btn{
  align-self: flex-start;
}

.s4-info__btn-arrow{
  display: inline-block;
  transform: translateY(1px);
  opacity: 0.9;
}

/* Animación texto al cambiar */
.s4-info.is-anim{
  animation: s4InfoIn var(--s4-trans) var(--s4-ease) both;
}

@keyframes s4InfoIn{
  from{
    opacity: 0;
    transform: translateY(10px);
    filter: blur(6px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Derecha (carrusel imagen) */
.s4-fan{
  padding: clamp(14px, 2.6vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* El “rectángulo” que contiene el slide */
.s4-fan__stack{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--s4-radius) - 10px);
  overflow: hidden;

  /* Crystal Glass Azul: “placa” interna */
  background:
    radial-gradient(120% 140% at 60% 18%, rgba(120,210,255,0.16), rgba(0,0,0,0) 55%),
    radial-gradient(140% 160% at 30% 85%, rgba(14,114,228,0.16), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(10,18,40,0.35), rgba(6,10,24,0.22));

  border: 1px solid rgba(120,210,255,0.14);
  box-shadow: 0 24px 70px rgba(0,0,0,0.52), 0 18px 80px rgba(14,114,228,0.10), inset 0 1px 0 rgba(255,255,255,0.05);
}


/* ✅ CLAVE: apilar cards (sin esto, nunca “cambia” visualmente) */
.s4-fan__card{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  opacity: 0;
  transform: translateX(12px) scale(0.99);
  pointer-events: none;
  z-index: 0;

  transition:
    opacity var(--s4-trans) var(--s4-ease),
    transform var(--s4-trans) var(--s4-ease);
}

/* Fallback sin JS: mostrar solo la primera mientras NO esté listo */
.s4-fan__stack:not(.is-ready) .s4-fan__card:first-child{
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 1;
}

.s4-fan__card.is-active{
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

/* Imagen: cubrir todo el recuadro */
.s4-fan__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  filter: drop-shadow(0 18px 46px rgba(0,0,0,0.40));
  opacity: 0.98;

  transform: translateZ(0);
  will-change: transform, opacity, filter;
}

/* Animación imagen al entrar (sobre la img de la card activa) */
.s4-fan__card.is-anim .s4-fan__img{
  animation: s4ImgIn var(--s4-trans) var(--s4-ease) both;
}

@keyframes s4ImgIn{
  from{
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    filter: blur(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Controles */
.s4-fan__controls{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.s4-fan__btn{
  width: 40px;
  height: 40px;
  border-radius: 999px;

  background: rgba(8, 14, 30, 0.45);
  border: 1px solid rgba(120,210,255,0.18);
  color: rgba(255,255,255,0.88);

  display: inline-grid;
  place-items: center;

  box-shadow: 0 16px 40px rgba(0,0,0,0.38), 0 10px 40px rgba(14,114,228,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);

  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.s4-fan__btn:hover{
  transform: translateY(-1px);
  background: rgba(14,114,228,0.10);
  border-color: rgba(120,210,255,0.26);
  box-shadow: 0 18px 46px rgba(0,0,0,0.42), 0 18px 60px rgba(14,114,228,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
}


.s4-fan__btn:active{
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px){
  .s4-panel{
    grid-template-columns: 1fr;
  }

  /* en móvil: imagen arriba, texto abajo */
  .s4-fan{ order: 1; }
  .s4-info{ order: 2; min-height: unset; }

  .s4-fan__stack{
    aspect-ratio: 16 / 12;
  }

  .s4-info__btn{
    align-self: stretch;
    justify-content: center;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .s4-info.is-anim{ animation: none; }
  .s4-fan__card{ transition: none; }
  .s4-fan__card.is-anim .s4-fan__img{ animation: none; }
}


/* =========================================================
   DROPDOWN DESKTOP: "Soluciones"
========================================================= */

.nav-dropdown{
  position: relative;
  display: inline-block;
}

.nav-dropdown__trigger{
  list-style: none;
  cursor: pointer;
  user-select: none;
}

/* Oculta el triangulito default de <summary> */
.nav-dropdown__trigger::-webkit-details-marker{ display: none; }
.nav-dropdown__trigger::marker{ content: ""; }

/* Panel */
.nav-dropdown__panel{
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px) scale(0.98);

  min-width: 240px;
  padding: 10px;
  border-radius: 16px;

  background: rgba(12,12,12,0.78);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 90px rgba(0,0,0,0.72), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  opacity: 0;
  pointer-events: none;

  transition: opacity .22s ease, transform .22s ease;
  z-index: 9999;
}

.nav-dropdown[open] .nav-dropdown__panel{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.nav-dropdown__item{
  display: flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  background: transparent;
}

.nav-dropdown__item:hover{
  background: rgba(255,255,255,0.06);
  color: rgba(6, 155, 255, 0.92);
}

/* =========================================================
   MOBILE: acordeón "Soluciones"
========================================================= */

.mobile-accordion{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}

.mobile-accordion__trigger{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 12px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}

.mobile-accordion__trigger::-webkit-details-marker{ display: none; }
.mobile-accordion__trigger::marker{ content: ""; }

.mobile-accordion__panel{
  padding: 8px 10px 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 6px;
}

/* En mobile queremos que los links del panel se vean “limpios” */
.mobile-accordion__panel .nav-link{
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}

.mobile-accordion__panel .nav-link:hover{
  background: rgba(255,255,255,0.06);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .nav-dropdown__panel{
    transition: none !important;
  }
}

/*FOOTER */
/* ============================
   Footer — Transparent Crystal (sin color)
   - glass puro (blur + border + highlights)
============================ */
.site-footer{
  --border: rgba(255,255,255,0.14);
  --border2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.78);
  --strong: rgba(255,255,255,0.94);
  --muted: rgba(255,255,255,0.56);

  margin-top: 26px;
  padding: 18px 22px 14px;

  /* transparente, sin tint */
  background: transparent;

  border: 1px solid var(--border2);
  border-radius: 18px;

  position: relative;
  overflow: hidden;

  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);

  box-shadow:
    0 18px 48px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* “Liquid” sin color: solo brillos/blancos en movimiento */
.site-footer::before,
.site-footer::after{
  content:"";
  position: absolute;
  inset: -60px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
  filter: blur(24px);
}

.site-footer::before{
  background:
    radial-gradient(260px 200px at 18% 35%, rgba(255, 255, 255, 0), transparent 70%),
    radial-gradient(240px 180px at 70% 30%, rgba(255, 255, 255, 0), transparent 72%),
    radial-gradient(260px 220px at 60% 80%, rgba(255, 255, 255, 0), transparent 74%);
  animation: footerGlassFlow 11s ease-in-out infinite alternate;
  opacity: 0.7;
}

.site-footer::after{
  background:
    radial-gradient(240px 200px at 35% 85%, rgba(255, 255, 255, 0), transparent 72%),
    radial-gradient(260px 220px at 85% 70%, rgba(255, 255, 255, 0), transparent 74%);
  animation: footerGlassFlow2 13s ease-in-out infinite alternate;
  opacity: 0.55;
}

@keyframes footerGlassFlow{
  0%   { transform: translate3d(-10px, 10px, 0) scale(1.02); }
  100% { transform: translate3d(14px, -8px, 0) scale(1.08); }
}
@keyframes footerGlassFlow2{
  0%   { transform: translate3d(12px, -6px, 0) scale(1.00); }
  100% { transform: translate3d(-16px, 12px, 0) scale(1.10); }
}

.site-footer__inner{
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

/* TOP: 3 columnas para que el botón quede a la MISMA altura */
.site-footer__top{
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* brand | mid | right */
  gap: 16px;
  align-items: center; /* 🔥 misma altura */
}

.site-footer__brandLink{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-footer__logo{
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.96;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.45));
}

.site-footer__brandText{
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.05;
  flex-wrap: wrap;
}

.site-footer__brandName{
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--strong);
}

.site-footer__brandLabs{
  font-weight: 800;
  letter-spacing: 1.1px;
  color: var(--strong);
  opacity: 0.92;
}

/* MID: centrado real */
.site-footer__mid{
  display: flex;
  justify-content: center;
}

/* Botón Space: transparente (solo borde + blur) */
.site-footer__spaceBtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 999px;

  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;

  color: var(--strong);

  background: transparent;
  border: 1px solid var(--border);

  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);

  box-shadow:
    0 14px 40px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.10);

  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-footer__spaceArrow{
  opacity: 0.9;
  transform: translateY(-1px);
}

.site-footer__spaceBtn:hover{
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(255,255,255,0.22);
  box-shadow:
    0 18px 54px rgba(0,0,0,0.50),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* RIGHT */
.site-footer__right{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer__social{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer__socialLink{
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;

  color: rgba(255,255,255,0.90);

  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  box-shadow:
    0 12px 34px rgba(0,0,0,0.40),
    inset 0 1px 0 rgba(255,255,255,0.10);

  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.site-footer__socialLink svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer__socialLink:hover{
  transform: translateY(-1px) scale(1.03);
  border-color: rgba(255,255,255,0.22);
  box-shadow:
    0 16px 44px rgba(0,0,0,0.52),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* BOTTOM */
.site-footer__bottom{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer__copyright{
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer__legal{
  display: flex;
  gap: 14px;
}

.site-footer__link{
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer__link:hover{
  color: var(--strong);
  transform: translateX(2px);
}

/* Responsive */
@media (max-width: 860px){
  .site-footer__top{
    grid-template-columns: 1fr; /* apila */
    align-items: start;
  }

  .site-footer__mid{
    justify-content: flex-start; /* si querés igual centrado en mobile, cambiamos a center */
  }

  .site-footer__right{
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .site-footer::before,
  .site-footer::after{
    animation: none !important;
  }
  .site-footer__socialLink,
  .site-footer__spaceBtn,
  .site-footer__link{
    transition: none !important;
  }
}

/* SOLO el texto "LABS" con color (footer sigue 100% transparente) */
.site-footer__brandLabs{
  font-weight: 800;
  letter-spacing: 1.1px;

  /* color del acento (cambiá el hex si querés) */
  color: #00b7ff;

  /* glow suave estilo cristal */
  text-shadow:
    0 0 14px rgba(0, 183, 255, 0.25),
    0 0 28px rgba(0, 183, 255, 0.14);
}

/* ============================
   FOOTER: TODO centrado en mobile
============================ */
@media (max-width: 860px){
  /* el contenedor general */
  .site-footer{
    text-align: center;
  }

  /* apila y centra */
  .site-footer__top{
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 14px;
  }

  /* brand centrado */
  .site-footer__brand{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .site-footer__brandLink{
    justify-content: center;
  }

  /* botón space centrado */
  .site-footer__mid{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* right centrado */
  .site-footer__right{
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* redes centradas */
  .site-footer__social{
    justify-content: center;
    width: 100%;
  }

  /* bottom centrado y apilado */
  .site-footer__bottom{
    justify-content: center;
    text-align: center;
  }

  .site-footer__legal{
    justify-content: center;
    width: 100%;
  }
}
