* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #faf9f9;
}

p {
  font-family: "Nunito Sans", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}

H1 {
  font-family: "DM Serif Display", serif;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
}

h2 {
  font-family: "DM Serif Display", serif;
  font-size: 33px;
  font-weight: 500;
  font-style: normal;
}

h3 {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  font-weight: 500;
  font-style: normal;
}

.container_principal {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container_header {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

header {
  height: 100px;
  display: flex;
  align-items: center;
}

.logo,
.header-space {
  flex: 1;
}

.logo img {
  height: 120px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style-type: none;
  border: solid 2.5px #66372c;
  padding: 15px;
  border-radius: 45px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  font-weight: 500;
}

/* HERO */

.hero {
  margin-top: 35px;
  width: 100%;
  height: 300px;
  background-image: linear-gradient(
      rgba(66, 66, 66, 0.7),
      rgba(66, 66, 66, 0.7)
    ),
    url("bg_image.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero_container {
  max-width: 1440px;
  align-items: center;
  text-align: Center;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.texto_hero {
  text-align: center;
  color: white;
}

.texto_hero h1 {
  padding-top: 35px;
  margin-bottom: 10px;
}

.bts_hero {
  display: flex;
  justify-content: center;
  gap: 200px;
  margin-top: 30px;
}

.cardapio {
  border: solid 1.8px #b87333;
  border-radius: 30px;
  font-size: 16px;
  padding: 8px;
  transition: 0.5s ease;
}

.cardapio a{
     text-decoration: none;
  color: black;
}

.cardapio a:hover{
    color: white;
}

.cardapio:hover {
  background-color: #66372c;
  color: white;
  scale: 1.05;
  border: none;
}

.pedido_hero {
  border: solid 1.8px #b87333;
  border-radius: 30px;
  font-size: 16px;
  padding: 8px;
  transition: 0.5s ease;
}

.pedido_hero a{
    color: rgb(0, 0, 0);
    text-decoration: none;
}


.pedido_hero a:hover{
    color: white;
}

.pedido_hero:hover {
  background-color: #66372c;
  color: white;
  scale: 1.05;
  border: none;
}

/*Produtos*/

.produtos {
  margin-top: 35px;
}
.barra_tiltulo {
  width: 200px;
  height: 4px;
  background-color: #66372c;
  border-radius: 100px;
  margin: 5px auto;
}

.texto_produtos {
  text-align: center;
  align-items: center;
  margin: auto;
}

.texto_produtos p {
  margin-right: 200px;
  margin-left: 200px;
}

.produto_area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.produto_box {
  background: #ffffff;
  border: solid 1.5px #66372c;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  padding: 10px;
}

.produto_box:hover {
  transform: translateY(-8px);
}

.produto_box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.produto_info {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.produto_texto h3 {
  font-size: 20px;
  color: #2d1810;
  font-weight: 600;
}

.produto_preco {
  text-align: center;
}

.produto_preco span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #66372c;
  margin-bottom: 10px;
}

.produto_preco a {
  display: inline-block;

  background: #66372c;
  color: #fff;

  padding: 10px 18px;
  border-radius: 10px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  transition: 0.3s ease;
}

.produto_preco a:hover {
  background: #4f281f;
}

/* NOSSA HISTORIA*/

.tilt_nossa {
  justify-content: center;
  text-align: center;
  margin: 45px auto;
}

.barra_nossa {
  width: 200px;
  height: 4px;
  background-color: #66372c;
  border-radius: 100px;
  margin: 5px auto;
}

.nossa_historia {
  display: flex;
  margin: 60px auto;
  border: solid 1.5px #66372c;
  border-radius: 45px;
  height: 450px;
  padding: 50px;
  background: linear-gradient(#e3dcd7, #ddcdc8, #f5f5f5);
}

.galeria_imagens {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  padding-right: 4px;
}

.galeria_imagens img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 20px;
}

.img-base-esquerda {
  margin-top: 100px;
  grid-column: 1/2;
  grid-row: 1/3;
}

.img-direita {
  grid-column: 2/3;
  grid-row: 1/3;
}

.conteudo_texto {
  flex: 1;
  padding: 0px 80px;
}

.conteudo_texto h2 {
  font-weight: 600px;
  margin-bottom: 30px;
  line-height: 1.2;
  color: black;
}

.conteudo_texto p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000000;
  font-weight: 600;
}

/* KITS */

.kits {
  justify-items: center;
  margin: auto;
}

.barra_kit {
  width: 60px;
  height: 4px;
  background-color: #66372c;
  border-radius: 100px;
  margin: 5px auto;
}

.barra_kit_presente {
  width: 315px;
  height: 4px;
  background-color: #66372c;
  border-radius: 100px;
  margin-top: 5px;
  margin-bottom: 35px;
}

.espaco_kit {
  display: flex;
  margin-top: 45px;
}

.texto_kit p {
  text-align: justify;
  padding-right: 250px;
  margin-bottom: 60px;
}

.texto_kit img {
  margin-left: 200px;
}

.bt_kit {
  border: solid 1.8px #b87333;
  border-radius: 30px;
  font-size: 20px;
  padding: 8px;
  transition: 0.5s ease;
  background-color: white;
}

.bt_kit a{
    text-decoration: none;
    color: #000000;
}

.bt_kit a:hover{
    text-decoration: none;
    color: #ffffff;
}

.bt_kit:hover {
  background-color: #66372c;
  color: white;
  scale: 1.05;
  border: none;
}

.foto_kit img {
  width: 400px;
  height: 550px;
  border-radius: 45px;
  border: solid 2.5px #66372c;
}

/* CONTATO */

.contato {
  margin: 45px auto;
  border: solid 2.5px #66372c;
  border-radius: 45px;
  background-color: white;
  padding: 40px;
  max-width: 1440px;
  overflow: hidden;
}

.barra_contato {
  width: 110px;
  height: 4px;
  background-color: #66372c;
  border-radius: 100px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.espaco_contato {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.texto_contato h2 {
  margin-bottom: 20px;
}

.entrar_contato {
  border: solid 1.8px #2d1810;
  border-radius: 30px;
  font-size: 20px;
  padding: 8px 25px;
  transition: 0.5s ease;
  background-color: white;
  margin-top: 20px auto;
  cursor: pointer;
}

.entrar_contato a{
    text-decoration: none;
    color:black;
}

.entrar_contato a:hover{
    color: white;
}

.entrar_contato:hover{
  background-color: #66372c;
  color: white;
  transform: scale(1.05); /* Melhor suporte usando transform */
  border-color: #66372c;
}

.foto_contato img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

@media (min-width: 992px) {
  .espaco_contato {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }

  .texto_contato {
    width: 50%;
    transform: translateX(50%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
    margin-right: 0;
  }

  .foto_contato {
    width: 50%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    transform: translateX(-50%);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .contato.animado .texto_contato {
    transform: translateX(0);
    opacity: 1;
  }

  .contato.animado .foto_contato {
    transform: translateX(0);
  }
}
/* Acompanhe */

.acompanhe {
  margin-top: 45px;
}

.acompanhe_container {
  display: flex;
}
.foto_insta {
  display: inline-block;
}

.texto_acompanhe {
  text-align: justify;
}

.barra_acompanhe {
  width: 110px;
  height: 4px;
  background-color: #66372c;
  border-radius: 100px;
  margin-top: 5px;
  margin-bottom: 40px;
}

.logos {
  display: flex;
  gap: 90px;
  align-items: center;
}

.logo1 {
  width: 200px;
}

.logo2 {
  width: 200px;
  height: 100px;
}

.texto_acompanhe p {
  margin-right: 300px;
}

.foto_insta {
  margin-top: 50px;
}

.seguir_insta {
  border: solid 1.8px #2d1810;
  border-radius: 30px;
  font-size: 18px;
  padding: 8px;
  transition: 0.5s ease;
  background-color: white;
  margin-top: 20px;
  margin-left: 10px;
  margin-bottom: 20px;
}

.seguir_insta:hover {
  background-color: #66372c;
  color: white;
  scale: 1.05;
  border: none;
}

.seguir_insta a {
  text-decoration: none;
  color: #000000;
}
.fotos {
  display: flex;
}

.foto2 {
  margin-top: 20px;
  margin-left: 50px;
  transition: transform 0.3s ease;
  animation: escala 1.5s infinite alternate;
}

.foto2:hover {
  transform: scale(1.2);
}

.foto1 {
  transition: transform 0.5s ease;
}

.foto1:hover {
  transform: scale(1.2);
}

.social_mobile {
  display: none;
}

/*FOOTER*/

footer {
  margin-top: 40px;
  background: linear-gradient(180deg, #ffffff 52%, #622a20 52%);
  color: white;

  z-index: 1;
  position: relative;
}

.footer_container {
  max-width: 1440px;
  margin: 0 auto;

  padding: 60px 20px;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
}

.footer_logo {
  width: 140px;
  margin-bottom: 20px;
}

.footer_col h3 {
  margin-bottom: 20px;
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  font-weight: 400;
  color: #4f281f;
}

.footer_col p {
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 22px;
  color: #4f281f;
}

.footer_col ul {
  list-style: none;
  font-size: 20px;
}

.footer_col ul li {
  margin-bottom: 12px;
  color: #4f281f;
  font-size: 20px;
  font-weight: 600;
}

.footer_col a {
  color: #4f281f;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer_col a:hover {
  opacity: 0.7;
}

.footer_social {
  margin-top: 20px;
}

.footer_social img {
  width: 32px;
  height: 32px;
  transition: 0.3s ease;
}

.footer_social img:hover {
  transform: scale(1.1);
}

.footer_bottom {
  border-top: 1.2px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 20px;
}

.footer_bottom p {
  font-size: 14px;
}


.footer_bottom a{
  text-decoration: none;
  color: white;
  font-family: "Nunito Sans", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;

}


.brownie_flutuante {
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  z-index: 10;
}

.brownie_flutuante img {
  width: 350px;
  height: auto;
  transform: rotate(78deg);
}

.brownie_flutuante2 {
  position: absolute;
  right: 0;
  transform: translateX(-50%);
  z-index: 0;
}

.brownie_flutuante2 img {
  width: 350px;
  height: auto;
  transform: rotate(78deg);
}

.historia_mobile {
  display: none;
}

/*------ !!! MOBILE !!!! ----*/

@media (max-width: 768px) {
  .produto_area {
    display: flex;
    overflow-x: auto;
    gap: 20px;

    padding: 10px 5px 20px 5px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .produto_area::-webkit-scrollbar {
    display: none;
  }

  .produto_box {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

/***- Header ***/

@media (max-width: 768px) {
  header {
    justify-content: center;
    height: auto;
    padding: 15px 0;
  }

  nav {
    display: none;
  }

  .header-space {
    display: none;
  }

  .logo {
    text-align: center;
  }

  .logo img {
    height: 90px;
  }
}

/*----HERO ----*/

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 50px 0;
  }

  .texto_hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .texto_hero h2 {
    font-size: 18px;
    line-height: 1.5;
  }

  .bts_hero {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .cardapio {
    margin: auto;
  }

  .pedido_hero {
    margin: auto;
  }
}

/*--- PRODUTOS ----*/

@media (max-width: 768px) {
  .texto_produtos p {
    margin: 0;
    padding: 0 15px;
    text-align: center;
  }
}

/*--- Historia ----*/

@media (max-width: 768px) {
  .tilt_nossa,
  .nossa_historia {
    display: none;
  }

  .historia_mobile {
    display: block;
    text-align: center;
    margin: 40px 0;
    padding: 0 20px;
  }

  .titulo_mobile h2 {
    margin-bottom: 20px;
  }

  .fthistoria_mobile {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 25px;
    margin-bottom: 25px;
  }

  .texto_mobile p {
    text-align: justify;
    font-size: 16px;
    line-height: 1.7;
  }

  .fthistoria_mobile {
    width: 300px;
    transition: transform 0.8s ease;
    animation: flutuar 3s ease-in-out infinite alternate;
  }

  .fthistoria_mobile:hover {
    transform: scale(1.1);
  }
}

/*--- Kits Mobile ----*/

@media (max-width: 768px) {
  .espaco_kit {
    flex-direction: column;
    gap: 30px;
    margin-top: 10px;
  }

  .texto_kit p {
    margin-top: 20px;
    padding-right: 0;
    text-align: justify;
  }

  .barra_kit_presente {
    width: 90px;
    margin: auto;
    display: none;
  }

  .texto_kit {
    text-align: center;
  }

  .bt_kit {
    margin-bottom: -20px;
    margin-top: -25px;
  }

  .texto_kit img {
    width: 150px;
    display: none;
  }

  .foto_kit {
    margin: auto;
  }

  .foto_kit img {
    width: 100%;
    max-width: 150px;
    height: auto;
  }
}

/*--- Contato ----*/

@media (max-width: 768px) {
  .contato {
    margin: 20px auto;
    padding: 10px;
  }
  .espaco_contato {
    flex-direction: column;
    text-align: center;
  }

  .texto_contato {
    margin-right: 0;
  }

  .texto_contato h2 {
    text-align: center;
  }

  .texto_contato p {
    text-align: justify;
  }
  .texto_contato h3 {
    margin-bottom: 20px;
    text-align: center;
  }

  .foto_contato {
    text-align: center;
  }
  .foto_contato img {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-top: 25px;
    animation: flutuar 3s ease-in-out infinite alternate;
  }

  .barra_contato {
    margin: auto auto 20px;
  }

  .espaco_contato button {
    text-align: center;
    margin: auto;
  }
}

/*--- Instagram ----*/

@media (max-width: 768px) {
  .acompanhe {
    display: none;
  }

  .social_mobile {
    display: block;
    margin-top: 50px;
    padding: 0 20px;
  }

  .social_mobile_content {
    text-align: center;
  }

  .social_mobile_content h2 {
    margin-bottom: 10px;
  }

  .social_mobile_bar {
    width: 120px;
    height: 4px;
    background: #66372c;
    border-radius: 999px;
    margin: 0 auto 25px auto;
  }

  .social_mobile_content p {
    margin-bottom: 25px;
    line-height: 1.7;
  }

  .btn_instagram_mobile {
    border: solid 1.8px #66372c;
    border-radius: 30px;
    padding: 10px 20px;
    background: white;
    margin-bottom: 25px;
  }

  .btn_instagram_mobile a {
    text-decoration: none;
    color: #66372c;
    font-weight: 600;
  }

  .instagram_mobile_gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }

  .instagram_mobile_img {
    width: 45%;
    max-width: 160px;
    border-radius: 20px;
  }

  .delivery_mobile_logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
  }

  .delivery_mobile_logo {
    width: 120px;
    height: auto;
  }
}

/*--- Acompanhe ---*/

@media (max-width: 768px) {
  .acompanhe {
    display: none;
  }

  .social_mobile {
    display: block;
    margin-top: 50px;
    padding: 0 20px;
  }

  .social_mobile_content {
    text-align: center;
  }

  .social_mobile_content h2 {
    margin-bottom: 10px;
  }

  .social_mobile_bar {
    width: 120px;
    height: 4px;
    background: #66372c;
    border-radius: 999px;
    margin: 0 auto 25px auto;
  }

  .social_mobile_content p {
    margin-bottom: 25px;
    line-height: 1.7;
  }

  .btn_instagram_mobile {
    border: solid 1.8px #66372c;
    border-radius: 30px;
    padding: 10px 20px;
    background: white;
    margin-bottom: 25px;
  }

  .btn_instagram_mobile a {
    text-decoration: none;
    color: #66372c;
    font-weight: 600;
  }

  .instagram_mobile_gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }

  .instagram_mobile_img {
    width: 45%;
    max-width: 160px;
    border-radius: 20px;
  }

  .delivery_mobile_logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
  }

  .delivery_mobile_logo {
    width: 120px;
    height: auto;
  }
}

/*--- Footer ----*/

@media (max-width: 768px) {
  .footer_container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer_logo {
    margin: 0 auto 20px auto;
    display: block;
  }

  .historia_li a {
    color: white;
  }

  .footer_col h3 {
    color: white;
  }

  .footer_col ul li {
    color: white;
  }
}

/*--- Elementos flutuantes ----*/

@media (max-width: 768px) {
  .brownie_flutuante,
  .brownie_flutuante2 {
    display: none;
  }
}

/*--- Tipografia----*/

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/*--- Animações ---*/

@keyframes flutuar {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes escala {
  from {
    transform: scale(1); /* Tamanho original */
  }
  to {
    transform: scale(1.04); /* Tamanho aumentado */
  }
}

/*---Menu MOBILE ---*/

.menu_mobile {
  display: none;
}

.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .menu_desk {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 35px;
    z-index: 1001;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: #66372c;
    border-radius: 10px;
    transition: 0.3s;
  }

  .menu_mobile {
    position: fixed;
    top: 0;
    margin-top: 45px;
    right: -100%;
    width: 160px;
    height: 500px;
    background: #faf9f9;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu_mobile.active {
    right: 0;
  }

  .menu_mobile ul {
    display: flex;
    flex-direction: column;
    align-items: center;

    list-style: none;
    padding: 0;
    margin: 0;

    gap: 25px;
  }

  .menu_mobile li {
    margin: 25px 0;
  }

  .menu_mobile a {
    text-decoration: none;
    color: #66372c;
    font-size: 22px;
    font-weight: 600;
  }
}

.bt_what {
  position: fixed;

  width: 60px;
  height: 60px;

  right: 50px;
  bottom: 20px;

  background-color: #25d366;
  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 40px;

  text-decoration: none;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

  z-index: 9999;

  transition: transform 0.3s ease, background-color 0.3s ease;
}

.bt_what:hover {
  transform: scale(1.08);
  background-color: #20ba5a;
}

.bt_what i {
  margin: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .bt_what {
    width: 45px;
    height: 45px;

    right: 12px;
    bottom: 15px;

    font-size: 30px;
  }
}

.bt_what {
  animation: pulsar 2s infinite;
}

@keyframes pulsar {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.pedido_modal {
  display: none;

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.6);

  justify-content: center;
  align-items: center;

  z-index: 99999;
}

.pedido_modal_content {
  background: #fff;

  width: 90%;
  max-width: 450px;

  padding: 30px;

  border-radius: 25px;

  display: flex;
  flex-direction: column;

  gap: 15px;
}

.pedido_modal_content h2 {
  text-align: center;
}

.pedido_modal_content label {
  font-weight: 600;
}

.pedido_modal_content input,
.pedido_modal_content select {
  padding: 12px;

  border: 1px solid #ccc;

  border-radius: 10px;

  font-size: 16px;
}

.pedido_modal_content button {
  background: #66372c;

  color: white;

  border: none;

  border-radius: 10px;

  padding: 14px;

  cursor: pointer;

  font-size: 16px;
}

.pedido_modal_content button:hover {
  background: #4f281f;
}

.fechar_modal {
  align-self: flex-end;

  cursor: pointer;

  font-size: 28px;
}

.valor_total {
  font-size: 22px;

  font-weight: bold;

  color: #66372c;

  text-align: center;
}
