
  /* ---------- PREFERENCIAS DE PRIVACIDAD ---------- */
  .cookie-banner{
    position:fixed;
    left:1rem;
    right:1rem;
    bottom:1rem;
    z-index:9999;
    max-width:900px;
    margin:auto;
    padding:1rem 1.1rem;
    background:white;
    color:var(--navy);
    border:1px solid var(--line);
    border-radius:14px;
    box-shadow:0 8px 26px rgba(16,35,63,0.14);
  }

  .cookie-banner[hidden]{ display:none; }

  .cookie-banner-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
  }

  .cookie-banner-text{
    max-width:610px;
    font-size:0.82rem;
    color:var(--text-soft);
    line-height:1.5;
  }

  .cookie-banner-text strong{
    display:block;
    color:var(--navy);
    margin-bottom:0.25rem;
  }

  .cookie-banner-text a{ color:var(--blue); }

  .cookie-actions{
    display:flex;
    flex-wrap:wrap;
    gap:0.55rem;
  }

  .cookie-btn{
    border:1px solid var(--line);
    border-radius:999px;
    padding:0.68rem 0.92rem;
    background:white;
    color:var(--navy);
    font-family:system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight:700;
    cursor:pointer;
  }

  .cookie-btn.accept{
    background:var(--green);
    color:white;
    border-color:var(--green);
  }

  @media(max-width:700px){
    .cookie-banner-inner{ align-items:stretch; flex-direction:column; }
    .cookie-actions{ display:grid; grid-template-columns:1fr 1fr; }
  }

