@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600&display=swap");

/* Reseta os estilos padrão do navegador */
* {
  font-family: "Rubik", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Footer */
footer {
  margin: 0;
  background: #fff;
  color: #111;
  text-align: center;
  padding: 10px 0;
  margin-top: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Estilos do Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 20px;
  /*color: #fff;*/
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  position: fixed;
}

#home-section {
  padding: auto;
  margin-top: auto;
}

#home-section h2 {
  font-family: 'Reboto', sans-serif;
  color: #ddd;
}

section {
  margin-bottom: 1px;
  padding-bottom: 0;
  padding-top: 1px;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-right: 10px;
}

nav ul li a {
  /*font-family: Arial, Helvetica, sans-serif;*/
  color: #111;
  text-decoration: none;
  padding: 8px 1px;
}

.nav--link {
  text-decoration: none !important; /* Remove a linha embaixo */
  color: #111 !important;
  padding: 0.5rem 1rem !important; /* Ajusta o espaço interno dos itens */
  margin: 0 0.5rem !important; /* Espaça os itens horizontalmente */
  border-radius: 0.3rem !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
}

.nav--link:hover { /* effect on link */
  background-color: #ddd;
  color: #333;
}

    nav a {
      padding: 10px 20px;
    }

/* Seção Parallax */
.parallax-container {
  position: relative;
  height: 700px;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.parallax {
  background-image: url('https://images.unsplash.com/photo-1541544741938-0af808871cc0?q=80&w=1469&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') !important;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-color: transparent;
  filter: none;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.content h2 {
  font-size: 3em;
  margin-bottom: 10px;
}

/* Estilos para a seção About */
#about-section {
  padding: 50px 20px;
  text-align: center;
}

.about-title {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
    padding-top: 80px;
}

.about-text {
  font-size: 1.2em;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.5em;
  letter-spacing: 0.08em;
  line-height: 1.6;
}


/* Estilos para a Seção de Produtos */
#menu-section {
  padding: 50px 20px;
  text-align: center;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5em;
}

.menu {
  font-family: sans-serif;
  font-size: 15px;
}

.menu-group-heading {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
  margin: 0;
  padding-bottom: 1em;
    padding-top: 80px;
  /*border-bottom: 2px solid #ccc;*/
}

.menu-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  padding: 1.5em 0;
}

.menu-item {
  display: flex;
}

.menu-item-img {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  object-fit: cover;
  margin-right: 1.5em;
}

.menu-item-text {
  flex-grow: 1;
}

.menu-item-heading {
  display: flex;
  justify-content: space-between;
  margin: 0;
}

.menu-item-name {
  margin-right: 1.5em;
}

.menu-item-desc {
  line-height: 1.6;
  margin-top: 0.5em;
  padding: 0;
  text-align: left;
}


/* Botão de Pedido */
.order-section {
  text-align: center;
  margin-top: 0;
  padding-bottom: 50px;
}

.order-link {
  padding: 15px 30px;
  background-color: #007bb6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/*.order-link:hover {
  background-color: #ddd;
  color: #333;
  border-radius: 5px;
}*/

/* Seção de Feedback*/

#feedback-section {
  padding: 50px 20px;
  margin-top: 10px;
  text-align: center;
}

.feedback-title {
  font-size: 2.1em;
  margin-bottom: 20px;
  padding-top: 80px;

}

.feedback-container {
  display: flex;               /* Define o layout flexível */
  justify-content: center;      /* Centraliza as imagens horizontalmente */
  gap: 100px;                    /* Espaçamento entre as imagens */
  flex-wrap: wrap;              /* Permite que as imagens se reorganizem se a tela for menor */
}

.feedback-img {
  width: 380px;
  height: auto;
  margin-bottom: 30px;
}

/*.feedback .section {
  margin-bottom: 50px;
}

/* Seção de Contato */

#contact-section {
  padding: 50px 20px;
  margin-top: 10px;
  /* background: #fff; /* Cor de fundo da seção de contato */
  text-align: center;
}

.contact .section-title {
  font-size: 2em;
  margin-bottom: 20px;
  padding-top: 80px;
}

