*{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: "Poppins", sans-serif;
}
html{

    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
}

header{
    background-image: linear-gradient(to right, #4a1e1b, #4a1e1be6);
    color: white;
    padding: 0 2rem;
    height: 7rem;
    display: grid;
    align-items: center;
     
}

.container-header{
 padding: 0.5rem 1rem;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.div-logo {
    display: flex;
    margin: 0 10px;
}

.div-logo a{
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 2rem;
    line-height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5rem;
    padding:  0 20px 5px 0;
    font-family: "Pacifico", cursive;
} 

.logo-img {
    width: 5rem;
}   

.div-list {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 2rem;
   padding: 5px;
}

.button-list {
   background-color: #784538;
   border: none;
   border-radius: 20px;
   padding: 5px 1rem;
   color: white;
   font-size: 1rem;
}

.button-list:hover {
   transform: scale(1.05);
   transition-duration: 200ms;
   cursor: pointer;
}

.img-button-links {
   margin-left: 2px;
   width: 1.5rem;
}

.menu-list {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    gap: 2rem;
}

.menu-link {
    text-decoration: none;
    color: #ffffffb3;
    display: inline-block;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.menu-link:hover{
    color: white;
    transition-duration: 500ms;
}

main{
    min-height: 600px;
    padding: 0;
    background-color: #f1e9cf;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #854d3d;
}
.container-home {
 margin: 0 auto;
 padding: 3rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: center;
}
.div-text-home {
    align-items: center;
}

.h1-text-home{
    font-size: 4rem;
    font-weight: bold;
}
.span-home{
      font-family: "Pacifico", cursive;
      color: rgb(223, 74, 20);
      font-size: 5rem;
}

.button-home{
    background: linear-gradient(to right, #854d3d, #4a1e1b);
    border:2px solid #854d3d;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: white;
    text-align: center;
    display: inline-block;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;

    &:hover{
        transform: scale(1.05);}
    }

.img-home{
    width: 550px;
    transform: scale(1.25);
    animation: balanco 5s linear infinite;
}
@keyframes balanco {
    0%{
        transform: rotate(0deg);
    }

    50%{
        transform: rotate(15deg);
    }

    100%{
        transform: rotate(0deg);
    }
}

.section-service {
    padding: 0;
    margin: 0 auto;
    min-height: 600px;
}
.container-services {
    text-align: center;
    margin: 2rem auto 5rem;
    padding: 0.3re;
}

.tittle-section-services {
   font-size: 2.25rem;
   font-weight: bold;
   font-family: "Pacifico", cursive;
   color: #2d3748;
}

.div-card {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1.25rem;
   place-items: center;
}

.service-card {
   border-radius: 1rem;
   background-color: white;
   box-shadow: 0 0.25rem 2rem rgba(0, 0, 0, 0.15);
   transition: all 0.5s ease;
   position: relative;
   max-width: 365px;
    position: relative;
    height: 379px;
}

.service-card:hover {
   background-color: #854d3d;
   color: white;
}


.div-card-image {
   height: 151px;
}

.image-card {
   max-width: 200px;
   display: block;
   margin: 0 auto;
   transform: translateY(-3.5rem);
   transition: transform 0.3s ease;
}

.service-card:hover .image-card {
   transform: translateY(-3.5rem) scale(1.05) rotate(6deg);
}

.div-text-services-card {
   padding: 1rem;
   text-align: center;
}

.h1-card-service {
   font-size: 1.25rem;
   font-weight: bold;
   margin-bottom: 0.5rem;
   text-align: center; 
   font-size: 19px;
    text-align: center;
}
.h1-card{
    font-size: 22px;
    text-align: center;
    
}

.p-card-service {
   color: #343a47;
   transition: all 0.7s ease;
   font-size: 0.875rem;
   line-height: 1.25rem;
   text-align: center;
   margin-bottom: 1rem;
   padding: 24px;
   overflow: hidden;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
}
.p-card{
    
    text-align: center;
}
.service-card:hover .p-card-service {
   color: #ffffff;
}
/* Estilo para a seção do cardápio */
#cardapio {
  max-width: 800px;
  margin: 27px auto;
  padding: 2rem;
  background-color: #fffbe6;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

/* Títulos principais */
#cardapio h2 {
  text-align: center;
  font-size: 2rem;
  color: #a0522d;
  margin-bottom: 1rem;
}

/* Categorias */
.categoria {
  margin-bottom: 2rem;
}

/* Título de cada categoria */
.categoria h3 {
  font-size: 1.5rem;
  color: #8b0000;
  border-bottom: 2px solid #deb887;
  padding-bottom: 0.3rem;
  margin-bottom: 0.5rem;
}

/* Lista de itens */
.categoria ul {
  list-style-type: none;
  padding-left: 0;
}

.categoria li {
  padding: 0.3rem 0;
  border-bottom: 1px dotted #ccc;
  color: #5a4d4d;
}

/* Efeito ao passar o mouse */
.categoria li:hover {
  background-color: #f7e7ce;
  cursor: pointer;
}

.galeria-scroll {
  padding: 2rem;
  background-color: #fffbe6;
  border-radius: 10px;
  max-width: 100%;
  overflow: hidden;
}

.galeria-titulo {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  color: #a0522d;
  margin-bottom: 1rem;
  text-align: center;
}

.galeria-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.galeria-container img {
  width: 500px;
  height: 400px;
  border-radius: 10px;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.galeria-container img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Scroll suave */
.galeria-container {
  scroll-behavior: smooth;
}

.video {
  padding: 2rem;
  background-color: #fff8ef;
  text-align: center;
}

.video-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap; /* permite quebrar linha em telas menores */
  margin-top: 1rem;
}

.video-box {
  width: 400px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contato {
  padding: 2rem;
  text-align: center;
}

.maps-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 2rem;
}

.informacoes-contato {
  max-width: 600px;
  text-align: center;
}

.informacoes-contato .word {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #333;
}

.loja-center {
  width: 400px;
  border-radius: 10px;
}

.mapa-iframe {
  border-radius: 10px;
  max-width: 100%;
}

.link-whatsapp img {
   height: 60px;
   position: fixed;
   right: 20px;
   bottom: 20px;
   transition: all 1s ease-in-out;
     
}
.link-whatsapp img:hover{
   transform: scale(1.09); 
   transition: all 0.3s ease-in-out; 

}


footer {
   background-color: #0f735d;
   min-height: 150px;
   padding: 1rem;
   margin-top: 40px;
}

.div-logo-footer {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}
.div-logo-img{
    width: 100px;
}
.p-footer {
   color: white;
   margin: 1rem;
}

.footer-media{
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-media img {
  width: 30px;
  margin: 5px; 
}

.portifolio {
    font-size: 15px;
    text-decoration: none;
    color: wheat;
}
@media screen and (max-width: 763px) {
    header{
    background-image: linear-gradient(to right, #4a1e1b, #4a1e1be6);
    color: white;
    padding:  0;
    height: 7rem;
    display: grid;
    align-items: center;
}

.div-logo a, 
.div-list button{
  display: none;
}
    
    .div-logo a{
        font-size: 1.4rem;
    }
    .logo-img {
    width: 3.5rem;
}
    .menu-list{
        display: flex;
    }
.button-list {
    width: 104px;
    background-color: #784538;
    border: none;
    border-radius: 20px;
    padding: 6px 1rem;
    color: white;
    font-size: 0.rem;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h1-text-home {
      font-size: 2.6rem;
   }
  main {
      min-height: 550px;
   }

   .grid {
      display: grid;
      grid-template-columns: 1fr;
   }

.div-text-home {
      text-align: center;
   }


.img-home {
        width: 287px;
   }


   .hamburguer {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 1rem;
}

.hamburguer span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
}
   @media screen and (max-width: 740px) {
.div-card {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3.5rem;
   }
}

@media screen and (max-width: 552px) {
.div-card {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 3.5rem;
   }
}
}
    
@media (max-width: 768px) {
  .container-header,
  .div-list,
  .menu-list,
  .grid,
  .video-container,
  .maps-container,
  .div-card {
    flex-direction: column;
    align-items: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .img-home {
    width: 100%;
    transform: none;
    animation: none;
  }

  .h1-text-home {
    font-size: 2rem;
  }

  .button-home,
  .button-list {
    width: 100%;
    margin: 0.5rem 0;
  }

  .menu-list {
    gap: 1rem;
    padding: 0;
  }

  .logo-img {
    width: 4rem;
  }

  .galeria-container img {
    width: 80vw;
    height: auto;
  }

  .video-box {
    width: 90vw;
    height: auto;
  }

  .maps-container {
    gap: 1rem;
  }

  .loja-center {
    width: 100%;
    max-width: 400px;
  }

  .mapa-iframe {
    width: 100%;
    height: 300px;
  }

  .div-card {
    grid-template-columns: 1fr;
  }

  .footer-media {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-media img {
    margin: 0.5rem;
  }

  .p-footer {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hamburguer {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #4a1e1b;
    position: absolute;
    top: 7rem;
    right: 0;
    width: 100%;
    padding: 1rem 0;
  }

  .nav-menu.show {
    display: flex;
  }

  .menu-list {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .menu-link {
    color: #fff;
    font-size: 1.25rem;
  }
}