.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 30px;
    background: rgba(10, 15, 25, 0.75);
    color: #fff;
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .cookie-consent__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-consent__text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
  }

  .cookie-consent__text p {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
    opacity: 0.95;
  }

  .cookie-consent a {
    color: #9fd3ff;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }

  .btn {
    border: 0;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: transform .05s ease, opacity .2s ease;
    white-space: nowrap;
  }
  .btn:active { transform: scale(0.75); }

  .btn--primary {
    background: #25d366 !important;
    color: #fff;
  }

  .btn--ghost {
    background: rgba(255,255,255,0.10);
    color: #fff;
  }

  /* Responsivo (mobile) */
  @media (max-width: 680px) {
    .cookie-consent__container {
      flex-direction: column;
      align-items: stretch;
    }
    .cookie-consent__actions {
      width: 100%;
    }
    .cookie-consent__actions .btn {
      flex: 1;
      justify-content: center;
    }
    .cookie-consent__text strong {
      font-size: 14px;
    }
    .cookie-consent__text p {
      font-size: 13px;
    }
  }