.lgpd-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  background: #111827;
  border: 1px solid #374151;
  border-radius: 16px;
  padding: 20px 24px;
  width: calc(100% - 48px);
  max-width: 900px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.lgpd-cookie-banner * { box-sizing: border-box; }

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-content-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cookie-text {
  margin: 0;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  margin-left: 4px;
}

.cookie-text a:hover { text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn-accept {
  background: #3b82f6;
  color: #fff;
}

.cookie-btn-reject {
  background: #374151;
  color: #e5e7eb;
}

@media (max-width: 768px) {
  .lgpd-cookie-banner {
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 20px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  .cookie-btn { width: 100%; padding: 12px; }
}
