* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  background-color: #000;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

/* CONTENEDOR GENERAL */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
}

/* TÍTULO PRINCIPAL */
h1 {
  font-size: 3.5rem;
  color: #ff2c00;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 400;
}

/* TARJETAS DE SUPLEMENTOS */
.suplementos-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.suplemento-card {
  background-color: #222;
  border-radius: 10px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.suplemento-card:hover {
  transform: scale(1.05);
}

.suplemento-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.suplemento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
}

.suplemento-card p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.suplemento-card .precio {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: bold;
}

/* BOTÓN */
.suplemento-card a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff2c00;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.suplemento-card a:hover {
  background-color: #e62400;
}

