/* Banner de cookies (Google Consent Mode v2) — waverider */
#cookieNotice {
  position: fixed;
  box-sizing: border-box;
  display: none; /* lo muestra el JS según el consentimiento */
  padding: 1.5rem 1.75rem;
  color: #fff;
  background-color: rgba(17, 26, 43, 0.96);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;

  &.display-left {
    left: 20px;
    bottom: 20px;
    width: 370px;
    max-width: 88vw;
  }

  & h3 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
  }

  & p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  & #saber {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
  }

  & .btn-primary {
    width: 100%;
    margin-top: 1rem;
    padding: 0.65rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background-color: #2a6cb0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: filter 0.3s ease;

    &:hover {
      filter: brightness(1.12);
    }
  }
}
