.menu {
  background-image: url("../src/pizza_brocolis_bacon_contato.png");
  height: 110vh;
  background-size: cover;
  background-position-y: center;
  background-repeat: no-repeat;
  text-align: left;
}

.div_menu {
  margin-left: 8rem;
  padding-top: 10rem;
}

.div_menu h1 {
  font-family: var(--fonte-terciaria);
  font-size: 8rem;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.75);
}

.div_menu img {
  width: 212px;
  margin-left: 2rem;
}

/* Nossa Unidade */

.sobre_unidade {
  display: flex;
  justify-content: space-around;
}

.informacoes_nossa-unidade h3 {
  font-family: var(--fonte-secundaria);
  font-weight: 600;
  font-size: 36px;
}

.informacoes_nossa-unidade a {
  color: var(--cinza);
}

.informacoes_nossa-unidade p,
.link_unidade {
  font-family: var(--fonte-secundaria);
  font-weight: 300;
  color: var(--cinza-claro);

  margin-top: 1rem;
}

.sobre_unidade {
  height: 550px;
}

.informacoes_nossa-unidade {
  height: 450px;
  padding: 25px;
}

.paragrafo_nossa-unidade {
  margin-bottom: 2rem;
}

/* Qual seu pedido hoje */

.qual_seu_pedido_hoje {
  padding: 5rem 0;
  background-color: var(--laranja-claro);
  text-align: center;
}

.qual_seu_pedido_hoje h2 {
  color: black;
  font-family: var(--fonte-secundaria);
  font-size: 3.5rem;
  margin-bottom: 3rem;
}

.div_pedido {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.qual_pedido {
  width: 30%;
  margin: 2rem 3rem;
}

.qual_pedido h3 {
  font-family: var(--fonte-terciaria);
  color: var(--laranja);
  font-weight: 400;
  font-size: 3rem;
}

.img_barra {
  height: 14px;
  margin: 1rem 0;
}

.botao {
  margin-top: 2rem;
}

/* Faça seu pedido */
.faca_seu_pedido {
  text-align: center;
  background-image: url("../src/folha_fundo.png");
  background-attachment: fixed;
  background-size: auto;
  background-repeat: no-repeat;
}

.faca_seu_pedido h2 {
  font-size: 5rem;
  font-family: var(--fonte-terciaria);
  color: var(--laranja);
}

.faca_seu_pedido p {
  font-family: var(--fonte-secundaria);
  font-size: 2.25rem;
  font-weight: 200;

  margin-top: 2rem;
}

.formas_de_pedido {
  display: flex;
  justify-content: space-around;
  padding: 5rem 5rem;
}

.formas_de_pedido p {
  font-size: 1.5rem;
  color: black;
}

/* Botão */

button {
  border: var(--laranja);
  border-radius: 7px;
  font-weight: 500;
}

/* Teste ChatGPT */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: white;
  background-image: url(../src/folha_fundo.png);
  background-size: cover;
  padding: 20px;
  max-width: 600px;
  width: 90%;
  border-radius: 10px;
  position: relative;
}

.fechar-modal {
  position: sticky; /* Fixa o botão ao rolar */
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 34px;
  cursor: pointer;
  z-index: 10;
  text-align: right;
  display: block;
  margin-left: auto;
}

.modal-content {
  max-height: 80vh;
  overflow-y: scroll;
}

/* Estilização Cardápio */

#titulo-modal {
  font-family: var(--fonte-terciaria);
  font-size: 3rem;
  color: var(--laranja);
  text-align: center;
  padding-bottom: 2rem;
}

hr {
  margin-bottom: 2rem;
}

.item-cardapio h4 {
  font-family: var(--fonte-secundaria);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0.75rem 0;
}

.item-cardapio p {
  font-family: var(--fonte-secundaria);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

#conteudo-cardapio {
  overflow-y: auto;
}

#pizza__descricao_cardapio {
  font-family: var(--fonte-secundaria);
  color: var(--cinza);
  font-size: 1rem;
}

#pizza__preco {
  font-family: var(--fonte-secundaria);
  font-weight: 600;
  font-size: 1.1em;
  color: var(--laranja-escuro);
}

/* Botões Flutuantes */

.botoes-flutuantes {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px;
  margin-top: 20px;
  z-index: 5;
}

.botoes-flutuantes a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  transition: background 0.3s ease;
}

.botoes-flutuantes a:hover {
  opacity: 0.9;
}

.botoes-flutuantes img {
  width: 50px;
}

/* =============================
   📱 Mobile (até 768px)
   ============================= */
@media (max-width: 768px) {
  /* Titulo H1 */
  .div_menu {
    margin-left: 4rem;
  }

  .div_menu h1 {
    font-size: 6rem;
  }

  /* Nossa Unidade */

  .nossa_unidade {
    padding: 3rem 0;
    height: 100vh;
  }

  .nossa_unidade h2 {
    font-size: 4rem;
  }

  .informacoes_nossa-unidade h3 {
    font-size: 29px;
  }

  .sobre_unidade {
    padding: 0 1rem;
  }

  .maps_unidade iframe {
    width: 450px;
    height: 350px;
    margin-top: 3rem;
  }

  .informacoes_nossa-unidade p {
    margin-top: 0.5rem;
  }

  /* Qual seu pedido */

  .qual_seu_pedido_hoje h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .qual_seu_pedido_hoje h3 {
    font-size: 2.5rem;
  }

  .qual_pedido {
    width: 45%;
    margin: 2rem 0rem;
  }

  /* Faça seu pedido */

  .faca_seu_pedido {
    padding-top: 2rem;
  }

  .faca_seu_pedido h2 {
    font-size: 3.25rem;
  }

  .faca_seu_pedido p {
    font-size: 1.5rem;
    margin-top: 1rem;
  }

  .formas_de_pedido {
    padding: 3.5rem 0;
  }

  /* Formas de Pedido */

  .formas_de_pedido {
    flex-wrap: wrap;
  }

  .formas_de_pedido img {
    height: 100px;
  }
}

/* =============================
   📱 Mobile (até 425px)
   ============================= */
@media (max-width: 425px) {
  .sobre_unidade {
    width: 425px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }

  .maps_unidade iframe {
    width: 400px;
    height: 300px;
    margin-top: 0;
  }

  .nossa_unidade {
    height: auto;
  }

  .informacoes_nossa-unidade {
    height: auto;
  }

  .qual_pedido {
    width: 60%;
  }

  .botao {
    padding: 15px 30px;
    font-size: 1rem;
  }

  /* Faça seu Pedido */

  .formas_de_pedido {
    display: flex;
    flex-wrap: wrap;
  }

  .formas_de_pedido img {
    height: 120px;
  }

  .formas_de_pedido a {
    padding: 2rem 5rem;
  }
}

/* =============================
   📱 Mobile (até 375px)
   ============================= */
@media (max-width: 375px) {
  .div_menu {
    margin-left: 2rem;
  }

  .div_menu h1 {
    font-size: 5rem;
  }

  .div_menu img {
    margin-left: 1.5rem;
    width: 180px;
  }

  .sobre_unidade {
    width: auto;
  }

  .maps_unidade iframe {
    width: 350px;
  }
}

/* =============================
   📱 Mobile (até 325px)
   ============================= */
@media (max-width: 325px) {
  .maps_unidade iframe {
    width: 300px;
  }

  .qual_pedido {
    width: 90%;
  }

  .formas_de_pedido img {
    height: 100px;
  }
}
