:root {
  --laranja: #ff5a00;
  --preto: #050505;
  --texto: #34404a;
  --cinza: #f7f7f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--texto);
  background: #fff;
}

/* TOPO */

.topo {
  height: 64px;
  background: #DD4321;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 18px;
}

.logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.menuBtn {
  width: 40px;
  height: 40px;

  border: 1px solid #f7f7f7;
  border-radius: 8px;

  background: #F8BE41;

  color: #fff;
  font-size: 25px;

  cursor: pointer;
}

/* BANNER */

.banner {
  background: url(../img/capa.png);
  background-size: cover;
  background-position: center;

  color: #fff;
  text-align: center;

  padding: 22px 16px 44px;

  border-bottom: 5px solid var(--laranja);
}

.banner img {
  width: 210px;
  max-width: 80%;
}

.banner p {
  margin: 12px 0 0;

  color: var(--laranja);

  font-size: 30px;
}

.banner h1 {
  margin: 5px 0 0;

  font-family: Georgia, serif;

  font-size: 46px;
  line-height: 0.95;

  text-shadow: 3px 4px 0 #003c75;
}

/* ABAS */

.abas {
  position: sticky;
  top: 0;
  z-index: 10;

  background: #fff;

  display: flex;
  gap: 10px;
  justify-content: center;

  padding: 9px 10px;

  border-bottom: 1px solid #eee;
}

.aba {
  min-width: 120px;

  border: 2px solid #dfe5e9;
  border-radius: 24px;

  background: #fff;

  padding: 9px 18px;

  font-weight: bold;
  font-size: 16px;

  cursor: pointer;
}

.aba.ativa {
  border-color: var(--laranja);
  color: var(--laranja);

  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.15);
}

/* CONTAINER */

.container {
  max-width: 760px;

  margin: auto;

  padding: 14px 20px 40px;
}

.busca {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid #ddd;
  border-radius: 10px;

  margin-bottom: 18px;

  font-size: 15px;
}

.secao {
  scroll-margin-top: 76px;
}

/* TITULOS */

.tituloMenu {
  color: var(--laranja);

  font-family: Georgia, serif;

  font-size: 42px;

  margin: 22px 0;
}

.tituloCategoria {
  color: var(--laranja);

  font-size: 28px;
  font-weight: 500;

  margin: 18px 0 14px;
}

/* CARD PRODUTO */

.cardProduto {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 17px;

  align-items: center;

  background: #fff;

  border-radius: 13px;

  padding: 20px;

  margin-bottom: 28px;

  box-shadow: 0 4px 18px rgba(0,0,0,.13);

  cursor: pointer;

  transition: 0.2s;
}

.cardProduto:hover {
  transform: translateY(-3px);
}

.cardProduto img {
  width: 115px;
  height: 105px;

  object-fit: cover;

  border-radius: 5px;

  background: #eee;
}

.cardProduto h3 {
  margin: 0 0 16px;

  font-size: 20px;
  line-height: 1.05;
}

.cardProduto p {
  margin: 7px 0;

  font-size: 16px;
}

/* MENU LATERAL */

.menuLateral {
  position: fixed;

  top: 0;
  right: -290px;

  width: 280px;
  height: 100vh;

  background: #fff;

  z-index: 30;

  box-shadow: -6px 0 22px rgba(0,0,0,.2);

  padding: 22px;

  transition: .25s;
}

.menuLateral.aberto {
  right: 0;
}

.fechar {
  float: right;

  border: 0;

  background: none;

  font-size: 32px;

  cursor: pointer;
}

.abaLateral {
  width: 100%;

  padding: 14px;

  margin: 12px 0;

  border-radius: 12px;
  border: 1px solid #ddd;

  background: #fafafa;

  font-weight: bold;

  cursor: pointer;
}

/* WHATSAPP */

.whatsappMenu {
  margin-top: 24px;

  width: 100%;
  min-height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: #25D366;

  color: #fff;

  text-decoration: none;

  font-weight: bold;
  font-size: 17px;

  border-radius: 14px;

  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.whatsappMenu img {
  width: 28px;
  height: 28px;

  object-fit: contain;
}

/* MODAIS */

.modalOverlay {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,.60);

  z-index: 50;

  display: none;

  align-items: flex-end;
  justify-content: center;
}

.modalOverlay.aberto {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 540px;

  background: #fff;

  border-radius: 24px 24px 0 0;

  padding: 24px;

  max-height: 84vh;

  overflow: auto;
}

.modal h2 {
  color: var(--laranja);
}

.fecharModal {
  float: right;

  border: 0;

  background: #eee;

  border-radius: 50%;

  width: 34px;
  height: 34px;

  font-size: 22px;

  cursor: pointer;
}

/* OPÇÕES */

.opcaoProduto {
  border: 1px solid #eee;

  border-radius: 15px;

  padding: 16px;

  margin: 13px 0;

  box-shadow: 0 3px 12px rgba(0,0,0,.08);

  cursor: pointer;
}

.opcaoProduto:hover {
  border-color: var(--laranja);
}

.linhaOpcao {
  display: flex;
  justify-content: space-between;
  gap: 15px;

  margin: 6px 0;
}

.valorOpcao {
  margin-top: 12px;

  font-size: 21px;
  font-weight: bold;

  color: var(--laranja);
}

/* DELIVERY */

.deliveryGrid {
  display: flex;
  flex-direction: column;
  gap: 12px;

  align-items: center;
}

.deliveryBtn {
  width: 100%;
  max-width: 340px;
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  border: 1px solid #e5e5e5;
  border-radius: 14px;

  padding: 14px 18px;

  background: #fff;

  color: #222;

  text-decoration: none;

  font-weight: bold;
  font-size: 18px;

  box-shadow: 0 3px 12px rgba(0,0,0,.10);
}

.deliveryBtn img {
  width: 42px;
  height: 42px;

  object-fit: contain;

  flex-shrink: 0;
}

.deliveryBtn span {
  min-width: 95px;

  text-align: left;
}

/* RODAPÉ */

.rodape {
  background: #050505;

  color: #fff;

  text-align: center;

  padding: 46px 22px 28px;

  margin-top: 30px;
}

.logoRodape {
  width: 180px;
  max-width: 80%;

  margin-bottom: 18px;
}

.rodapeTitulo {
  font-size: 22px;
  font-weight: bold;

  margin-bottom: 10px;
}

.rodape p {
  margin: 8px auto;

  max-width: 360px;

  line-height: 1.4;
}

.redesSociais {
  display: flex;
  justify-content: center;
  gap: 14px;

  margin: 24px 0;
}

.redesSociais a {
  width: 46px;
  height: 46px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ff5a00;

  color: #fff;

  text-decoration: none;

  font-size: 24px;
  font-weight: bold;
}

.rodape small {
  display: block;

  font-size: 14px;

  line-height: 1.4;
}

/* RESPONSIVO */

@media(max-width: 430px) {

  .cardProduto {
    grid-template-columns: 112px 1fr;

    gap: 14px;

    padding: 18px;
  }

  .cardProduto img {
    width: 105px;
    height: 98px;
  }

  .deliveryGrid {
    grid-template-columns: 1fr;
  }

}