@font-face {
  font-family: var(--fonte-principal);
  src: url();
}

:root {
  /* Fontes */

  --fonte-principal: "Lobster Two";
  --fonte-secundaria: "Josefin Sans";
  --fonte-terciaria: "Lobster";
  --fonte-rodape: "Roboto";

  /* Cores */

  --laranja: #de6f00;
  --laranja-escuro: #ef5d04;
  --laranja-claro: #fffaf2;
  --cinza: #383838;
  --cinza-claro: #535353;
  --cinza-escuro: #2e2e2e;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Cabeçalho */

header {
  background-color: var(--cinza);
  color: #fff;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
}

.img_cabecalho {
  font-family: var(--fonte-principal);
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

.img_cabecalho img {
  width: 65px;
}

.img_cabecalho h2 {
  font-family: var(--fonte-principal);
  font-style: italic;
  font-size: 2rem;
  margin-left: 0.5rem;
}

.texto_cabecalho {
  display: flex;
}

#menu-ativo {
  color: var(--laranja);
  text-decoration: underline var(--laranja);
}

.cabecalho__lista {
  display: flex;
}

.cabecalho__lista-menu {
  margin-right: 3rem;
  font-size: 1.5rem;
}

#pagina_selecionada:hover {
  color: var(--laranja-escuro);
  text-decoration: underline var(--laranja-escuro);
}

.texto_cabecalho li a {
  text-decoration: none;
  color: #fff;
  font-family: var(--fonte-secundaria);
  font-size: 1.25rem;
  margin-right: 3.75rem;
}

.texto_cabecalho li a:hover {
  color: var(--laranja);
}

/* Rodapé */

.rodape-1 {
  background-color: var(--cinza);
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;

  padding: 3rem 0;
}

.div_logo_buon-gusto {
  text-align: center;
}

.div_logo_buon-gusto img {
  width: 300px;
}

.div_logo_buon-gusto h2 {
  font-family: var(--fonte-principal);
  font-style: italic;
  font-size: 4rem;
  color: #fff;
}

.titulo_rodape h3 {
  font-family: var(--fonte-secundaria);
  color: #fff;
  font-size: 2.25rem;
}

.redes_itens {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: var(--fonte-secundaria);
  font-size: 1.5rem;
  font-weight: 350;

  text-decoration: none;

  margin: 2rem 0;
}

.redes_itens img {
  width: 25px;
  margin-right: 1rem;
}

#pagamento {
  margin-bottom: 5.5rem;
}

.img_pagamento {
  margin-bottom: 4rem;
}

.rodape-2 {
  background-color: var(--cinza-escuro);
  padding: 1.75rem 0;
}

.rodape-2 p,
a {
  font-family: var(--fonte-rodape);
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.rodape-2 a:hover {
  color: var(--laranja);
}

/* ScrollBar */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.botao {
  font-family: var(--fonte-secundaria);
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;

  padding: 15px 50px;
  border-radius: 100px;
  background-color: var(--laranja);
  margin-bottom: 2rem;
}

.botao:hover {
  background-color: var(--laranja-escuro);
  transition: linear;
  transition-delay: 100ms;
}

/* Menu Hamburguer */

.menu-hamburguer {
  display: none;
  font-size: 30px;
  cursor: pointer;
  user-select: none;
}

/* Menu Hamburger */

#menu {
  display: none;
}

.texto_cabecalho_bugue {
  display: none;
}

#icon_pizza-bugue {
  display: none;
}

.menu_bugue-bugue {
  display: none;
}

#conjunto_bugue {
  display: none;
  margin-right: 0.75rem;
}

.ret_bugue {
  width: 56px;
  height: 9px;
  border-radius: 30px;
  margin: 0.5rem;
  background-color: var(--laranja);
}

.ret_bugue:hover {
  background-color: var(--laranja-escuro);
}

.menuOpen {
  opacity: 0;
  width: 0;
}

/* =============================
   📱 Mobile (até 768px)
   ============================= */

