/* Fuente y reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Anonymous Pro', monospace;
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;
}

/* Header */
.hero {
  background: #001D51
  ;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* Secciones */
.categoria {
  padding: 3rem 2rem;
  text-align: center;
  background: #fff;
  margin: 2rem auto;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.categoria h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.categoria p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Carrusel */
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

/* Botones carrusel */
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.carousel button:hover {
  background: rgba(0,0,0,0.8);
}

.carousel .prev {
  left: 10px;
}

.carousel .next {
  right: 10px;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}
