*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html, body {
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  overflow-x: hidden;
}

body{
    background-color: #F5F3EE;
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

/* Estilo do header */

    header .btn-contato button, .hero-site button{
        font-size: 18px;
        background-color: transparent;
        color: #000;
        cursor: pointer;
        transition: 0.5s;
        border-radius: 13px;
    }


header{
    width: 100%;
    padding: 6px 0;
    position: absolute;
    top: 0;
    transition: 0.5s;
    z-index: 1300;
}

header .interface{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img{
max-width: 100px;
cursor: pointer;
}


/* estilo menu dinamico */
header .logo img.logo-preta{
    display: none;
    cursor: pointer;
}

 header.rolar .logo img.logo-preta{ 
        display: block;
    cursor: pointer;
}

header.rolar .logo img.logo-branca{
        display: none;
    cursor: pointer;
}

header.rolar{
    background-color: #F5F3EE;
    padding: 10px 0;
    box-shadow: 0 0 10px #000000a1;
}

header.rolar .menu-desktop nav ul li a{
    color: #000;
}

header.rolar .btn-contato button{
    color: #000;
}

header.rolar .btn-contato button:hover{
transform: scale(1.05);
}

header.rolar .logo .logo-branca{
    cursor: pointer;
}
*/

/* --------------------------- */

header .menu-desktop nav ul{
list-style-type: none;
}

header .menu-desktop nav ul li{
display: inline-block;
margin: 0 40px;
}

    header .menu-desktop nav ul li a{
        color: #000;
        text-decoration: none;
        display: inline-block;
        transition: 0.2s;
        margin-left: -30px;
    }

    .menu-desktop nav a:hover{
transform: scale(1.05);
    }
    header .btn-contato button{
        width: 30px;
        height: 30px;
        padding: 0 10px;
        border: none;
    }


    header .btn-contato button:hover, .hero-site button:hover{
        background-color: transparent;
    transform: scale(1.05);
    }

    header .logo:hover{
         transform: scale(1.05);
    }

    header.rolar .logo:hover{
         transform: scale(1.05);
    }
/* ---------------- HEADER MOBILE ---------------- */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    backdrop-filter: blur(0px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.mobile-header .interface-mob {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-mobile {
    max-height: 40px;
}
/* ---------------- BOTÃO HAMBURGER ---------------- */
.menu-btn {
    position: relative;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.logo-mobile {
    content: url('https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/408b0f0d-9923-4d02-5359-8c91f4cd9e00/public');
}

.mobile-header.scrolled .menu-btn span {
    background-color: #333; 
}

.mobile-header.scrolled .logo-mobile {
    content: url('https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/02157828-d323-40da-94bf-4147a5057900/public'); 
}

.menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -8px);
}

/* HEADER SÓLIDO AO SCROLL */
.mobile-header.scrolled {
    background-color: #F5F3EE;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ---------------- MENU OFF-CANVAS LATERAL DIREITA ---------------- */
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -50%; 
    width: 35%; 
    height: 100svh; 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.offcanvas-menu .menu-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 65%;
    height: calc(100% - 60px);
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.offcanvas-menu.open {
    right: 0;
}

.offcanvas-menu.open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.menu-content {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.menu-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px; 
}

.menu-content ul li a {
    text-decoration: none;
    color: #000;
    font-size: 28px; 
    font-weight: bold;
    transition: color 0.2s ease;
}

.menu-content ul li a:hover {
    color: #777;
}

@media (max-width: 840px) {
    .menu-desktop {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    .logo {
      display: none;
    }
    .logo-mob {
      display: block;
    }
    
}

@media (min-width: 841px) {
    .menu-desktop {
        display: block;
    }
    .mobile-header {
        display: none;
    }
    .logo {
      display: block;
    }
    .logo-mob {
      display: none;
    }
}

@media (max-width: 600px) {
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -50%; 
    width: 45%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
}

@media (max-width: 500px) {
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -80%; 
    width: 55%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
}

@media (max-width: 389px) {
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -80%; 
    width: 60%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
}

@media (max-width: 355px) {
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -80%; 
    width: 65%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
}

.offcanvas-footer {
  display: flex;
  flex-direction: column;
  height: 100%; 
  padding: 20px;
}

.offcanvas-footer .top-footer {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.offcanvas-footer .top-footer button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: transparent;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.offcanvas-footer .top-footer button:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.1);
}


.offcanvas-footer .bottom-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}


body.no-overflow{
    overflow: hidden;
}


.fundo  {
    height: 550px;
    width: 100vw;
    background-image: url("https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/e3c5cce9-ddf7-4b36-37d6-2f23bb1ddb00/public");
    background-size: cover;
        background-repeat: no-repeat;
        position: relative;

}



.historia-marca {
        color: #000;
    justify-content: center;
    padding: 80px 10px;
    background-color: #F5F3EE;
}

.historia-marca h3{
    text-align: center;
    padding-top: -68px ;
    margin-bottom: 60px;
    padding-bottom: 35px;
  font-size: 50px;
  font-family: "Poppinst", sans-serif;
  margin-bottom: 15px;
    font-weight: 1.2em;
  font-style: normal;
}


.historia-marca p{
        text-align: justify;
        font-weight: 800px;
        margin-left: 140px;
        margin-right: 170px;
        line-height: 25px;
        color: #555;
        font-family: "Montserrat", sans-serif;
        font-size: 1.1em;
}

.historia-marca span{
    text-align: justify;
font-weight: bold;
font-weight: 700px;
}

@media (max-width: 440px) {
.historia-marca h1{
        text-align: center;
    padding: 25px;
        font-size: 25px;
        padding-top: 30px;
}

.historia-marca p{
        text-align: justify;
        font-weight: 800px;
        margin-left: 190px;
        margin-right: 190px;
        line-height: 25px;
        color: #555;
        font-family: "Poppins", sans-serif;
        font-size: 1.1em;
}

.historia-marca span{
    text-align: left;
font-weight: bold;
font-weight: 700px;
}
}


.galeria {
  width: 100%;
  margin: 50px auto;
}

.linha {
  display: grid;
  gap: 3px;
  margin-bottom: 25px;
  margin-top: 25px;
  opacity: 1;

}

.linha-3 {
  display: grid;
  gap: 0px;
  margin-bottom: 25px;
  margin-top: 25px;
  opacity: 1;

}



.linha-4 {
  grid-template-columns: repeat(4, 1fr);
}

.linha-3 {
  grid-template-columns: repeat(3, 1fr);
}

.galeria img {
  width: 100%;
  height: 565px;
  object-fit: cover;
  border-radius: 0px;
  cursor: pointer;
  transition: 0.3s;
  
}

.galeria img:hover {
  transform: scale(1.02);
}

/* MODAL */
#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.watermark {
  display: flex;
  justify-content: space-around;
  align-items: center;

  padding: 15px 0;
  width: 100%;

  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(0, 0, 0, 0.2); /* leve/transparente */
  
  text-transform: uppercase;
}.watermak {
  display: flex;
  justify-content: space-around;
  align-items: center;

  padding: 15px 0;
  width: 100%;

  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(0, 0, 0, 0.4); /* leve/transparente */
  
  text-transform: uppercase;
}

#modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .linha-4,
  .linha-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  /* TABLET */

  .linha-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .linha-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeria img {
    height: 220px;
  }

  .divisor-texto {
    font-size: 11px;
    letter-spacing: 3px;
  }
}


.wpp-flutuante {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  font-size: 28px;
}

.wpp-flutuante:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

/* Seção visitas */
.visitas {
  background: #F5F3EE;
  padding: 80px 20px;
  text-align: center;
}

.visitas h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.visitas p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

/* Cards */
.opcoes-visitas {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.visita-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 300px;
  min-height: 250px;
  text-align: center;

}



.visita-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.visita-card p {
  font-size: 14px;
  margin-bottom: 25px;
  color: #777;
}

/* Botão */
.btn-visita {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-visita:hover {
  background-color: #000;
  transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .opcoes-visitas {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}


     /* estilo do rodape */

     footer{
        background-color: #F5F3EE;
        width: 100%;
        text-align: center;
        padding: 30px 0;
     }

     footer .top-footer button{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        background-color: #000;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        margin: 0 10px;
        transition: 0.5s;
        margin-bottom: 10px;
     }

      footer .top-footer button:hover{
        background-color: transparent;
        color: #000;
        border: solid 2px #000;
      }

footer .midle-footer{
    color: #000;
    margin-bottom: 10px;
}


      footer .bottom-footer p{
        color: #000;
    margin-top: 10px;
    font-size: 12px;
      }

      footer .bottom-footer {
        border-top: 2px solid #000;
      }



      @media (max-width: 1024px) {

  .linha-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .linha-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeria img {
    height: 380px;
  }

  .historia-marca h3 {
    font-size: 42px;
  }

  .historia-marca p {
    margin-left: 60px;
    margin-right: 60px;
  }
}

@media (max-width: 768px) {

  .linha-4,
  .linha-3 {
    grid-template-columns: 1fr;
  }

  .galeria img {
    height: auto;
  }

  .historia-marca h3 {
    font-size: 32px;
  }

  .historia-marca p {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1rem;
  }

  .opcoes-visitas {
    flex-direction: column;
    align-items: center;
  }
}


@media (max-width: 480px) {

  .historia-marca h3 {
    font-size: 24px;
  }

  .historia-marca p {
    font-size: 0.95rem;
  }

  .linha-4,
  .linha-3 {
    grid-template-columns: 1fr;
  }

  .galeria img {
    height: auto;
  }
}

@media (max-width: 768px) {

  /* some a watermark no modo mobile */
  .watermark,
  .watermak {
    display: none;
  }
}

@media (max-width: 768px) {

  .linha-4,
  .linha-3 {
    grid-template-columns: 1fr;
    gap: 10px; /* padrão único */
    margin-top: 15px;
    margin-bottom: 15px;
  }

}

@media (max-width: 840px) {

  .mobile-header,
  header {
    display: none !important;
  }

}


.btn-volver {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 25px;

  background: rgba(255, 255, 255, 0.85);
  color: #000;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

  transition: 0.3s ease;
}

.btn-volver:hover {
  transform: scale(1.05);
}

@media (min-width: 769px) {
  .btn-volver {
    display: none;
  }
}

.catalogo-final{
  width:100%;
  padding:120px 20px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  text-align:center;

  background:#fff;
}

.catalogo-final h2{
  font-size:clamp(32px,5vw,58px);
  font-weight:600;
  margin-bottom:20px;
  font-family:"Jost", sans-serif;
  text-transform:uppercase;
  letter-spacing:2px;
}

.catalogo-final p{
  max-width:700px;
  font-size:16px;
  line-height:1.8;
  color:#555;
  margin-bottom:45px;
  font-family:"Montserrat", sans-serif;
}

.btn-catalogo{
  position:relative;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:18px 42px;

  border:1px solid #000;
  border-radius:100px;

  text-decoration:none;
  color:#000;

  font-size:13px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;

  overflow:hidden;

  transition:
  transform .3s ease,
  color .4s ease,
  border-color .4s ease;
}



.btn-catalogo:hover{
  color:#fff;
  transform:translateY(-4px);
  background-color: #000;
}

/* texto acima */
.btn-catalogo{
  isolation:isolate;
}

.btn-catalogo{
  z-index:1;
}

@media(max-width:768px){

.catalogo-final{
  padding:90px 20px;
}

.catalogo-final h2{
  font-size:32px;
}

.catalogo-final p{
  font-size:14px;
}

.btn-catalogo{
  width:100%;
  max-width:340px;
}
}