.gb-headline.gb-headline-c579e495.gb-headline-text {
  font-size: 40px;
  font-weight: bold;
}

.cegg-last-update-row.cegg-mb15 {
  display: none;
}

.text-muted {
  display: none;
}

body {
  font-family: Arial, sans-serif;
  margin: 20px;
}

.producto-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.imagen {
  flex: 1;
  max-height: 450px;
  /* Aumentar el tamaño de la imagen */
}

.imagen img {
  width: 100%;
  height: auto;
  /* Permitir que la altura se ajuste automáticamente */
  aspect-ratio: 1 / 1;
  /* Mantener la imagen cuadrada */
  border: 1px solid #ccc;
  object-fit: contain;
  /* Asegurar que la imagen se ajuste sin recortarse */
}

.info {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.titulo {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: left;
}

.detalle {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: left;
}

.datos {
  font-size: 16px;
  margin-bottom: 20px;
}

.datos span {
  margin-right: 15px;
}

.boton {
  display: block;
  background-color: #d4a659;
  color: white;
  padding: 15px 60px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  text-align: center;
  margin: 20px auto;
  width: 80%;
  /* Ajustar para que el botón sea más ancho */
  max-width: 500px;
  /* Limitar el ancho máximo del botón */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, background-color 0.2s;
}

.boton:hover {
  transform: scale(1.05);
  background-color: #c49a54;
}

.descripcion {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .producto-container {
    flex-direction: column;
  }

  .boton {
    width: 100%;
    text-align: center;
  }
}

a {
  color: #1d5fed;
}