/* /assets/css/offer.css */

.offerWrap{
  padding: 22px 0 50px;
}

.offerHero__grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}

@media (max-width: 980px){
  .offerHero__grid{ grid-template-columns: 1fr; }
}

.offerCard{ padding: 22px; }
.offerSide{ padding: 0; position: sticky; top: 14px; height: fit-content; }
@media (max-width: 980px){ .offerSide{ position: static; } }

.offerTop{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  margin-bottom: 12px;
}

.offerTitle{
  margin: 0 0 10px;
  line-height: 1.08;
}

.offerLead{
  margin: 0 0 18px;
}

.offerBullets{
  display:grid;
  gap: 12px;
}
@media (max-width: 820px){
  .offerBullets{ grid-template-columns: 1fr; }
}

.offerMini{
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.offerSteps{
  margin: 0;
  padding-left: 18px;
}
.offerSteps li{ margin: 8px 0; }

.offerSide__head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.offerTimer{
  text-align:right;
}
.offerTimer__big{
  display:block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .2px;
}
.offerTimer__small{
  display:block;
  margin-top: 4px;
  font-size: 12px;
  opacity: .75;
}

.offerPriceBox{
  margin-top: 0;
  padding: 30px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.offerPriceBox .pill{
  font-size: 15px;
}
.offerOld{
  font-size: 15px;
  opacity: .6;
  text-decoration: line-through;
}

.offerSave{
  margin-top: 6px;
  font-size: 13px;
  opacity: .9;
}

.offerCtas{
  display:grid;
  gap: 10px;
  margin-top: 16px;
}

.is-disabled{
  opacity: .6;
  cursor: not-allowed;
}

.offerFine{
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.offerTrust{
  margin-top: 12px;
}

.offerFaq{
  margin-top: 14px;
}

.offerFaq__grid{
  display:grid;
  grid-template-columns: '1fr 1fr 1fr';
  gap: 12px;
}
@media (max-width: 980px){
  .offerFaq__grid{ grid-template-columns: '1fr'; }
}

.offerH3{
  margin: 0 0 6px;
  font-size: 15px;
}
.icon_secure{
  width: 20px;
  height: 20px;
  margin-right: 5px;
  color: rgb(91 173 104 / 92%);
}
/* ===== Countdown banner (full width) ===== */
.offerBanner{
  position: relative;
  top: 0;              /* si tu header ya es sticky, cambia a top: 64px aprox */
  z-index: 60;
  width: 100%;
  background: linear-gradient(135deg, rgba(255,196,87,.95), rgba(255,126,62,.88));
  border-bottom: 1px solid rgba(255,196,87,.35);
  color: #1a1206;
  text-decoration: none;
}

.offerBanner .btn.ghost{
  background: unset;

}
.offerBanner__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 18px;
}

.offerBanner__left{
  display:flex;
  align-items:baseline;
  gap: 5px;
  flex-wrap: wrap;
}

.offerBanner__left b{
  font-weight: 900;
  letter-spacing: -.2px;
}

.offerBanner__left span{
  opacity: .85;
  font-size: 13px;
  font-weight: 700;
}

.offerBanner__right{
  display:flex;
  align-items:baseline;
  gap: 10px;
  text-align:right;
  min-width: fit-content;
}

.offerBanner__big{
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .2px;
}

.offerBanner__small{
  font-weight: 700;
  font-size: 12px;
  opacity: .85;
}

/* estado expirado */
/*
.offerBanner--expired{
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.10);
  color: rgba(229,231,235,.92);
  display: none!important;
}

.offerBanner--expired .offerBanner__left span{
  color: rgba(229,231,235,.72);
}*/

/* Mobile */
@media (max-width: 560px){
  .offerBanner__inner{ padding: 10px 14px; }
  .offerBanner__right{ gap: 8px; }
  .offerBanner__small{ display:none; } /* en móvil, solo big */
}

/* Progress states (activar / inicio proyecto) */
.offerProgress .tick{
  position: relative;
}

.tick--done{
  background: rgba(34,197,94,.18);
  border-color: rgba(34,197,94,.35);
}
.tick--done svg{ fill: var(--accent); }

.tick--doing{
  background: rgba(96,165,250,.12);
  border-color: rgba(96,165,250,.30);
}
.tick--doing .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(96,165,250,.95);
  display: inline-block;
  animation: wzPulse 1.1s ease-in-out infinite;
}
@keyframes wzPulse{
  0%,100%{ transform: scale(.85); opacity: .55; }
  50%{ transform: scale(1); opacity: 1; }
}

.tick--todo{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
}
.offerPriceBox .priceMain strong {
    color: rgb(224 174 123 / 89%);
    margin-left:35px;
}
