.vehicle__model {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vehicle__test-button {
  cursor: pointer;
}
.before {
  color: #868686;
}
.vehicle__price.before,
.vehicle__price.bono {
  font-size: 16px;
  font-weight: 500;
}
.vehicle__price-value.before,
.vehicle__price-value.bono {
  font-size: 22px;
  font-weight: 700;
}
.vehicle__price-value.before {
  position: relative;
  display: inline-block;
}
.vehicle__pricing-content.now {
  background-color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 12px;
}
.vehicle__price-value.now {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
}
.vehicle__price.now {
  color: var(--primary-color);
}
.vehicle__pricing-content {
  align-items: center;
  justify-content: center;
}
.vehicle__price-value.before::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #d40021;
  transform: rotate(-8deg);
  transform-origin: center;
}
.vehicle__pricing-content-border-top{
  padding-top: 1rem;
}
.vehicle__content-price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 1.5rem;
}
.vehicle__pricing-content{
    padding-block: 0;
}

/* // NUEVO */
.vehicle__banner {
  position: relative;
  overflow:hidden;
}
.vehicle__banner-picture{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:0;
}
.vehicle__banner-bg{
    width:100%;
    height:100%;
    object-fit:cover;
    /* object-position:center; */
    display:block;
}

@media (min-width: 600px) {
  .vehicle__banner,
  .aionyplus__banner {
    max-height: calc(100vh - 60px);
  }
}
@media (min-width: 1050px) {
  .vehicle__actions {
    flex-direction: row;
    margin-top: 0;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  .vehicle__pricing {
    margin-bottom: 2rem;
  }
  .vehicle__pricing-content-border-top.vehicle__model, .vehicle__pricing-content-border-bottom{
    padding-top: 0rem;
    border: none;
  }
  .vehicle__content-price {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
  }
  .vehicle__pricing-container{
    gap: 2rem;
  }
  .vehicle__pricing-container{
    max-width: 1250px;
    margin: 0 auto;
  }
  .vehicle__pricing-container .vehicle__actions{
    margin-top: 0;
  }
}
