* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', Times, serif !important;
}

body {
  line-height: 1.6;
  color: #fff;
  background: #222;
}


/* Cabeçalho */
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(20, 20, 20, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

header.scrolled {
  background: rgba(41, 40, 40, 0.8);
  box-shadow: 0 2px 10px rgba(68, 68, 68, 0.1);
}

header .logo img {
  height: 50px;
}

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

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #007bff;
}

/* Slider */
.slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.home-negocio img {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.home-cardapio img{
  width: 100%;
  height: 40vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}


.slide {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-overlay {
    display: flex;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-around;
}

.logo-overlay img {
  width: 300px;
  animation: fadeIn 2s;
  text-align: center;
  left: 50%;
}

.logo-overlay h1 {
  color: #fff;
  text-shadow: 2px 2px black;
}

.logo-overlay span {
  white-space: nowrap;
}

.logo-overlay-cardapio {
  text-align:center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: space-around;
}


.logo-overlay-cardapio span {  
  white-space: nowrap;
 }

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.btnPrincipal {
  margin-top: 200px;
  width: 165px;
  padding: 8px;
  border-radius: 20px;
  border: none;
  text-transform: uppercase;
  color: #fff;
  background-color: #007bff;
  font-weight: bold;
  margin-left: 80px;
  cursor: pointer;
}

.btnPrincipal:hover{
  background-color: #c00707;
}


/* Seções */
section {
  padding: 30px 20px;
  background: #333;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

section:nth-child(odd) {
  background: #333;
}

section h2 {
  margin-bottom: 10px;
  color: #ffff;
  font-size: 2em;
  text-align: center;
}

section p {
  font-size: 1em;
  text-align: center;
}

section a {
  display: flex;
 
}

#menu-fornalha{
  margin-top: 100px;;
}

#contact-info {
  margin-top: 20px;
  text-align: center;
}

#contact-info h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

#contact-info p {
  font-size: 1.1em;
  margin-bottom: 5px;
}

#contact-info a {
  display: inline-block; /* Garante que o link seja exibido como um bloco inline */
  text-align: center; /* Alinha o texto dentro do link ao centro */
  text-decoration: none;
  color: #007bff;
}

.backgroundLoja {
  width: 100%;
  height: 590px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #dddddd;
  opacity: 0.6;
  filter: alpha(opacity=50);
}

.backgroundNegocio {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Galeria de Produtos */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-item {
  flex: 1 1 calc(25% - 10px);
  background: #444;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 10px;
  transition: transform 0.3s;
}

/* Overlay para desfoque do fundo */
.overlay {
  display: none; /* Inicialmente escondido */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(214, 207, 207, 0.8); /* Leve escurecimento para a camada de sobreposição */
  z-index: 1; /* Fica atrás do modal */
}


/* Estilo para o modal */
.modal {
  display: none; 
  position: fixed; 
  z-index: 2; /* Fica acima da camada de sobreposição */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Adicionado para alinhar o texto abaixo da imagem */
  justify-content: center;
  align-items: center;
  background-color: #fff; /* Fundo branco para melhor contraste */
  border-radius: 8px;
  padding: 20px;
}

.modal-img {
  width: 100%;        /* Ajusta a largura para 100% do contêiner pai */
  max-width: 350px;   /* Define a largura máxima */
  height: auto;       /* Mantém a proporção da imagem */
  display: block;
  object-fit: cover;  /* Garante que a imagem preencha o contêiner sem distorção */
}

.modal-caption {
  margin-top: 10px;
  color: #000;
  text-align: center;
  font-size: 18px;
}

.modal-description {
  margin-top: 10px;
  color: #333;
  text-align: center;
  font-size: 16px;
  padding: 0 20px; /* Adiciona algum espaçamento lateral */
}

.close {
  position: absolute;
  top: 80px; /* Ajustado para não conflitar com o conteúdo do modal */
  right: 10px;
  color: #ece6e6;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 3; /* Fica acima do conteúdo do modal */
}

.close:hover,
.close:focus {
  color: #555;
  text-decoration: none;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #000;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 3px;
  cursor: pointer;
  z-index: 3; /* Fica acima do conteúdo do modal */
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.5);
}


