body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

header {
  background-color: #181f39;
  padding: 15px;
  text-align: center;
}

header img {
  height: 60px;
}

main {
  padding: 40px 20px;
  text-align: center;
}

main h1 {
  color: #181f39;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.subtitulo {
  margin-bottom: 30px;
  color: #555;
  font-size: 18px;
}

.productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.tarjeta {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 220px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tarjeta img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.tarjeta h3 {
  font-size: 1.1rem;
  color: #181f39;
  margin: 10px 0 5px;
}

.tarjeta p {
  font-size: 1rem;
  color: #ed8015;
  margin-bottom: 10px;
  font-weight: bold;
}

.tarjeta a {
  display: inline-block;
  padding: 8px 12px;
  background-color: #181f39;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.2s;
}

.tarjeta a:hover {
  background-color: #ed8015;
}

/* Responsive para móviles */
@media (max-width: 600px) {
  .productos {
    flex-direction: column;
    align-items: center;
  }

  .tarjeta {
    width: 90%;
  }
}
