  :root{
    --primary:#ff2d2d;      /* vermelho Malta */
    --bg:#0d0f12;
    --card:rgba(255,255,255,.08);
    --stroke:rgba(255,255,255,.12);
    --text:#e9eef6;
    --muted:#b6c2d0;
    --focus:rgba(255,45,45,.35);
    --shadow:0 10px 30px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.05);
    --radius:18px;
  }

  /* Fundo e tipografia */
  .section.bg-default{

    padding: 64px 0 92px;
  }

  /* Card */
  .cookie-card{
    background: var(--card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    text-align: left;
  }

  .cookie-card h2{
    margin: 0 0 6px;
    font-weight: 800;
    letter-spacing:.2px;
  }

  .cookie-sub{

    margin-bottom: 18px;
    font-size: .95rem;
  }

  /* Lista de termos (dl) */
  .list-terms{
    margin: 0;
  }
  .list-terms dt{
    margin-top: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .list-terms dt::before{
    content:"";
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px var(--focus);
    display:inline-block;
  }
  .list-terms dd{
    margin: 8px 0 6px 0;

    opacity: .95;
    line-height: 1.6;
  }

  /* Lista interna */
  .list-terms ul{
    margin: 8px 0 0 0;
    padding-left: 18px;
  }
  .list-terms li{
    margin-bottom: 6px;
 
    opacity: .95;
  }

  /* Links */
  .cookie-card a{
    color: #ff1818;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .cookie-card a:hover{
    color: #ff1818;
  }

  /* Contato */
  .privacy-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.12);
    background: linear-gradient(180deg, var(--primary), #e11717);
    color:#fff;
    font-weight:700;
    letter-spacing:.2px;
    box-shadow: 0 8px 18px rgba(255,45,45,.35);
    transition: filter .18s ease, box-shadow .18s ease, transform .08s ease;
  }
  .privacy-link:hover{ filter: brightness(1.03); box-shadow: 0 10px 24px rgba(255,45,45,.42); }
  .privacy-link:active{ transform: translateY(1px); }

  /* Responsivo */
  @media (max-width: 575.98px){
    .cookie-card{ padding: 22px; }
  }