* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Anton", sans-serif;
  font-style: normal;
  background: url('/img-familia_lanche/fundo.avif') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 11, 0.6);
  backdrop-filter: blur(2px);
  /* Ajuste o valor para mais ou menos desfoque */
  z-index: -1;
}

header {
  background-color: #f4efdc;
  /* Light beige from the background of the logo */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  color: #5b2e16;
  /* Dark brown color from the text */
}

header h1 {
  color: #5b2e16;
  /* Dark brown color matching "Família" text */
  font-size: 24px;
}

header .highlight {
  color: #e54e24;
  /* Red color matching "Lanches" text */
  font-weight: bold;
}

.logo img {
  width: 135px;
  height: 110px;
  object-fit: cover;
  margin-right: 40px;
  border-radius: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 50px;
  align-items: center;
  font-family: "Anton", sans-serif;
  font-weight: 55;
  font-style: normal;
  font-size: 20px;
}

h1 {
  color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}


nav ul li a {
  color: #5b2e16 !important;
  text-decoration: none;
  padding: 10px 10px;
  transition: background-color 0.3s ease;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

nav ul li a:hover {
  background-color: #b98061;
  border-radius: 5px;
}

.company-name {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 20px;
  font-family: 'Fredoka One', sans-serif;
  font-size: 48px;
  color: #ff9800;
}

.carousel {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.carousel-item {
  display: none;
  width: 100%;
  transition: opacity 0.5s ease;
}

.carousel-item.active {
  display: block;
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  height: 580px;
  border-radius: 10px;
  object-fit: fill;
  /* Estica a imagem para preencher todo o espaço */
}

.carousel-item .caption {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Anton", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #ff9800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px 30px;
  border-radius: 8px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80%;
  z-index: 1;
}

/* Indicadores do Carrossel */
.carousel-indicators {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.carousel-indicators .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.carousel-indicators .dot.active {
  background-color: #ff9800;
}

.cta {
  text-align: center;
  margin: 40px 0;
  margin-bottom: 50px;
}

.cta-button {
  background-color: #ff9800;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  /* Ensures no underline */
}

.cta-button:hover {
  background-color: #e67e22;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: white;
  text-decoration: none;
}

.links a {
  text-decoration: none;
  color: #ca6105;
}

/* General Mobile Adjustments */
@media (max-width: 768px) {
  body {
    background-size: cover;
    padding: 10px;
  }

  .company-name {
    font-size: 28px;
    padding: 20px 10px;
  }

  .carousel-item img {
    height: 300px;
  }

  .cta-button {
    font-size: 16px;
    padding: 10px 20px;
  }

  /* Adjust Footer Links */
  footer {
    padding: 15px 0;
  }

  /* Estilo para o ícone do menu */
  .menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
  }

  /* Configuração padrão do menu */
  nav ul {
    display: flex;
    gap: 50px;
  }
}

/* Configurações para telas menores */
@media (max-width: 768px) {

  /* Mostra o ícone do menu apenas no mobile */
  .menu-icon {
    display: block;
    color: #5b2e16;
    text-align: center;
    padding: 10px;
  }

  /* Estilização para o menu no modo mobile */
  nav ul {
    display: none;
    flex-direction: column;
    position: static;
    /* Agora fica abaixo do logo */
    background-color: #f4efdc;
    width: 100%;
    padding: 10px;
  }

  /* Mostra o menu ao ativar a classe 'show' */
  nav ul.show {
    display: flex;
  }

  .company-name {
    text-align: center;
    padding-top: 20px;
    font-family: 'Fredoka One', sans-serif;
    font-size: 48px;
    color: #ff9800;
  }
}

/*CARDAPIO*/

.menu {
  padding-top: 40px;
  padding-right: 20px;
  padding-bottom: 0px;
  padding-left: 20px;
  text-align: center;
}

.menu h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 50px;
  font-family: 'Fredoka One', cursive;
}

.category {
  margin-bottom: 60px;
}

.category h2,
.beverages h2,
.desserts h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 50px;
  font-family: 'Fredoka One', cursive;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
  margin-bottom: 70px;
}

.menu-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 100px;
  /* Garantir altura mínima */
}

.menu-item:hover {
  transform: translateY(-10px);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.menu-item.no-img {
  background-color: #f4f4f4;
  /* Cor alternativa para item sem imagem */
}

.menu-item.no-img h3 {
  margin-top: 15px;
}

.menu-item h3 {
  margin-top: 15px;
  font-size: 22px;
  color: #333;
}

.menu-item p {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.menu-item.no-img p {
  color: #333;
  /* Cor de texto mais escura para itens sem imagem */
}

.beverages,
.desserts {
  margin-top: 40px;
  text-align: center;
  /* Centraliza a seção */
}

.combos,
.highlights {
  margin-top: 60px;
  text-align: center;
  /* Centraliza a seção */
}

.combos h2,
.highlights h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 50px;
  font-family: 'Fredoka One', cursive;
  margin-top: 60px;
}

.combos .menu-item,
.highlights .menu-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  text-align: center;
  /* Centraliza o texto dentro do item */
}

.combos .menu-item:hover,
.highlights .menu-item:hover {
  transform: translateY(-10px);
}

.highlights .menu-item img {
  width: 100%;
  height: 200px;
  /* Ajuste a altura conforme necessário */
  object-fit: cover;
  border-radius: 10px;
}

