/* ============================================================
   BANNERS — Info, gift, status, toast, loader
============================================================ */

/* ── Info banner ── */
.info-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(45,204,211,0.07);
  border: 1.5px solid rgba(45,204,211,0.25);
  border-radius: 16px;
  padding: 14px 14px 14px 16px;
  margin-bottom: 20px;
  position: relative;
}

.info-banner-icon { flex-shrink: 0; margin-top: 2px; }

.info-banner-text {
  font-size: 12.5px;
  color: #005479;
  line-height: 1.55;
  flex: 1;
  margin: 0;
  font-family: var(--sans);
}

.info-banner-close {
  background: none;
  border: none;
  font-size: 11px;
  color: #A8C4C6;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.info-banner-close:hover { color: #005479; }

.info-banner-warm {
  background: rgba(180, 60, 10, 0.08);
  border: 1.5px solid rgba(180, 60, 10, 0.25);
  border-left: 4px solid #C4400A;
  border-radius: var(--r-md);
  padding: 14px 14px 14px 16px;
  margin-bottom: 16px;
}

/* ── Gift banner (referido) ── */
.gift-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.90);
  border: 1.5px solid rgba(45,204,211,0.35);
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(45,204,211,0.12);
  position: relative;
  overflow: hidden;
}

.gift-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #2DCCD3, #005479);
  border-radius: 4px 0 0 4px;
}

.gift-banner-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45,204,211,0.18), rgba(0,160,152,0.12));
  border: 1.5px solid rgba(45,204,211,0.30);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.gift-banner-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #005479;
}

.gift-banner-text span {
  font-size: 13px;
  color: #4A7A82;
  margin-top: 3px;
  display: block;
  line-height: 1.4;
}

.gift-banner-text span strong {
  display: inline;
  color: #2DCCD3;
  font-weight: 700;
}

/* ── Status badge ── */
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(45,204,211,0.10);
  border: 1px solid rgba(45,204,211,0.28);
  color: #005479;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 20px;
}

.status-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--vivid-teal);
  box-shadow: 0 0 0 0 rgba(30,196,164,0.5);
  animation: pulse 2.2s ease infinite;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: rgba(0,84,121,0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(45,204,211,0.25);
  color: white;
  padding: 13px 22px;
  border-radius: 16px;
  font-size: 13.5px;
  font-weight: 500;
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,84,121,0.28);
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: calc(100vw - 40px);
  text-align: center;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── Loader screen ── */
.loader-screen {
  position: fixed;
  inset: 0;
  background: rgba(240,250,251,0.90);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 200;
  transition: opacity 0.3s;
}

.loader-screen.gone {
  opacity: 0;
  pointer-events: none;
}

.loader-ring {
  width: 52px; height: 52px;
  border: 3px solid rgba(45,204,211,0.15);
  border-top-color: #2DCCD3;
  border-radius: 50%;
  animation: rotate 0.80s linear infinite;
}

.loader-text {
  font-size: 14px;
  font-weight: 500;
  color: #4A7A82;
}

/* ── Welcome panel ── */
.welcome-panel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.80);
  border: 1.5px solid rgba(255,107,53,0.20);
  border-radius: var(--r-lg);
  padding: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(255,107,53,0.08);
  margin-bottom: 16px;
}

.welcome-panel-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,53,0.18), rgba(255,107,53,0.08));
  border: 1.5px solid rgba(255,107,53,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FF6B35;
  font-size: 20px;
  line-height: 1;
}

.welcome-panel-body { flex: 1; }

.welcome-panel-text {
  font-size: 12px;
  color: #4A7A82;
  line-height: 1.6;
  margin: 0;
}

.welcome-panel-text strong { color: #005479; }
