  /* Reset */
  * {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  body {
    background: #fafafa;
    color: #222;
    line-height: 1.5;
  }



  /* ======== MENU RESPONSIVO ======== 
  .navbar {
  background-color: #d3792f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;

}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo img {
  width: 72px;
  height: 70px;
  border-radius: 50%;
}

.navbar-logo span {
  color: #0c0202;
  font-size: 1.2rem;
  font-weight: bold;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.navbar-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.navbar-links li a:hover {
  text-decoration: underline;
}

.navbar-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
  */
@media (max-width: 768px) {
  .navbar-links {
    position: absolute;
    top: 85px;
    right: 0;
    background-color: #c23e16ff;
    flex-direction: column;
    gap: 0;
    width: 200px;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;

    /* invisível antes de abrir */
    opacity: 0;
    pointer-events: none;
  }

  .navbar-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .navbar-links li a {
    display: block;
    padding: 0.75rem;
  }

  .navbar-links.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-toggle {
    display: block;
  }
}

*/

  /* ======== principal ======== */
  main {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
  }

  /* CARROSSEL */
  .carousel {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 360px;
    margin: 0 auto 3rem;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  .carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    transition: opacity 0.5s ease-in-out;
  }
  .carousel img.active {
    display: block;
  }
  /* Navegação carrossel */
  .carousel-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
  }
  .carousel-nav button {
    border: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .carousel-nav button.active {
    background: #e63946;
  }
  
  /* Chamadas principais */
  .calls {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  .call {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    flex: 1 1 30%;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
  }
  .call:hover {
    box-shadow: 0 7px 22px rgba(230,57,70,0.4);
  }
  .call h2 {
    color: #e63946;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  .call p {
    flex-grow: 1;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
  }
  .call a {
    align-self: flex-start;
    text-decoration: none;
    background: #e63946;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  .call a:hover {
    background: #d52b3d;
  }

  /* Seção Cardápios */
  section#cardapios {
    background: white;
    padding: 2rem 1.5rem 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
  }
  #cardapios h2 {
    margin-bottom: 1.5rem;
    color: #e63946;
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
  }
  #search-container {
    max-width: 400px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 0.5rem;
  }
  #search-container input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 2px solid #e63946;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    outline: none;
  }
  #search-container button {
    background: #e63946;
    border: none;
    color: white;
    padding: 0 1.2rem;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  #search-container button:hover {
    background: #d52b3d;
  }

  /* Lista Cardápios */
ul.cardapio-list {
  list-style: none;
  max-width: 1100px;   /* deixa a grade centralizada e mais larga */
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* colunas flexíveis */
  gap: 1.5rem;
}

ul.cardapio-list li {
  background: #fff7f8;
  padding: 1.5rem 1.2rem;
  border-radius: 20px; /* mais arredondado */
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

ul.cardapio-list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.25);
}

ul.cardapio-list li h3 {
  font-family: "Poppins", Arial, sans-serif; /* fonte mais moderna */
  font-size: 1.2rem;
  font-weight: 600;
  color: #b22222;
  margin-bottom: 0.6rem;
  text-transform: capitalize; /* deixa as palavras com primeira letra maiúscula */
  letter-spacing: 0.5px;
}

ul.cardapio-list li p {
  font-size: 0.95rem;
  color: #5a0000;
  line-height: 1.4;
}

.cardapio-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cardapio-img:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 14px rgba(0,0,0,0.25);
}

  /* Paginação */
  .pagination {
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  .pagination button {
    background: white;
    border: 2px solid #e63946;
    color: #e63946;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
  }
  .pagination button:hover:not(:disabled) {
    background: #e63946;
    color: white;
  }
  .pagination button:disabled {
    border-color: #aaa;
    color: #aaa;
    cursor: default;
  }
/* FAQ Section */
#faq {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

#faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #ff5e14; /* Cor destaque principal */
}

#faq details {
  background: #fff8f3;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
  padding: 0.8rem 1.2rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

#faq details:hover {
  box-shadow: 0 5px 18px rgba(0,0,0,0.15);
}

#faq summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1.15rem;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

#faq summary::-webkit-details-marker {
  display: none; /* Remove ícone padrão */
}

#faq .icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff5e14;
  transition: transform 0.3s ease;
}

#faq details[open] .icon {
  transform: rotate(45deg); /* Transforma + em x */
}

#faq p {
  margin-top: 0.5rem;
  line-height: 1.5;
  color: #555;
  font-size: 1rem;
}

#faq a {
  color: #ff5e14;
  font-weight: bold;
  text-decoration: none;
}

#faq a:hover {
  text-decoration: underline;
}


/* Botão flutuante */
#chat-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff5e14;
  color: white;
  font-size: 1.8rem;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.2s ease;
}

#chat-icon:hover {
  transform: scale(1.1);
}

/* Janela do chat */
#chat-box {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

/* Cabeçalho do chat */
#chat-header {
  background: #ff5e14;
  color: white;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chat-header button {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: white;
  cursor: pointer;
}

/* Conteúdo do chat */
#chat-content {
  padding: 15px;
}
 
#chat-form input,
#chat-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

#chat-form button {
  width: 100%;
  padding: 10px;
  background: #ff5e14;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

#chat-form button:hover {
  background: #e14d0f;
}

  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    color: #1d1515;
    margin-top: 3rem;
    font-size: 0.9rem;
    background-color: #f3984e;
  }

  /* Responsividade */
  @media(max-width: 768px) {
    .calls {
      flex-direction: column;
    }
    .call {
      flex: 1 1 100%;
    }
    header {
      justify-content: center;
    }
  }