.banner {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url('./../images/manha.png');
  background-size: cover;
  background-position: center;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Cor do fundo escurecido */
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff; /* Cor do texto */
}

.banner-content h1 {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}

/* Imagens das páginas */

.waffles {
  background-image: url('./../images/waffles.png');
}

.chocolate-quente {
  background-image: url('./../images/chocolate-quente.png');
}

.panqueca {
  background-image: url('./../images/panqueca.png');
}

.receitas {
  background-image: url('./../images/cafe-da-manha.png');
}