#contactanos {
    text-align: center;
    margin-top: 20px;
    padding-left: 50px;
}

.color-fondo{
            background-image: url('../images/resource/imagesautos/fondoprecios.png'); /* Ruta de tu imagen de fondo */
            background-color: rgba(255, 255, 255, 0.5); /* Color de fondo blanco semitransparente */
            padding: 20px;
            background-size: cover;
}

.container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;


}

@media (max-width: 768px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.item {
  background-color: #f5d670;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}

img {
  max-width: 100%;
  max-height: 100px; /* Ajusta la altura máxima de las imágenes según sea necesario */
}

.price-box {
  background-color: #008dc0;
  color: white;
  border-radius: 10px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-box .name {
  font-weight: bold;
  font-size: 14px;
  color: black; /* Color del nombre */
  margin-top: 5px; /* Espacio entre el nombre y el precio */
}

.price-box .price2 {
  font-weight: bold;
  margin: 0px;
  font-size: 40px;
}

.name {
  font-weight: bold;
  font-size: 14px;
  color: black; /* Color del nombre */
  margin-top: 5px; /* Espacio entre el nombre y el precio */
}

.price-box .price {
  font-weight: bold;
  font-size: 20px;
}



