/* FlowProp · Banner de consentimiento de cookies */
.fp-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gray-900, #1a1a1a);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-sans, system-ui, sans-serif);
}
.fp-consent-txt {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-body, #333);
}
.fp-consent-txt a { color: var(--accent-500, #e8442a); text-decoration: underline; }
.fp-consent-btns { display: flex; gap: 10px; justify-content: flex-end; }
.fp-consent-btn {
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 7px;
  cursor: pointer;
  border: 1px solid var(--gray-900, #1a1a1a);
  background: #fff;
  color: var(--text-primary, #111);
}
.fp-consent-no:hover { background: var(--gray-50, #f4f4f4); }
.fp-consent-yes {
  background: var(--accent-500, #e8442a);
  border-color: var(--accent-500, #e8442a);
  color: #fff;
}
.fp-consent-yes:hover { background: var(--accent-700, #c4341f); }
@media (min-width: 560px) {
  .fp-consent { flex-direction: row; align-items: center; max-width: 720px; }
  .fp-consent-txt { flex: 1; }
  .fp-consent-btns { flex-shrink: 0; }
}
