/* ═══════════════════════════════════════════════════════
   MEGATROWN — LGPD Banner Styles v1.0
═══════════════════════════════════════════════════════ */

#lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #060d18 0%, #0a1428 100%);
  border-top: 1px solid rgba(42, 157, 42, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
  font-family: 'Inter', sans-serif;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.lgpd-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lgpd-banner-text {
  flex: 1;
  min-width: 250px;
  color: #c3d7eb;
}

.lgpd-banner-text strong {
  display: block;
  color: #2a9d2a;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lgpd-banner-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.lgpd-banner-text a {
  color: #38c6ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lgpd-banner-text a:hover {
  color: #2a9d2a;
  text-decoration: underline;
}

.lgpd-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 200px;
  justify-content: flex-end;
}

.lgpd-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.lgpd-btn-primary {
  background: linear-gradient(135deg, #2a9d2a 0%, #1f7a1f 100%);
  color: #fff;
  border: 1px solid #2a9d2a;
}

.lgpd-btn-primary:hover {
  background: linear-gradient(135deg, #1f7a1f 0%, #16601f 100%);
  box-shadow: 0 4px 12px rgba(42, 157, 42, 0.3);
  transform: translateY(-2px);
}

.lgpd-btn-secondary {
  background: transparent;
  color: #c3d7eb;
  border: 1px solid rgba(195, 215, 235, 0.3);
}

.lgpd-btn-secondary:hover {
  background: rgba(195, 215, 235, 0.08);
  border-color: rgba(195, 215, 235, 0.6);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .lgpd-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
  }

  .lgpd-banner-actions {
    width: 100%;
    justify-content: stretch;
  }

  .lgpd-btn {
    flex: 1;
  }

  .lgpd-banner-text p {
    font-size: 12px;
  }
}
