     * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        list-style: none;
        font-family: sans-serif;
        text-decoration: none;
    }

 
     .banner-gym {
      background-image: url('/fotos/nutricion/banner.jpg');
      background-size: cover;
      width: 100%;
      background-position: center;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    }

    .banner-gym h1 {
      font-size: 3.5rem;
      text-align: center;
      padding: 0 20px;
      max-width: 900px;
    }
 




  .planes-alimentacion {
  padding: 40px 20px;
  text-align: center;
}
.planes-h2{
  color: #fff;
  padding-top: 50px;
}
.planes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 50px;
  justify-content: center;
}
.plan {
  width: 400px;
  background: #f6f6f6;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 0 10px #ccc;
}
.plan img {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}
.plan h3 {
  margin-top: 10px;
}

.boton{
  padding-top: 30px;
}

.btn-saludable{
  margin-bottom: 30px;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 10px;
  background: green;
  border: none;
  color: #fff;
  font-size: 17px;
}


.tips-nutricion {
  background-color: #eaffea;
  padding: 40px 20px;
  text-align: center;
}
.tips-nutricion ul {
  list-style: none;
  padding: 0;
}
.tips-nutricion li {
  margin-bottom: 10px;
}
.tips-nutricion button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #27ae60;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}



/* Recetas */


.receta-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.receta {
  position: relative;
  padding: 10px;
  border-radius: 10px;
  background: #f9f9f9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.recetas h2{
  color: #fff;
  text-align: center;
  padding-top: 200px;
}


.receta.destacada {
  border: 2px solid #4CAF50;
  background-color: #e8fbe8;
}

.etiqueta {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #4CAF50;
  color: white;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
}

.subtitulo {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.filtros {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.filtros button {
  margin-right: 10px;
  padding: 18px 26px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 17px;
}

.filtros button:hover {
  background-color: #388e3c;
}

