* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* HEADER FIJO */
.encabezado {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: red;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.contenido-encabezado {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  height: 50px;
}

/* BOTÓN HAMBURGUESA */
.hamburguesa {
  position: absolute;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

/* MENÚ LATERAL DESPLEGABLE */
.menu-lateral {
  font-family:  sans-serif;
  height: 100%;
  width: 250px;
  background-color: #000000; /* CAMBIA EL COLOR DE FONDO ACÁ */
  position: fixed;
  top: 0;
  right: -250px;
  transition: right 0.3s ease;
  z-index: 9999;
  padding-top: 60px;
}

.menu-lateral a {
  padding: 15px 25px;
  display: block;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.menu-lateral a:hover {
  background-color: #850000; /* COLOR AL PASAR EL MOUSE */
}

.menu-lateral .cerrar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

.seccion-subastas {
  padding: 0px 20px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  background-color: #fff;
}

.cartel-subastas {
  background-color: #eeeeee;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.432);
}

.titulo-subastas {
  font-family: 'Press Start 2P', sans-serif;
  font-size: 20px;
  color: #111;
  margin-bottom: 20px;
}

.subtitulo-subastas {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5); /* opacidad baja */
  font-weight: bold;
}

/* SECCIÓN COLECCIONES */
.colecciones {
  padding: 40px 20px;
  background-color: #f2f2f2;
}

.grid-articulos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive: 2 columnas en celular */
@media (max-width: 768px) {
  .grid-articulos {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Cada artículo */
.articulo {
  background-color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: #111;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.articulo:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.322);
}

.articulo img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.articulo h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.articulo .subtitulo {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.articulo .precio {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

