/* Estilos generales */
   /* body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
    }*/

    /* Fondo sombreado detrás del banner */
    .overlay-banner {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.4); /* Oscurecido suave */
      z-index: 99000008; /* Justo debajo del banner */
      /*transition: opacity 0.3s ease;*/
      /*transition: opacity 1s ease, visibility 1s ease;*/
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    /* Banner flotante */
    .banner-flotante {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ffffff;
      border: 1px solid #e0e0e0;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 99000009;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .banner-flotante a {
      background-color: #00a8a3;
      color: white;
      padding: 10px 18px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .banner-flotante a:hover {
      background-color: #008d8a;
    }

    .cerrar-banner {
      background: none;
      border: none;
      font-size: 18px;
      color: #888;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .cerrar-banner:hover {
      color: #555;
    }

    .no-scroll {
      overflow: hidden;
      height: 100vh;
    }

    @media (max-width: 480px) {
      .banner-flotante {
        flex-direction: column;
        text-align: center;
        padding: 12px 16px;
      }

      .banner-flotante a {
        width: 100%;
        display: block;
      }
    }