/* ============================================
   LGPD BANNER — Forja Marketing
   Cookie consent banner (bottom-left)
   ============================================ */

.lgpd-banner {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  width: 420px;
  max-width: calc(100vw - 56px);
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 32px 28px 28px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(140, 106, 59, 0.06);
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lgpd-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 4px 4px 0 0;
}

.lgpd-banner--visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.lgpd-banner--hiding {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
}

/* Icon */
.lgpd-banner__icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.8;
}

/* Title */
.lgpd-banner__title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

/* Text */
.lgpd-banner__text {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.lgpd-banner__text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.lgpd-banner__text a:hover {
  color: var(--latao-light);
}

/* Actions */
.lgpd-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lgpd-banner__accept {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 2px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lgpd-banner__accept:hover {
  background: var(--latao-light);
  border-color: var(--latao-light);
}

.lgpd-banner__reject {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lgpd-banner__reject:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 480px) {
  .lgpd-banner {
    bottom: 16px;
    left: 16px;
    max-width: calc(100vw - 32px);
    padding: 24px 20px 20px;
  }

  .lgpd-banner__actions {
    flex-direction: column;
  }

  .lgpd-banner__accept,
  .lgpd-banner__reject {
    width: 100%;
  }
}
