body {
  font-family: minhaFonte2;
}

@font-face {
  font-family: minhaFonte;
  src: url(../fonts/Great_Vibes/GreatVibes-Regular.ttf);
}

@font-face {
  font-family: minhaFonte2;
  src: url(../fonts/Roboto/Roboto-Bold.ttf);
}

.titulo {
  font-family: minhaFonte;
  font-size: 80px;
}

.cabecalho {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../images/fundo-parede.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  gap: 70px;
  justify-content: center;
}

.logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-top: 10px;
}

.btn-seta {
  background-color: #f1ecff;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 0;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.btn-seta.btn-voltar {
  transform: rotateY(180deg);
}

.btn-seta:hover {
  background-color: yellowgreen;
}

.restaurante {
  display: flex;
  background-image: url(../images/fundo-restaurante.jpg);
  background-repeat: no-repeat;
  height: 100vh;
  background-size: cover;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.lista-pratos {
  position: relative;
  width: 210px;
  height: 420px;
  display: flex;
  justify-content: center;
}

.dia-da-semana {
  background-color: yellowgreen;
  border-radius: 10px;
  width: 100%;
  text-align: center;
}

.cartao-0 {
  opacity: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
}

.cartao-1 {
  opacity: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
}

.cartao-2 {
  opacity: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
}
.cartao-0.selecionado-0 {
  opacity: 1;
  z-index: 1;
}

.cartao-1.selecionado-1 {
  opacity: 1;
  z-index: 1;
}

.cartao-2.selecionado-2 {
  opacity: 1;
  z-index: 1;
}

.pizzaria {
  display: flex;
  background-image: url(../images/fundo-pizzaria.jpg);
  background-repeat: no-repeat;
  height: 100vh;
  background-size: cover;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.japolis {
  display: flex;
  background-image: url(../images/fundo-japolis.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  height: 100vh;
  background-size: cover;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.rodape {
  background-color: #2b2d42;
  color: white;
}

.redes-sociais {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.imagens-redes-sociais {
  width: 50px;
}

.creditos {
  padding: 10px;
  text-align: center;
}
