/* ═══════════════════════════════════════════════════════════
   SoulsGuides — Aviso de soporte no bloqueante
   ═══════════════════════════════════════════════════════════ */

.sg-support-note {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 12000;
  display: flex;
  width: min(560px, calc(100vw - 40px));
  align-items: flex-start;
  gap: 14px;
  padding: 18px 44px 18px 18px;
  color: #e9e0d0;
  background:
    radial-gradient(circle at 0 0, rgba(196,163,90,.12), transparent 40%),
    linear-gradient(145deg, rgba(24,21,18,.98), rgba(10,10,9,.98));
  border: 1px solid rgba(196,163,90,.52);
  box-shadow: 0 18px 60px rgba(0,0,0,.48), 0 0 24px rgba(196,163,90,.08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .28s ease, transform .28s ease;
}

.sg-support-note[hidden] {
  display: none;
}

.sg-support-note.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sg-support-note__ornament {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: #d2a952;
  font-size: 19px;
  line-height: 30px;
  text-align: center;
  text-shadow: 0 0 16px rgba(210,169,82,.55);
}

.sg-support-note__body {
  min-width: 0;
}

.sg-support-note__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #c49e59;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.sg-support-note__title {
  margin: 0 0 7px;
  color: #f3eadb;
  font-family: var(--ff, Georgia, serif);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.15;
}

.sg-support-note__text,
.sg-support-note__help {
  max-width: 470px;
  margin: 0;
  color: rgba(225,215,199,.76);
  font-family: var(--ff, Georgia, serif);
  font-size: 14px;
  line-height: 1.5;
}

.sg-support-note__help {
  margin-top: 8px;
  color: rgba(244,218,159,.86);
  font-size: 13px;
}

.sg-support-note__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 13px;
}

.sg-support-note__primary,
.sg-support-note__secondary {
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--ff, Georgia, serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sg-support-note__primary {
  color: #15110b;
  background: #caa45d;
  border-color: #dfbd77;
}

.sg-support-note__primary:hover,
.sg-support-note__primary:focus-visible {
  background: #e1be76;
}

.sg-support-note__secondary {
  padding-inline: 0;
  color: rgba(225,215,199,.68);
  background: transparent;
  border-color: transparent;
}

.sg-support-note__secondary:hover,
.sg-support-note__secondary:focus-visible {
  color: #f3eadb;
}

.sg-support-note__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  padding: 0;
  color: rgba(225,215,199,.58);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  line-height: 28px;
}

.sg-support-note__close:hover,
.sg-support-note__close:focus-visible {
  color: #f3eadb;
}

@media (max-width: 600px) {
  .sg-support-note {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    gap: 10px;
    padding: 15px 38px 15px 13px;
  }

  .sg-support-note__ornament {
    width: 22px;
    font-size: 16px;
  }

  .sg-support-note__text,
  .sg-support-note__help {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sg-support-note {
    transition: none;
  }
}
