/* Fuente global Arial */
body {
  background-color: #0f0f0f;
  font-family: Arial, sans-serif;
  padding-top: 100px; /* para navbar fija */
  margin: 0;
  box-sizing: border-box;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #1e1e1e;
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
  z-index: 1000;
}

.navbar .logo img {
  height: 80px;
  border-radius: 50%;
}

.navbar .menu {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.navbar .menu a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  text-transform: lowercase;
}

/* Títulos */
h1 {
  color: white;
  text-align: center;
  margin: 40px 0 20px;
  font-weight: normal;
}

/* Contenedores */
.contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

/* Imágenes de productos */
.izquierda, .otros, .colores {
  max-width: 300px;
  width: 90%;
  height: auto;
  border-radius: 4px;
}

/* PDFs embebidos */
.diseño {
  width: 300px;
  height: 215px;
  border-radius: 4px;
}

/* Color Options */
.colores {
  border-radius: 4px;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .navbar .menu {
    flex-direction: column;
    gap: 10px;
  }
}
.colores:hover, .diseño:hover {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}