/* PRODUCTO DETALLE */
.producto-detalle {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  text-align: center;
}

.producto-detalle h1 {
  font-size: 2.5rem;
  color: #002b8a;
  margin-bottom: 1rem;
}

.descripcion-secundaria {
  font-size: 1rem;
  color: #555;
  margin-top: -0.5rem;
  margin-bottom: 2.5rem;
}


.producto-detalle .descripcion {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
}

/* Imagen principal centrada */
.imagen-principal {
  text-align: center;
  margin-bottom: 2rem;
}

.imagen-principal img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* CARRUSEL */
.carrusel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  margin-bottom: 3rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.carrusel img {
  max-width: 300px;
  border-radius: 10px;
  scroll-snap-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* CARACTERÍSTICAS CLÍNICAS */
.caracteristicas {
  text-align: left;
  margin-bottom: 3rem;
}

.caracteristicas h2 {
  color: #002b8a;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.caracteristicas ul {
  list-style: disc inside;
  padding-left: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.caracteristicas li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #333;
}

/* BOTONES DE ACCIÓN */
.acciones-producto {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.acciones-producto .boton {
  background-color: #002b8a;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.acciones-producto .boton:hover {
  background-color: #001f60;
}

.acciones-producto .regresar {
  background-color: #777;
}

.acciones-producto .regresar:hover {
  background-color: #555;
}

.imagen-tabla {
  text-align: center;
  margin-bottom: 2.5rem;
}

.imagen-tabla h3 {
  font-size: 1.3rem;
  color: #002b8a;
  margin-bottom: 1rem;
  text-transform: none; 
}

.imagen-tabla img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.galeria-cables {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.galeria-cables img {
  max-width: 200px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .producto-detalle h1 {
    font-size: 2rem;
  }

  .caracteristicas ul {
    padding-left: 0;
  }

  .carrusel {
    flex-direction: column;
    align-items: center;
  }
}
