/* === INDICAÇÕES PAGE === */

.ref-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.ref-stat-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 22px 16px 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f4;
  text-align: center;
  overflow: hidden;
}

.ref-stat-card--pink {
  background: linear-gradient(160deg, #ff2d78 0%, #ff5fa0 100%);
  border: none;
  box-shadow: 0 8px 24px rgba(255,45,120,0.28);
}

.ref-stat-card__icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,45,120,0.1);
  color: #ff2d78;
}

.ref-stat-card--pink .ref-stat-card__icon {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

.ref-stat-card__icon svg {
  width: 19px;
  height: 19px;
}

.ref-stat-card__value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #ff2d78;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.ref-stat-card--pink .ref-stat-card__value {
  color: #fff;
}

.ref-stat-card__label {
  font-size: 12px;
  color: #999;
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.1px;
  line-height: 1.4;
}

.ref-stat-card--pink .ref-stat-card__label {
  color: rgba(255,255,255,0.85);
}

/* ===== Link box ===== */

.ref-link-box {
  background: #fff;
  border-radius: 20px;
  padding: 22px 20px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f4;
  margin-bottom: 18px;
}

.ref-link-box__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 14px;
}

.ref-link-box__label svg {
  width: 16px;
  height: 16px;
  color: #ff2d78;
  flex-shrink: 0;
}

.ref-link-box__display {
  display: block;
  width: 100%;
  background: #fdf3f7;
  border: 1.5px solid #ffd9e8;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #d1266b;
  font-family: 'SFMono-Regular', Consolas, monospace;
  line-height: 1.6;
  word-break: break-all;
  user-select: all;
  margin-bottom: 12px;
}

.ref-link-box__copy {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #ff2d78 0%, #ff5fa0 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255,45,120,0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.ref-link-box__copy svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ref-link-box__copy:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,45,120,0.4);
}

.ref-link-box__copy:active {
  transform: scale(0.98);
}

.ref-link-box__hint {
  font-size: 12.5px;
  color: #aaa;
  margin-top: 14px;
  line-height: 1.6;
}

/* ===== Explainer ===== */

.ref-explainer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #a35b7a;
  line-height: 1.6;
  padding: 16px 18px;
  background: linear-gradient(135deg, #fff5f9 0%, #fff0f6 100%);
  border: 1px solid #ffd9e8;
  border-radius: 16px;
}

.ref-explainer__icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.ref-explainer strong {
  color: #ff2d78;
}

@media (max-width: 480px) {
  .ref-link-box__display {
    font-size: 12.5px;
  }
}
