/* ── Modal "100 años STIHL" ──────────────────────────────── */

.copa-historia-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  place-items: center;
  padding: 24px;
}

.copa-historia-backdrop.is-open {
  display: grid;
}

.copa-historia {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--stihl-orange) 0%, var(--stihl-orange-600) 100%);
  border-radius: var(--radius-2xl);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 480px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #FFFFFF;
  max-height: 90vh;
  overflow-y: auto;
}

.copa-historia__rings {
  position: absolute;
  top: -40px;
  right: -120px;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.copa-historia__rings span {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.copa-historia__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  color: #FFFFFF;
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
}

.copa-historia__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.copa-historia__brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.copa-historia__brand img:first-child {
  height: 26px;
  width: auto;
}

.copa-historia__brand img:last-child {
  height: 40px;
  width: auto;
}

.copa-historia__divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.4);
}

.copa-historia__eyebrow {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.copa-historia__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0;
}

.copa-historia__text {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.copa-historia__action {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  background: #FFFFFF;
  color: var(--stihl-orange-700);
  border: 0;
  font-weight: 800;
}

.copa-historia__action:hover {
  background: rgba(255, 255, 255, 0.9);
}
