/*Scrollbar design*/
.barra-diseño::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

.barra-diseño::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.barra-diseño::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #00548e;
}

.barra {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 80px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  width: 100%;
  height: 112px;
  background: linear-gradient(90deg, #03547e 0%, #01558c 51%, #0699d6 100%);
}

.contenedor {
  max-width: 1440px;
  width: 100%;
  padding: 2rem 4rem;
}

.tarjeta-container {
  width: 265px;
  height: 480px;
  border-radius: 18px;
  border: 1px solid #c6c6c6;
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}

.tarjeta-img {
  width: 100%;
  height: 196px;
  border-radius: 18px 18px 0 0;
}

.tarjeta-title {
  text-align: center;
  color: #00548e;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-top: 10px;
  margin-bottom: 4px;
}

.tarjeta-separador {
  width: 221px;
  height: 1px;
  background: #00548e;
}

.tarjeta-text {
  width: 221px;
  height: 110px;
  color: #747474;
  font-family: AvenirHeavy, sans-serif;
  font-size: 13px;
  text-align: start;
  margin: 11px 17px 0 17px;
  overflow: auto;
}

.tarjeta-precio {
  height: 41px;
  color: #00a490;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-top: 44px;
  position: absolute;
  bottom: 55px;
  /*overflow: auto;*/
}

.tarjeta-boton {
  width: 127px;
  height: 27px;
  border-radius: 23px;
  background: rgba(240, 127, 30, 0.95);
  color: white;
  position: absolute;
  bottom: 20px;
  left: 25%;
}

@media (max-width: 1440px) {
  .barra {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .barra {
    font-size: 39px;
  }
}

@media (max-width: 480px) {
  .barra {
    font-size: 36px;
  }
}
