/* ==========================================================================
   web.css — Pack Web (web básica estática)
   ========================================================================== */
@keyframes banner-shine{0%{background-position:0% 0}100%{background-position:200% 0}}
@keyframes slots-pulse{0%,100%{opacity:1}50%{opacity:.7}}

.web-offer{
  position:relative;overflow:hidden;border-radius:20px;padding:42px 44px;
  background:linear-gradient(120deg,var(--orange-deep),var(--orange) 55%,var(--orange-deep));
  background-size:220% 100%;animation:banner-shine 5s linear infinite,glow-pulse 2.6s ease-in-out infinite;
  color:#fff;display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap;
  border:1.5px solid rgba(255,255,255,0.5);
}
.wo-exclusive{
  position:absolute;top:18px;right:-38px;transform:rotate(38deg);z-index:2;
  background:#08090c;color:#fff;font-family:'IBM Plex Mono',monospace;font-weight:700;font-size:11px;
  padding:5px 46px;letter-spacing:.04em;
}
.wo-main{position:relative;z-index:1}
.web-offer-badge{
  display:inline-flex;align-items:center;gap:8px;background:#fff;color:var(--orange-deep);
  font-family:'IBM Plex Mono',monospace;font-weight:700;font-size:12px;letter-spacing:.04em;
  padding:8px 16px;border-radius:999px;margin-bottom:14px;
}
.web-offer h2{font-size:32px;color:#fff;margin-bottom:8px}
.web-offer .price-row{display:flex;align-items:baseline;gap:14px;flex-wrap:wrap;margin-bottom:10px}
.web-offer .price-old{font-size:19px;text-decoration:line-through;opacity:.6;color:rgba(255,255,255,0.8)}
.web-offer .price-new{font-family:'Bricolage Grotesque',sans-serif;font-size:50px;font-weight:800;color:#fff;text-shadow:0 4px 20px rgba(0,0,0,0.15)}
.web-offer .price-save{
  background:#16d97a;color:#07301c;font-family:'IBM Plex Mono',monospace;font-weight:800;font-size:13px;
  padding:5px 12px;border-radius:999px;align-self:center;
}
.web-offer .urgency{font-size:13px;font-weight:600;display:flex;align-items:center;gap:8px;margin-bottom:16px}
.web-offer .urgency::before{content:'⏱️'}
.wo-addon{
  display:flex;align-items:center;gap:9px;font-size:13px;font-weight:600;
  background:rgba(0,0,0,0.18);border-radius:10px;padding:10px 14px;margin-bottom:20px;
  max-width:340px;cursor:pointer;
}
.wo-addon input{width:16px;height:16px;accent-color:#fff;cursor:pointer;flex-shrink:0}
.wo-slots{max-width:280px}
.wo-slots-top{display:flex;justify-content:space-between;font-family:'IBM Plex Mono',monospace;font-size:11px;margin-bottom:7px;opacity:.9}
.wo-slots-track{height:8px;border-radius:999px;background:rgba(0,0,0,0.25);overflow:hidden}
.wo-slots-fill{height:100%;width:80%;background:#fff;border-radius:999px;animation:slots-pulse 1.8s ease-in-out infinite}
@media (max-width:900px){
  .web-offer{flex-direction:column;align-items:flex-start;padding:34px 26px}
  .wo-cta{width:100%;justify-content:center}
  .wo-exclusive{display:none}
}

/* ---- Qué incluye / no incluye ---- */
.web-includes{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:40px}
.web-includes .wi-card{border:1px solid var(--line);border-radius:16px;padding:28px}
.web-includes .wi-card h3{font-size:16px;margin-bottom:16px;display:flex;align-items:center;gap:8px}
.web-includes ul{display:flex;flex-direction:column;gap:11px}
.web-includes li{font-size:14px;display:flex;gap:9px;color:var(--ink-soft)}
.web-includes li::before{content:'✓';color:var(--orange-soft);font-weight:700;flex-shrink:0}
.web-includes .wi-not li::before{content:'—';color:var(--ink-soft)}
@media (max-width:700px){.web-includes{grid-template-columns:1fr}}

/* ---- Proceso ---- */
.process-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;counter-reset:step}
.process-step{border:1px solid var(--line);border-radius:16px;padding:24px 20px}
.process-step::before{
  counter-increment:step;content:counter(step);
  font-family:'Bricolage Grotesque',sans-serif;font-weight:800;font-size:26px;color:var(--orange-soft);
  display:block;margin-bottom:12px;
}
.process-step h4{font-size:15px;margin-bottom:8px}
.process-step p{font-size:13px;color:var(--ink-soft);line-height:1.5}
@media (max-width:900px){.process-steps{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.process-steps{grid-template-columns:1fr}}
