/* ==========================================================
   COOKIE CONSENT (LGPD)
========================================================== */
.cc-wrap{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 0 12px;
}

.cc-card{
  width: min(980px, 100%);
  background: rgba(20, 20, 20, 0.92);
  color: #fff;
  border-radius: 14px;
  padding: 14px 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);

  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cc-title{
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin-bottom: 2px;
}

.cc-desc{
  font-size: 13px;
  line-height: 1.25;
  opacity: 0.92;
  max-width: 680px;
}

.cc-actions{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cc-btn{
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.cc-btn-ghost{
  background: rgba(255,255,255,0.10);
  color: #fff;
}

.cc-btn-primary{
  background: #ffffff;
  color: #111;
}

@media (max-width: 640px){
  .cc-card{
    flex-direction: column;
    align-items: stretch;
  }
  .cc-actions{
    justify-content: flex-end;
  }
}