

/* Título */
.hero {
  padding: 30px 20px;
  text-align: center;
  margin-bottom: 2rem;
}

.tittle {
  font-size: 2.5rem;
  color: #0077b6;
}

/* Contenedor principal */
.detalle-producto {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  align-items: flex-start;
}

/* Galería de imágenes */
.galeria {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

#imagen-principal {
  width: 400px;
  height: 450px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}

#imagen-principal2 {
  width: 400px;
  height: 450px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}

#imagen-principal4 {
  width: 400px;
  height: 450px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}

#imagen-principal5 {
  width: 400px;
  height: 450px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}

#imagen-principal6 {
  width: 400px;
  height: 450px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}

.miniaturas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.miniaturas img {
  width: 75px;
  height: 75px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.miniaturas img:hover {
  opacity: 1;
  transform: scale(1.05);
  border-color: #0077b6;
}

/* Información */
.info {
  flex: 1;
}

.info p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Precio */
.precio {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0077b6;
  margin-top: 10px;
}

/* Botones */
.btn {
  display: inline-block;
  background: #0077b6;
  color: #fff;
  padding: 14px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 119, 182, 0.4);
}

.btn:hover {
  background: #0096c7;
  transform: translateY(-3px);
}

/* Volver */
.volver {
  display: inline-block;
  margin-top: 20px;
  color: #0077b6;
  text-decoration: none;
  font-weight: 500;
}

.volver:hover {
  color: #023e8a;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .detalle-producto {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #imagen-principal {
    width: 100%;
    max-width: 350px;
  }

  .miniaturas img {
    width: 65px;
    height: 65px;
  }
}
