/* Estilos específicos para las credenciales */
  
    :root {
      --cred-bg-dark: #151313;
      --cred-dot-bg: #1f1f1f;
      --cred-dot-border: #ffffff;
      --cred-accent: #00C8C8;
      --cred-accent-soft: rgba(0, 200, 200, 0.6);
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .credencial-wrapper {
      position: relative;
      width: 100%;
      max-width: 420px;
      margin: 0 auto;
      flex-shrink: 0;
    }

    .credencial-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 0.5rem;
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    }

    /* Botones de puntos interactivos */
    .cred-hotspot {
      position: absolute;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.24), var(--cred-dot-bg) 55%);
      color: #ffffff;
      border: 2px solid var(--cred-dot-border);
      box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.4),
        0 8px 18px rgba(0, 0, 0, 0.6);
      cursor: pointer;
      line-height: 1;
      position: absolute;
      transition:
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        background 0.18s ease-out,
        border-color 0.18s ease-out,
        color 0.18s ease-out;
    }

    .cred-hotspot i {
      pointer-events: none;
      font-size: 1.15rem;
    }

    /* Halo suave en hover */
    .cred-hotspot::after {
      content: "";
      position: absolute;
      inset: -4px;
      border-radius: inherit;
      border: 2px solid rgba(255, 255, 255, 0.35);
      opacity: 0;
      transform: scale(0.85);
      transition:
        opacity 0.18s ease-out,
        transform 0.18s ease-out;
    }

    .cred-hotspot:hover {
      transform: translateY(-1px) scale(1.05);
      box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.45),
        0 10px 24px rgba(0, 0, 0, 0.7);
      background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3), #202020 55%);
      border-color: var(--cred-accent);
      color: var(--cred-accent);
    }

    .cred-hotspot:hover::after {
      opacity: 1;
      transform: scale(1);
    }

    /* Variante para hotspots externos (Diseñadoras, demo, etc.) */
    .extra-hotspot {
      position: static;
      margin-left: 0.5rem;
    }

    /* Animación de foco / “radar” cuando se activa el demo */
    @keyframes hotspotPulse {
      0% {
        transform: scale(1);
        box-shadow:
          0 0 0 0 rgba(0, 0, 0, 0.5),
          0 8px 18px rgba(0, 0, 0, 0.6);
      }

      35% {
        transform: scale(1.16);
        box-shadow:
          0 0 0 8px var(--cred-accent-soft),
          0 8px 22px rgba(0, 0, 0, 0.8);
      }

      70% {
        transform: scale(1.06);
        box-shadow:
          0 0 0 16px rgba(0, 200, 200, 0),
          0 6px 16px rgba(0, 0, 0, 0.7);
      }

      100% {
        transform: scale(1);
        box-shadow:
          0 0 0 0 rgba(0, 200, 200, 0),
          0 8px 18px rgba(0, 0, 0, 0.6);
      }
    }

    .icon-animate {
      animation: hotspotPulse 1.7s ease-out 2;
    }

    /* Layout del dorso + diseñadoras */
    .dorso-container {
      position: relative;
      display: inline-block;
    }

    .designers-box {
      position: absolute;
      top: 50%;
      left: 100%;
      margin-left: 12px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.4rem;
    }

    .designers-label {
      font-size: 0.9rem;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: #555;
    }

    .designers-hotspot {
      position: relative;
    }

    @media (max-width: 991.98px) {
      .dorso-container {
        display: block;
      }

      .designers-box {
        position: static;
        margin-left: 0;
        margin-top: 10px;
        transform: none;
        flex-direction: row;
        align-items: center;
      }
    }

    /* Botón demo: más visible y explicativo */
    #demo-icon {
      border-radius: 999px;
      padding: 0.55rem 1.4rem;
      background: linear-gradient(135deg, #000000, #202020);
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.55);
      font-size: 0.9rem;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    #demo-icon i {
      font-size: 1.1rem;
    }

    #demo-icon:hover {
      background: linear-gradient(135deg, #050505, #262626);
      border-color: var(--cred-accent);
      color: var(--cred-accent);
      transform: translateY(-1px);
    }

    #demo-icon:active {
      transform: translateY(1px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
    }

    .demo-icon-label {
      white-space: nowrap;
    }

    @media (max-width: 575.98px) {
      #demo-icon {
        width: 100%;
        justify-content: center;
      }
    }
