/* Consentimento + analytics — estilos compartilhados */
.eco-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 720px;
  margin: 0 auto;
  background: #00384F;
  color: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 56, 79, 0.35);
  padding: 16px 18px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.45;
  display: none;
}
.eco-consent.is-visible { display: block; }
.eco-consent a { color: #7dd3c7; text-decoration: underline; }
.eco-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.eco-consent-actions button {
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
}
.eco-consent-accept { background: #008C8C; color: #fff; }
.eco-consent-essential { background: #e2e8f0; color: #00384F; }
@media (min-width: 720px) {
  .eco-consent { left: 50%; right: auto; transform: translateX(-50%); width: calc(100% - 32px); }
}