@media (max-width: 768px) {
  /* Cabeçalho */

  .cabecalho__lista {
    display: flex;
  }

  .cabecalho__lista-menu {
    margin-right: 1.5rem;
    font-size: 1.25rem;
  }

  /* Footer */
  .div_logo_buon-gusto img {
    width: 200px;
  }

  .div_logo_buon-gusto h2 {
    font-size: 3rem;
  }

  .titulo_rodape h3 {
    font-size: 1.75rem;
  }

  .redes_itens {
    font-size: 1.15rem;
    margin: 1.5rem 0;
  }

  #pagamento {
    margin-bottom: 4.5rem;
  }

  .img_pagamento {
    width: 250px;
  }

  /* =============================== */

  /* =============================== */
}

/* Celular */

@media (max-width: 425px) {
  .cabecalho__lista {
    text-align: center;
    width: 100vw;
    height: 100vh;
    background-color: rgba(68, 68, 68, 0.95);
    position: fixed;
    left: -150%;
    border-radius: 15px;
    top: 0;
    z-index: 3;
    flex-wrap: wrap;

    display: flex;
    justify-content: space-between;
  }

  .cabecalho__lista-menu:first-child {
    margin-top: 7rem;
  }

  .cabecalho__lista-menu {
    list-style-type: none;
    padding: 0px 0;
    font-size: 3rem;
    width: 100%;

    padding-right: 4rem;
    padding-left: 4rem;
    font-family: var(--fonte-principal);
    font-weight: 600;
  }

  .cabecalho__lista-menu a {
    color: var(--branco);
  }

  /* ============================== */

  .cabecalho__lista-menu a {
    color: var(--preta);
    text-decoration: none;
  }

  .cabecalho__lista-menu a:hover {
    color: var(--laranja);
    transition-duration: 300ms;
  }

  /* ============================== */

  /* Menu Hambuger */

  .menuOpen {
    opacity: 1;
    width: auto;

    margin-top: 1rem;
    margin-right: 1rem;
  }

  .menuOpen label {
    width: 70px;
  }

  .menuOpen span {
    height: 11px;
  }

  /* Botão Menu */

  .menuOpen {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
  }

  #checkbox-menu {
    position: absolute;
    opacity: 0;
  }

  label {
    cursor: pointer;
    position: relative;
    display: block;
    height: 71px;
    width: 80px;
  }

  label span {
    position: absolute;
    display: block;
    height: 12px;
    width: 100%;
    border-radius: 30px;
    background-color: var(--laranja);
    transition: 0.25s ease-in-out;
  }

  label span:nth-child(1) {
    top: 0;
  }

  label span:nth-child(2) {
    top: 22px;
  }

  label span:nth-child(3) {
    top: 44px;
  }

  #checkbox-menu:checked + label span:nth-child(1) {
    transform: rotate(-135deg);
    top: 20px;
  }

  #checkbox-menu:checked + label span:nth-child(2) {
    opacity: 0;
  }

  #checkbox-menu:checked + label span:nth-child(3) {
    transform: rotate(135deg);
    top: 20px;
  }

  .menu-left {
    transition: 0.25s ease-out;
    left: 0;
  }

  /* ------------------ */

  .texto_cabecalho_bugue {
    flex-wrap: wrap;
    text-align: left;
    display: block;
    background-color: rgb(69, 69, 69);
    width: auto;

    padding: 2rem 2rem;

    font-size: 2rem;
  }

  .texto_cabecalho_bugue li {
    margin-bottom: 0.5rem;
  }

  .menu-ativo {
    display: block;
  }

  #icon_pizza-bugue {
    width: 60px;
    margin-right: 1rem;
  }

  /* Cabeçalho */

  header {
    height: 75px;
  }

  .img_cabecalho img {
    display: none;
  }

  .img_cabecalho h2 {
    font-size: 3rem;
  }

  /* Footer */

  .rodape-1 {
    padding: 2rem 0;
    flex-wrap: wrap;
  }

  .div_logo_buon-gusto img {
    width: 250px;
    margin: 0 2rem;
  }

  .div_logo_buon-gusto h2 {
    font-size: 4rem;
  }

  .titulo_rodape {
    width: 75%;
    margin-left: 5%;
    margin-top: 4rem;
  }

  .titulo_rodape h3 {
    font-size: 2.25rem;
  }

  .redes_itens {
    font-size: 1.5rem;
  }

  /* Footer 2 */

  .rodape-2 {
    padding: 2rem;
  }
}
