/* Bonos destacados */
.bonos-outer{position: relative;margin-bottom: 14px;
}
.bonos-outer.is-fixed-placeholder{/* la altura se pone en línea por JS: height: Xpx; */}
.bonos-inner{background: #ffffffb0; /* velo blanco */z-index: 1000;will-change: transform;}
#bonosdestacados{display: flex;gap: .6rem;}
#bonosdestacados .bono{ cursor:pointer; }
#bonosdestacados .bono{
  --bono-text: #000;--bono-muted: #000;--bono-radius: 8px;--bono-shadow: 0 1px 9px #ff6900;--bono-bg: #eee;
  margin: 1rem 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 16px;
  border-radius: var(--bono-radius);
  background: var(--bono-bg);
  color: var(--bono-text);
  box-shadow: var(--bono-shadow);
  overflow: hidden;
}
#bonosdestacados .bono .boxOverContent__banner--content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
#bonosdestacados .bono .icon-img {
  display: block;
  max-width: 120px;
  height: auto;
  margin: 0 -10px;
}
#bonosdestacados .bono .cantidad-text {
  font-size: .945rem;
  line-height: 1.1;
  font-weight: 600;
  min-height: 34px;
  text-align: justify;
}
#bonosdestacados .bono .terminos-text {
  font-size: .6rem;
  line-height: 1;
  color: var(--bono-muted);
  max-width: 60ch;
  height: 10px;
}
#bonosdestacados .bono .btn-visitar {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px;
  background: #ff6900;
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  box-shadow: 0 4px 0 rgba(0,0,0,.12);
}
#bonosdestacados .bono .btn-visitar:hover { transform: translateY(-1px); filter: brightness(1.03); }
#bonosdestacados .bono .btn-visitar:active { transform: translateY(0); box-shadow: 0 2px 0 rgba(0,0,0,.12); }
#bonosdestacados .bono a.btn-visitar {
  padding: 6px 12px;
  font-weight: 600;
  font-size: .75rem;
  max-width: 165px;
  margin: 0 auto;
}
@media (max-width: 767.98px){
  #bonosdestacados .bono.ocultas{ display: none !important; }
  .bono .icon-img { max-width: 110px; }
  .bono .cantidad-text{ min-height: inherit; }
  .bono{ padding: 10px; border-radius: 12px; }
  body .search-fab{ top: auto; bottom: 135px; right: 6px; }
  body #bonosdestacados .bono .cantidad-text{min-height: inherit;}
}