.gallery-toskos { 
  overflow: hidden;
  text-align: center;
  padding: 10px;
  transition: transform 0.3s;
}

.gallery-item img{
  min-width: 300px; 
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s; 
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item p {
  margin-top: 10px;
  color: #fff;
  font-size: 1.0em;
}

.btnProduct {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.btnProduct:hover {
  background-color: #0056b3;
}

/* Responsividade */
@media (max-width: 768px) {
  .gallery-item {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}

.gallery img {
  width: calc(25% - 10px);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.gallery-button {
  margin: 15px;
  flex: 1 1 calc(25% - 10px);
  text-align: center;
}


article {
  margin-bottom: 20px;
}

article h3 {
  font-size: 20px;
  color: #ff0000;
  margin-bottom: 10px;
}

article ul {
 
  margin: 15px;
  padding: 0;
}

article ul li {
  margin-bottom: 5px;
}

 .tstimg img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 10px;
} 


/* Rodapé */
footer {
  background: #333;
  color: #fff;
  padding: 20px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.footer-logo img {
  height: 80px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  text-decoration: none;
}

.footer-nav ul li {
  margin-left: 20px;
  text-decoration: none;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav ul li a:hover {
  color: #007bff;
}

.footer-social a { 
  text-decoration: none;
}

.footer-social img {
  width: 40px;
  height: 40px; 
  transition: transform 0.3s;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  background: #222;
  color: #bbb;
}

.footer-bottom p {
  margin: 0;
}

#map {
  margin-top: 50px;
  height: 400px;
  width: 100%;
  position: relative;
}

#mapaCopa {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    background: #333;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 10px;
  }

  .logo-overlay {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  header nav ul.active {
    display: flex;
  }

  header nav ul li {
    margin: 10px 0;
  }

  .gallery img {
    width: calc(50% - 10px);
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav ul li {
    margin: 10px 0;
  }

  .footer-social {
    margin-top: 10px;
  }
}


.gallery-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2vw;
  padding: 0 2vw;
}
.gallery-items{
  width: 340px;
  height: 340px;
  border: 10px solid #FFF;
  box-shadow: 5px 5px 5px #0006;
  flex-grow: 1;
  transition: transform .5s linear;
}
.gallery-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-items:hover{
  transform: scale(1.3);
}

.title {
  font-size: 48px;
}

.subtitle {
  text-align: center; 
  font-size: 28px;
}

@media (min-width: 1000px) {
/* Estilo global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', Times, serif !important;
}

body {
  line-height: 1.6;
  color: #fff;
  background: #222;
}

/* Cabeçalho */
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(20, 20, 20, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

header.scrolled {
  background: rgba(41, 40, 40, 0.8);
  box-shadow: 0 2px 10px rgba(68, 68, 68, 0.1);
}

header .logo img {
  height: 50px;
}

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

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #007bff;
}

/* Slider */
.slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.home-negocio img {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.home-cardapio img {
  width: 100%;
  height: 40vh;
  position: relative;
  overflow: hidden;
 
}

.slide {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-overlay {
  display: flex;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: space-around;
}

.logo-overlay img {
  width: 300px;
  animation: fadeIn 2s;
  text-align: center;
  left: 50%;
}

.logo-overlay h1 {
  color: #fff;
  text-shadow: 2px 2px black;
}

.logo-overlay span {
  white-space: nowrap;
}

.logo-overlay-cardapio {
  text-align: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: space-around;
}

.logo-overlay-cardapio span {  
  white-space: nowrap;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.btnPrincipal {
  margin-top: 200px;
  width: 165px;
  padding: 8px;
  border-radius: 20px;
  border: none;
  text-transform: uppercase;
  color: #fff;
  background-color: #007bff;
  font-weight: bold;
  margin-left: 80px;
  cursor: pointer;
}

.btnPrincipal:hover {
  background-color: #c00707;
}

/* Seções */
section {
  padding: 30px 20px;
  background: #333;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

section:nth-child(odd) {
  background: #333;
}

section h2 {
  margin-bottom: 10px;
  color: #ffff;
  font-size: 2em;
  text-align: center;
}

section p {
  font-size: 1em;
  text-align: center;
}

section a {
  display: flex;
}

#menu-fornalha {
  margin-top: 100px;;
}

#contact-info {
  margin-top: 20px;
  text-align: center;
}

#contact-info h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

#contact-info p {
  font-size: 1.1em;
  margin-bottom: 5px;
}

#contact-info a {
  display: inline-block; /* Garante que o link seja exibido como um bloco inline */
  text-align: center; /* Alinha o texto dentro do link ao centro */
  text-decoration: none;
  color: #007bff;
}

.backgroundLoja {
  width: 100%;
  height: 590px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #dddddd;
  opacity: 0.6;
  filter: alpha(opacity=50);
}

.backgroundNegocio {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Galeria de Produtos */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-item {
  flex: 1 1 calc(25% - 10px);
  background: #444;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 10px;
  transition: transform 0.3s;
}

/* Overlay para desfoque do fundo */
.overlay {
  display: none; /* Inicialmente escondido */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(214, 207, 207, 0.8); /* Leve escurecimento para a camada de sobreposição */
  z-index: 1; /* Fica atrás do modal */
}

/* Estilo para o modal */
.modal {
  display: none; 
  position: fixed; 
  z-index: 2; /* Fica acima da camada de sobreposição */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Adicionado para alinhar o texto abaixo da imagem */
  justify-content: center;
  align-items: center;
  background-color: #fff; /* Fundo branco para melhor contraste */
  border-radius: 8px;
  padding: 20px;
}

.modal-img {
  width: 100%;        /* Ajusta a largura para 100% do contêiner pai */
  max-width: 350px;   /* Define a largura máxima */
  height: auto;       /* Mantém a proporção da imagem */
  display: block;
  object-fit: cover;  /* Garante que a imagem preencha o contêiner sem distorção */
}

.modal-caption {
  margin-top: 10px;
  color: #000;
  text-align: center;
  font-size: 18px;
}

.modal-description {
  margin-top: 10px;
  color: #333;
  text-align: center;
  font-size: 16px;
  padding: 0 20px; /* Adiciona algum espaçamento lateral */
}

.close {
  position: absolute;
  top: 80px; /* Ajustado para não conflitar com o conteúdo do modal */
  right: 10px;
  color: #ece6e6;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 3; /* Fica acima do conteúdo do modal */
}

.close:hover,
.close:focus {
  color: #555;
  text-decoration: none;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #000;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 3px;
  cursor: pointer;
  z-index: 3; /* Fica acima do conteúdo do modal */
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

/* Seções para Responsividade */
@media only screen and (max-width: 768px) {
  .logo-overlay {
    top: 50%;
  }

  .logo-overlay img {
    width: 250px;
  }

  .gallery-item {
    flex: 1 1 calc(50% - 10px);
  }
}

@media only screen and (max-width: 480px) {
  header nav ul li {
    margin-left: 10px;
  }

  .btnPrincipal {
    width: 120px;
    padding: 6px;
    font-size: 14px;
  }

  .gallery-item {
    flex: 1 1 calc(100% - 10px);
  }
}

/* Estilo específico para desktop */
@media only screen and (min-width: 769px) {
  .container {
    display: flex;
    flex-wrap: wrap;
  }

  .home-cardapio {
    flex: 1 1 50%;
    padding: 10px;
  }

  .home-negocio {
    flex: 1 1 50%;
    padding: 10px;
  }
}

}