/* T3A — Consent Banner styles (LGPD / Consent Mode v2) */

.t3a-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 99999;
  width: calc(100% - 2rem);
  max-width: 580px;
  font-family: 'Garet', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.t3a-consent-box {
  background: #000d24;
  border: 1px solid rgba(75, 196, 242, 0.15);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.t3a-consent-text {
  color: #d4d4d8;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.t3a-consent-link {
  color: #4bc4f2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.t3a-consent-link:hover {
  color: #6ed0f5;
}

.t3a-consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.t3a-consent-btn {
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.t3a-consent-btn-primary {
  background: #1e4b8f;
  color: #ffffff;
}

.t3a-consent-btn-primary:hover {
  background: #2d5a9f;
}

.t3a-consent-btn-secondary {
  background: transparent;
  color: #a1a1aa;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 500;
}

.t3a-consent-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #d4d4d8;
}

@media (max-width: 480px) {
  .t3a-consent-banner {
    bottom: 12px;
    width: calc(100% - 1.5rem);
  }
  .t3a-consent-box {
    padding: 18px 20px;
  }
  .t3a-consent-text {
    font-size: 14px;
  }
  .t3a-consent-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
