.products {
  max-width: 1200px;
  margin: 20px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.products-title {
  color: #006600;
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 25px;
}

.products-description {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
  padding: 0 20px;
  font-size: 1.1em;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style-type: none;
  padding: 0;
}

.product-item {
  padding: 15px;
  background-color: #e9e9e9;
  border-left: 1px solid #006600;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  transition: transform 0.2s;
}

.product-item:hover {
  transform: scale(1.02);
}

.product-item img {
  max-width: 200px;
  /* Tamaño fijo para uniformidad */
  height: 200px;
  /* Altura fija para igualar todas las imágenes */
  object-fit: cover;
  /* Recorta la imagen para encajar sin distorsionar */
  margin-bottom: 10px;
  border-radius: 5px;
}

.product-item h3 {
  font-size: 1.2em;
  margin: 10px 0;
  font-weight: bold;
  text-align: center;
}

.product-item p {
  margin: 0 0 15px 0;
  font-size: 1em;
  line-height: 1.5;
  text-align: center;
}

.product-item button {
  background-color: #006600;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}

.product-item button:hover {
  background-color: #004d00;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 5px;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Media Queries */
@media (max-width: 768px) {
  .products {
    margin: 10px;
    padding: 20px;
  }

  .products-title {
    font-size: 2em;
  }

  .products-description {
    font-size: 1em;
  }

  .product-item {
    width: 200px;
    padding: 10px;
  }

  .product-item img {
    max-width: 180px;
    height: 180px;
  }

  .product-item h3 {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .products {
    margin: 5px;
    padding: 15px;
  }

  .products-title {
    font-size: 1.5em;
  }

  .products-description {
    font-size: 0.9em;
  }

  .product-list {
    flex-direction: column;
    align-items: center;
  }

  .product-item {
    width: 100%;
    max-width: 250px;
    padding: 10px;
  }

  .product-item img {
    max-width: 200px;
    height: 200px;
  }

  .product-item h3 {
    font-size: 1em;
  }

  .modal-content {
    margin: 20% auto;
    width: 90%;
  }
}
