* {
  margin: 0;
  padding: 0;
}

:root {
  --escuro: #252525;
  --descricao: #181818;
}

header {
  background-color: var(--escuro);
  padding: 1.25rem;
  text-align: center;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

header.scrolled {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background-color: #1a1a1a;
}

html {
  scroll-behavior: smooth;
}

a,
a:visited,
a:hover,
a:active {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

a:focus,
button:focus {
  outline: none;
  box-shadow: 0 0 0 3px #ffc400;
  border-radius: 6px;
  outline-offset: 2px;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 1rem;
}

.inicio {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

.inicio-background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
  z-index: -10;
  filter: brightness(0.4);
}

.inicio-foreground {
  padding-top: 40vh;
  text-align: center;
  position: relative;
  z-index: 10;
}

.inicio-foreground h1 {
  color: #fff;
  padding-bottom: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3rem;
  font-weight: bold;
}

.inicio-foreground p {
  color: #fff;
  padding-bottom: 1.25rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.15rem;
  font-weight: 700;
  padding-bottom: 2rem;
}

.inicio-foreground a {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffc400;
  color: #000;
  font-weight: bold;
  padding: 0.65rem;
  border-radius: 0.75rem;
  transition: all 0.3 ease;
}

.inicio-foreground a:hover {
  background-color: #e0ad00;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#cardapio h2 {
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3rem;
  padding: 3rem;
}

.grid-cardapio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 80%;
  margin: 0 auto;
}

.item-cardapio {
  background-color: none;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-cardapio {
  background-color: var(--descricao);
  width: 100%;
  padding: 1rem;
  text-align: center;

  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-cardapio h3 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  color: #ffffff;
  font-weight: 700;
}

.info-cardapio p {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.25rem 1.5rem 0.5rem 1.5rem;
}

.item-cardapio img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.item-cardapio:hover img {
  transform: scale(1.05);
}

#sobre-nos {
  margin-top: 3rem;
  position: relative;
  width: 100vw;
  height: 40vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 1rem;
  box-sizing: border-box;
}

#sobre-nos img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -10;
  filter: brightness(0.5);
}

#sobre-nos h2,
#sobre-nos p {
  position: relative;
  z-index: 10;
  max-width: 80wv;
  margin: 0.5rem auto;
  padding: 0 1rem;
}

#sobre-nos h2 {
  font-size: 2rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#sobre-nos p {
  font-size: 1.25rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.15rem;
  padding: 0 10rem 0 10rem;
  display: inline-block;
}

#contato {
  text-align: center;
  padding-top: 2rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#contato h2 {
  font-weight: 700;
  padding-bottom: 1.75rem;
}

.contato1 {
  padding-bottom: 1.75rem;
  font-weight: 600;
}

.endereco,
.telefone,
.horario-label,
.email-label {
  font-weight: 700;
}

#contato .grid-contato {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem 2rem;
  max-width: 80vw;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

#contato .coluna1 {
  grid-column: 1;
}

#contato .coluna2 {
  grid-column: 2;
}

#contato .coluna3 {
  grid-column: 3;
}

#contato .grid-contato > button.botao-pedir {
  grid-column: 1 / 4;
  justify-self: center;
  width: 100%;
  max-width: 300px;
  background-color: #ffc400;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 1rem;
}

#contato .grid-contato > button.botao-pedir:hover {
  background-color: #e6b200;
  transform: scale(1.05);
}

#contato .grid-contato > div {
  padding: 0 0.5rem;
}

#contato p {
  margin-bottom: 0.5rem;
}

#contato a {
  color: #ff8800;
  text-decoration: underline;
  cursor: pointer;
}

#contato a:hover {
  color: #ff3300;
}

.endereco,
.email-label,
.email-label + a,
.horario-label,
.horario-conteudo {
  white-space: nowrap;
}

footer {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--escuro);
  padding: 1.25rem;
  text-align: center;
  color: #e6b200;
}

footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
  color: #fff;
}

.footer-icon {
  color: #fff;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.footer-icon.github {
  padding-right: 1.5rem;
}

.footer-icon.linkedin {
  padding-left: 1.5rem;
}

.footer-icon.github:hover {
  color: #ffc400;
}

.footer-icon.linkedin:hover {
  color: #0a66c2;
}

@media (max-width: 768px) {
  .grid-cardapio {
    grid-template-columns: 1fr;
    max-width: 90%;
    gap: 1.5rem;
  }

  #contato .grid-contato {
    grid-template-columns: 1fr;
    max-width: 90vw;
    gap: 1rem;
  }

  #sobre-nos p {
    padding: 0 1rem;
  }

  .inicio-foreground h1 {
    font-size: 2rem;
  }

  .inicio-foreground p {
    font-size: 1rem;
  }
}
