body {
  background-color: #1e1e1e;
  color: #eee;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 80px; /* Altura de la navbar */
}

.hero {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  border-bottom: 2px solid #0ff;
}


 /* .card.producto {
  background-color: #2b2b2b;
  border: 1px solid #444;
  color: white;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; Esto es muy importante 
}*/
.card.producto {
  background-color: #2b2b2b;
  border: 1px solid #444;
  color: white;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 5px;
}


.card.producto:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}
/* o lo que quieras 
.card-img-top {
  height: 120px;
  object-fit: cover;
  border-bottom: 1px solid #333;
}*/
.card-img-top {
  height: auto;
  max-height: 250px; /* o lo que quieras */
  object-fit: contain; /* para que no se recorte */
  border-bottom: 1px solid #333;
  width: 100%;
}
.navbar, footer {
  background-color: #111 !important;
}

.btn-outline-info {
  color: #0ff;
  border-color: #0ff;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 10px;
}

#carouselProductos img {
  max-height: 400px;
  object-fit: cover;
}
.precio {
  /*color: #00cfff;  Celeste */
  color: #39FF14;
  font-size: 0.9rem;
}
a.text-decoration-none:hover .card {
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  transform: scale(1.02);
  transition: all 0.2s ease;
}

.sidebar {
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0 0 10px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  min-height: 250px;
}

.sidebar h5 {
  color: #00f7ff;
  margin-bottom: 20px;
  border-bottom: 1px solid #00f7ff;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.sidebar a {
  color: #ddd;
  text-decoration: none;
  display: block;
  padding: 8px 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.sidebar a:hover {
  background: #00f7ff;
  color: #000;
  font-weight: bold;
  box-shadow: 0 0 10px #00f7ff;
  transform: translateX(5px);
}
.spacer-navbar {
  margin-top: 10px;
}
