@charset "UTF-8";
/* CSS Document */

  margin: 0;
      font-family: "Poppins", sans-serif;
      background-color: #000;
      color: #fff;
      overflow-x: hidden;
    }

    /* --- Banner --- */
    #promoBanner {
      position: fixed;
      top: 0;
      left: 50%;
      transform: translateX(-50%) translateY(-100%);
      width: 90%;
      max-width: 600px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 25px rgba(0,0,0,0.7);
      text-align: center;
      opacity: 0;
      visibility: hidden;
      z-index: 9999;
      transition: transform 0.8s ease, opacity 0.8s ease, visibility 0.8s ease;
    }

    #promoBanner.show {
      transform: translateX(-50%) translateY(20px);
      opacity: 1;
      visibility: visible;
    }

    /* --- Fondo video o imagen --- */
    .promo-bg {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    /* --- Contenido --- */
    .promo-content {
      position: relative;
      z-index: 1;
      background:
      padding: 1.5rem;
      border-radius: 16px;
    }

    .promo-text {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }

    /* --- Botón acción --- */
    #promoBtn {
      display: inline-block;
      margin-top: 0.6rem;
      background: rgba(255,255,255,0.9);
      color: black;
      padding: 0.5rem 1.2rem;
      border-radius: 25px;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.3s, transform 0.3s;
    }

    #promoBtn:hover {
      background: white;
      transform: scale(1.05);
    }

    /* --- Botón cierre en esquina --- */
    #closeBanner {
      position: absolute;
      top: 8px;
      right: 10px;
      background: transparent;
      border: none;
      color: white;
      font-size: 1.4rem;
      cursor: pointer;
      transition: color 0.3s;
      z-index: 2;
    }

    #closeBanner:hover {
      color: #ffdf80;
    }