   /* ===== RESET BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f0f4f8;
      color: #333;
      line-height: 1.6;
    }

    /* ===== SCROLL HERO ADCE ===== */
    #adce-scroll {
      position: relative;
      background: #000;
      min-height: clamp(420px, 70vh, 800px);
      color: #e8f0ff;
      overflow: hidden;
      -webkit-tap-highlight-color: transparent;
      margin-bottom: 3rem;
    }

    /* Track con scroll horizontal */
    #adce-scroll .sh-track {
      display: flex;
      height: 100%;
      width: 100%;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
    }

    /* Ocultar barra de scroll */
    #adce-scroll .sh-track::-webkit-scrollbar {
      display: none;
    }

    /* Cada slide */
    #adce-scroll .sh-slide {
      position: relative;
      flex: 0 0 100%;
      min-height: clamp(420px, 70vh, 800px);
      scroll-snap-align: start;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Usar la variable CSS para la imagen de fondo */
    #adce-scroll .sh-slide {
      background-image: var(--bg, linear-gradient(45deg, #1a365d, #2a4365));
    }

    /* Capa de contenido */
    #adce-scroll .sh-layer {
      position: relative;
      max-width: 1200px;
      width: 90%;
      padding: 2rem;
      text-align: center;
      z-index: 2;
    }

    /* Logo */
    #adce-scroll .sh-logo {
      width: clamp(80px, 14vw, 180px);
      height: auto;
      margin: 0 auto 1.5rem;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
    }

    /* Título */
    #adce-scroll .sh-title {
      margin: 0;
      font-weight: 800;
      line-height: 1.15;
      font-size: clamp(1.8rem, 4vw, 3.2rem);
      text-shadow: 0 2px 12px rgba(0,0,0,.45);
      margin-bottom: 1.5rem;
    }

    #adce-scroll .sh-title span {
      font-weight: 700;
      display: block;
      font-size: clamp(1.2rem, 2.5vw, 2rem);
      margin-top: 0.5rem;
    }

    /* Controles */
    #adce-scroll .sh-controls {
      position: absolute;
      bottom: 20px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 1rem;
      z-index: 10;
    }

    #adce-scroll .sh-btn {
      pointer-events: all;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      color: #fff;
      font-size: 1.2rem;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 6px 18px rgba(0,0,0,.35);
      transition: all 0.3s ease;
      backdrop-filter: blur(4px);
    }

    #adce-scroll .sh-btn:hover {
      background: rgba(255, 255, 255, 0.4);
      transform: scale(1.05);
    }

    #adce-scroll .sh-btn:active {
      transform: scale(0.95);
    }

    #adce-scroll .sh-btn:focus-visible {
      outline: 2px solid #29a3ff;
    }

    /* Indicadores de posición */
    #adce-scroll .sh-indicators {
      position: absolute;
      bottom: 30px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 10px;
      z-index: 10;
    }

    #adce-scroll .sh-indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    #adce-scroll .sh-indicator.active {
      background: #fff;
      transform: scale(1.2);
    }

    /* Overlay para mejor contraste */
    #adce-scroll .sh-slide::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    /* Responsive para móviles */
    @media (max-width: 768px) {
      #adce-scroll .sh-layer {
        padding: 1.5rem;
      }
      
      #adce-scroll .sh-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
      }
      
      #adce-scroll .sh-title span {
        font-size: clamp(1rem, 4vw, 1.5rem);
      }
      
      #adce-scroll .sh-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
      }
    }

    /* Contenedor demo */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
    }
    
    .demo-content {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .demo-content h2 {
      color: #1a365d;
      margin-bottom: 1.5rem;
    }
    
    .demo-content p {
      margin-bottom: 1rem;
    }