.contact ul {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.contact ul li {
  list-style: none;
  margin: 0 10px;
}

.contact ul li a {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
  text-align: center;
  border-radius: 50%;
  padding: 6px;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(0deg, #ddd, #fff);
  transition: 0.5s;
}

.contact ul li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.contact ul li a .fab {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(0deg, #fff, #ddd);
  border-radius: 50%;
  line-height: 50px;
  font-size: 24px;
  color: #262626;
  transition: 0.5s;
}

/* Estilos de hover para ícones */
.contact ul li:nth-child(1) a:hover .fab {
  color: #00ff00; /* WhatsApp */
}

.contact ul li:nth-child(2) a:hover .fab {
  color: #ffa500; /* Instagram */
}

.contact ul li:nth-child(3) a:hover .fab {
  color: #3b5998; /* Facebook */
}

.contact ul li:nth-child(4) a:hover .fab {
  color: #00aced; /* Twitter */
}

.contact ul li:nth-child(5) a:hover .fab {
  color: #007bb6; /* LinkedIn */
}




/* Layout da seção de contato */
.contact-section .container {
  display: flex;
  justify-content: space-between;
  gap: 30px; /* Espaçamento entre o mapa e o formulário */
  padding: 50px 20px; /* Espaçamento interno para evitar que grude nas bordas */
}

.mapBox, .contact-form {
  flex: 1;
  /*margin-right: 20px; /* Espaçamento da direita para o mapa não encostar no formulário */
  min-height: 300px;
  padding: 50px 20px;
}

.mapBox iframe {
  width: 100%;
  height: 100%;

}

/* Estilos do formulário de contato */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  padding: 10px;
  background-color: #007bb6 !important;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
}


/* Media queries para telas menores */

@media (max-width: 720px) {
  /* Ajustes para dispositivos móveis */
  .parallax {
    background-image: url('https://images.unsplash.com/photo-1541544741938-0af808871cc0?q=80&w=1469&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }
  
  header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px; /* Adiciona padding ao header */
    box-sizing: border-box;
  }

  .nav {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    background-color: white; /* Cor de fundo do menu */
    position: fixed; /* Fica fixo no topo */
    top: 0;
    left: 0;
    width: 100%; /* Ocupa toda a largura */
    z-index: 100; /* Fica sobre outros elementos */
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra sutil */
  }

  .nav--container {
    display: flex; /* Exibe os itens horizontalmente */
    flex-direction: row; /* Alinha os itens horizontalmente */
    justify-content: center; /* Centraliza os itens */
    padding: 0;
    margin: 0;
    width: 100%; /* Ocupa toda a largura */
  }

  nav a {
    padding: 0.2rem 0.3rem; /* Reduz o padding interno dos links */
  }

  .nav--link {
    text-decoration: none !important;
    color: #111 !important;
    padding: 0.3rem 0.3rem !important; /* Reduz o padding dos itens */
    margin: 0 0.1rem !important; /* Reduz o espaçamento horizontal entre os links */
    border-radius: 0.3rem !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
  }
  
  nav ul {
    list-style: none;
    display: flex;
        gap: 10px;
        white-space: nowwrap;
  }
  
  nav ul li {
    margin-right: 10px;
  }

  .contact-section .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    padding: 50px 20px;
  }
  
  .mapBox, .contact-form {
    flex: 1;
    min-height: 600px;
    padding: 50px 20px;
  }
  
  .mapBox iframe {
    width: 100%;
    height: 100%;
  }

  .about-text {
      max-width: 500px;
      margin: 0 auto;
      text-align: center;
      letter-spacing: 0.08em;
      line-height: 1.6;
  }

  .feedback-img {
    width: 300px; /* Ajuste o tamanho da imagem */
    margin: 0 5px;
  }
}

@media (max-width: 480px) {
  /* Ajustes para dispositivos menores */
  .parallax {
    background-image: url('https://images.unsplash.com/photo-1541544741938-0af808871cc0?q=80&w=1469&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }

  header {
    padding: 5px; /* Reduz padding no header */
  }

  nav {
    overflow-x: auto; /* Permite rolagem horizontal se necessário */
  }

  nav a {
    padding: 0.2rem 0.3rem; /* Reduz o padding interno dos links */
  }

  .nav--link {
    text-decoration: none !important;
    color: #111 !important;
    padding: 0.3rem 0.3rem !important; /* Reduz o padding dos itens */
    margin: 0 0.1rem !important; /* Reduz o espaçamento horizontal entre os links */
    border-radius: 0.3rem !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
  }

  nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start; /* Alinha os links à esquerda */
    white-space: nowrap;
    padding: 0;
    margin: 0;
  }

  nav ul li {
    margin-right: 5px; /* Reduz o espaçamento entre os links */
  }

  .contact-section .container {
    flex-direction: column;
    padding: 20px;
  }

  .mapBox, .contact-form {
    min-height: 400px;
    padding: 20px;
    margin-right: 0;
  }

  .mapBox iframe {
    height: 300px;
  }

  .about-text {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2em;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }

  .feedback-title {
    font-size: 1.5em;
  }

  .feedback-container {
    flex-direction: column;
  }

  .feedback-img {
    width: 100%;
    max-width: 300px;
    margin: 0 5px;
  }
}


@media screen and (orientation: landscape) and (min-width: 480px) and (max-width: 1024px) {
  /* Ajustes para dispositivos móveis na orientação horizontal */
  .parallax {
    /*background-image: url('https://images.unsplash.com/photo-1541544741938-0af808871cc0?q=80&w=1469&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    */background-attachment: scroll; /* Remove o parallax fixo no mobile */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /*height: 100%; /* Altura da tela em landscape */
    width: 100%; /* Largura completa da tela */
    flex-direction: column;
  }

  header {
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* Espaça o conteúdo do header */
    align-items: center; /* Centraliza verticalmente */
    padding: 10px; /* Adiciona padding ao header */
  }

  .nav--link {
    text-decoration: none !important; /* Remove a linha embaixo */
    color: #111 !important;
    padding: 0.5rem 1rem !important; /* Ajusta o espaço interno dos itens */
    margin: 0 0.5rem !important; /* Espaça os itens horizontalmente */
    border-radius: 0.3rem !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
  }
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav ul li {
    margin-right: 10px;
  }

  .contact-section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .mapBox, .contact-form {
    min-height: 400px;
    padding: 20px;
  }
  
  .mapBox iframe {
    width: 100%;
    height: 300px;  
}
  .about-text {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    font-size: 1em;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }

  feedback-img {
    width: 250px; /* Ajusta o tamanho da imagem para telas maiores em paisagem */
    margin: 0 5px;
  }
}