/* ==================================================================
   COOKIE CONSENT CSS - Design System V2
   Compatível com global_v2.css
   ================================================================== */

#wf-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--wf-color-surface);
  border-top: 2px solid var(--wf-color-border);
  padding: var(--wf-spacing-lg);
  box-shadow: var(--wf-shadow-lg);
  z-index: var(--wf-z-modal);
  display: none;
}

#wf-cookie-consent.show {
  display: block;
}

.cookie-consent-content {
  max-width: var(--wf-max-width-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wf-spacing-lg);
}

.cookie-consent-text {
  color: var(--wf-color-text);
  font-size: 0.9rem;
  flex: 1;
}

.cookie-consent-buttons {
  display: flex;
  gap: var(--wf-spacing-sm);
}

@media (max-width: calc(var(--wf-breakpoint-md) - 1px)) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
}