.highlights .menu-item h3 {
  margin-top: 15px;
  font-size: 22px;
  color: #333;
}

.highlights .menu-item p {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* Promoções */
.promocoes {
  padding: 0px 20px;
  text-align: center;
}

.promocoes h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 40px;
  font-family: 'Fredoka One', cursive;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Mantém 3 colunas por fileira */
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Altera para 2 colunas em telas menores */
  }
}

@media (max-width: 600px) {
  .promo-grid {
    grid-template-columns: 1fr;
    /* Altera para 1 coluna em telas bem pequenas */
  }

  .logo img {
    width: 135px;
    height: 110px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 20px
  }
}


.promo-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  text-align: center;
}

.promo-item:hover {
  transform: translateY(-10px);
}

.promo-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.promo-item h3 {
  margin-top: 15px;
  font-size: 22px;
  color: #333;
}

.promo-item p {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: white;
  text-decoration: none;
}

.links a {
  text-decoration: none;
  color: #ca6105;
}

footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px 0;
  position: relative;
  /* Remova o fixed para que o footer não acompanhe a rolagem */
  width: 100%;
  font-family: "Anton", sans-serif;
  margin-top: -15px;
  /* Adiciona espaço antes do footer */
}

.info {
  text-align: center;
  font-size: 25px;
  margin-bottom: 20px;
  color: #f0a500;
}

.promo-item .validade {
  font-size: 14px;
  color: #888;
  margin-top: 10px;
}

.cta-btn {
  background-color: #ff9800;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  margin-top: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #e68900;
}

.about-us {
  color: white;
  padding: 60px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 40px 0;
  text-align: center;
  /* Centraliza o conteúdo */
}

p {
  color: white;

}

.about-us h2 {
  font-size: 36px;
  font-family: 'Fredoka One', sans-serif;
  color: #ff9800;
  margin-bottom: 20px;
}

.about-us p {
  font-size: 20px;
  line-height: 1.8;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto;
}

.about-us .mission,
.about-us .vision,
.about-us .values {
  margin-top: 40px;
}

.about-us .mission h3,
.about-us .vision h3,
.about-us .values h3 {
  font-size: 28px;
  color: #e67e22;
  margin-bottom: 15px;
}

.about-us .mission p,
.about-us .vision p,
.about-us .values p {
  font-size: 18px;
  color: #dcdcdc;
  line-height: 1.7;
}

.about-us div {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.localizacao {
  padding: 40px 20px;
  text-align: center;
}

.localizacao h2 {
  font-size: 36px;
  color: #ff9800;
  margin-bottom: 20px;
  font-family: 'Fredoka One', cursive;
}

.localizacao h3 {
  font-size: 24px;
  color: #ff9800;
  margin-top: 20px;
}

.localizacao p {
  color: white;
  font-size: 18px;
  line-height: 1.6;
  text-decoration: none;
}

.mapa iframe {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border: 0;
  margin: 20px 0;
}

.informacoes,
.horario,
.faq {
  margin: 15px auto;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background-color: rgba(221, 172, 116, 0.8);
  /* Fundo com opacidade */
  color: #333;
  /* Cor de texto mais escura */
  font-weight: 500;
  /* Peso de fonte para mais contraste */
  max-width: 550px;
  width: 90%;
  font-size: 18px;
}


h2,
h3,
h4 {
  color: white;
  /* Mudança na cor dos títulos */
  text-align: center;
  font-weight: 50;
  margin: 5px;
}

#texto {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

#contatoForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centraliza o conteúdo horizontalmente */
  margin: auto;
  /* Centraliza o formulário na página */

  max-width: 400px;
  /* Largura máxima do formulário */
  padding: 20px;
  /* Espaçamento interno */
  border: 1px solid #ccc;
  /* Borda do formulário */
  border-radius: 5px;
  /* Arredondamento dos cantos */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Sombra do formulário */
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 15px;
  /* Espaçamento entre os grupos de formulários */
  width: 100%;
  /* Largura total para os grupos de formulários */
}

.contato {
  color: white;
  text-decoration: none;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: white;
  font-weight: 50;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ff7b00;
  border-radius: 4px;
}

button {
  background-color: #ff8c00;
  /* Novo tom de laranja */
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ca6105;
  /* Laranja mais escuro para o hover */
  color: white;
}

.faq-item {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(255, 182, 98, 0.8);
}

span {
  color: #e68900;
}

footer a {
  color: #ff7b00;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  footer {
    padding: 15px 0;
    /* Ajusta o espaçamento para telas menores */
    font-size: 14px;
    /* Ajusta o tamanho da fonte */
  }
}

/* Responsividade para telas muito pequenas (smartphones) */
@media (max-width: 480px) {
  footer {
    padding: 10px 0;
    /* Diminui ainda mais o espaçamento */
    font-size: 12px;
    /* Reduz o tamanho da fonte */
  }
}

#price {
  font-size: 30px;
  color: #e54e24;
  /* Cor do texto branco */
  /* Fundo vermelho-laranja para destacar */
  margin-top: 10px;
  padding: 8px 12px;
  /* Espaçamento para o texto */
  border-radius: 8px;
  /* Bordas arredondadas */
  display: inline-block;
  /* Ajusta o tamanho ao conteúdo */
  transition: transform 0.2s ease, background-color 0.2s ease;
  /* Animação suave */
}

#price:hover {
  transform: scale(1.05);
  /* Leve aumento ao passar o mouse */
}