/* =========================
   CTA STRIP (BANDA NEGRA)
========================= */
.cta-strip{
  position: relative;
  background: #0c0c0f;
  padding: 22px 16px;
  overflow: hidden;
}

/* líneas finas como en la imagen */
.cta-strip::before,
.cta-strip::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height: 1px;
  background: rgba(255,255,255,.22);
}
.cta-strip::before{ top:0; }
.cta-strip::after{ bottom:0; }

.cta-strip__inner{
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  font-family: "Montserrat", system-ui, Arial, sans-serif;
}

.cta-strip__title{
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.15;
}

.cta-strip__sub{
  margin: 6px 0 0;
  color: rgba(255,255,255,.78);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
}

/* Opcional: botones */
.cta-strip__actions{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cta-strip__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid #7CFF4E;
  color: #7CFF4E;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  transition: .2s ease;
}
.cta-strip__btn:hover{
  background:#7CFF4E;
  color:#0c0c0f;
  transform: translateY(-1px);
}
.cta-strip__btn--alt{
  border-color:#FFB347;
  color:#FFB347;
}
.cta-strip__btn--alt:hover{
  background:#FFB347;
  color:#0c0c0f;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px){
  .cta-strip{ padding: 20px 14px; }
  .cta-strip__title{ font-size: 20px; }
  .cta-strip__sub{ font-size: 10px; }
}
@media (max-width: 425px){
  .cta-strip{ padding: 18px 12px; }
  .cta-strip__title{ font-size: 18px; }
  .cta-strip__sub{
    font-size: 10px;
    letter-spacing: .7px;
    line-height: 1.35;
  }
}
