/* assets/css/site.css */

:root{
    --bg:#050A14;
    --cyan:#00FFFF;
    --cyanDark:#008B8B;
    --navy:#0A192F;
  }
  
  html, body { height: 100%; }
  body{
    background: var(--bg);
    color: #fff;
    overflow-x: hidden;
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  
  /* Grid pattern del diseño */
  .bg-grid-pattern{
    background-image:
      linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
  }
  
  /* Glow consistente */
  .text-glow{
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
  }
  
  /* Scrollbar hide */
  .no-scrollbar::-webkit-scrollbar { display: none; }
  .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
  
  /* Material symbols (tu base) */
  .material-symbols-outlined{
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  }

  .material-symbols-outlined{
    font-family: "Material Symbols Outlined";
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    font-size: 20px; /* controla tamaño del icono */
    display: inline-block;
    vertical-align: middle;
  }
  
  /* Accesibilidad + estética */
  :focus-visible{
    outline: 2px solid rgba(0,255,255,0.65);
    outline-offset: 3px;
    border-radius: 12px;
  }
  
  /* Pequeñas mejoras visuales reusables (sin cambiar tu diseño) */
  .soft-border{
    border: 1px solid rgba(255,255,255,0.10);
  }
  
  .neon-ring{
    box-shadow: 0 0 0 1px rgba(0,255,255,0.25), 0 0 25px rgba(0,255,255,0.08);
  }
  
  /* Blobs sutiles (sirven para “premium”) */
  .glow-blob{
    position:absolute;
    width: 220px;
    height: 220px;
    border-radius: 9999px;
    background: rgba(0,255,255,0.12);
    filter: blur(50px);
    pointer-events:none;
  }

  /* ============ Sofra Slider ============ */
.sofra-slider { position: relative; }
.sofra-slider__track { width: 100%; }
.sofra-slide { user-select: none; }

.sof-dots .sofra-dot{
  height: 10px;
  width: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.sof-dots .sofra-dot[aria-current="true"]{
  background: rgba(0,229,255,.9);
  border-color: rgba(0,229,255,.9);
  box-shadow: 0 0 18px rgba(0,229,255,.45);
  transform: scale(1.15);
}

/* Improve tap targets on mobile */
.sofra-slider__btn { -webkit-tap-highlight-color: transparent; }
  
/* Header: compact on scroll */
.header-scrolled{
  background: rgba(5,10,20,0.92) !important;
  border-bottom-color: rgba(255,255,255,0.14) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}


