/* El contenido principal nunca depende de JavaScript para ser visible. */
.reveal,
.reveal.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.promo-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: -10px 0 26px;
}

.promo-offer {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 12px 13px;
  overflow: hidden;
  border: 1px solid rgba(69, 202, 255, 0.52);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 68, 129, 0.92), rgba(7, 30, 54, 0.96));
  box-shadow: 0 12px 32px rgba(12, 113, 225, 0.2), inset 0 1px rgba(255, 255, 255, 0.08);
}

.promo-offer::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -45px;
  top: -48px;
  border-radius: 50%;
  background: rgba(55, 216, 255, 0.2);
  filter: blur(12px);
}

.promo-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #38d9ff, #1681ff);
  color: white;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(28, 151, 255, 0.32);
}

.promo-offer span:nth-child(2) {
  min-width: 0;
}

.promo-offer small,
.promo-offer strong {
  display: block;
}

.promo-offer small {
  margin-bottom: 2px;
  color: #68d6ff;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.promo-offer strong {
  color: #f5faff;
  font-size: 12px;
  line-height: 1.2;
}

.promo-offer b {
  position: relative;
  padding: 6px 7px;
  border-radius: 7px;
  background: #35e49e;
  color: #043b2a;
  font-size: 9px;
  letter-spacing: 0.06em;
  box-shadow: 0 0 18px rgba(53, 228, 158, 0.28);
}

.service-promo {
  margin-top: 16px;
  padding: 10px 11px;
  border: 1px solid rgba(55, 216, 255, 0.25);
  border-radius: 9px;
  background: rgba(34, 142, 255, 0.11);
  color: #c9ecff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.service-promo span {
  display: inline-block;
  margin-right: 5px;
  padding: 3px 5px;
  border-radius: 5px;
  background: #35e49e;
  color: #053b2a;
  font-size: 7px;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .promo-offers {
    margin-inline: auto;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .promo-offers {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 0;
  }

  .promo-offer {
    min-height: 68px;
  }
}
