*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist", 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: fixed;
    top: 0;
    transition: 0.5s;
    z-index: 1300;
        background-color: #F5F3EE;
    padding: 10px 0;
    box-shadow: 0 0 10px #000000a1;
    
}

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;
    }

    .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: #F5F3EE;
    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: #000;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.logo-mobile {
    content: url('https://res.cloudinary.com/dg9e84zsg/image/upload/v1760197123/logo1_copiar-Photoroom_a7jxxe.png');
}

.mobile-header.scrolled .menu-btn span {
    background-color: #333; 
}

.mobile-header.scrolled .logo-mobile {
    content: url('https://res.cloudinary.com/dg9e84zsg/image/upload/v1760197123/logo1_copiar-Photoroom_a7jxxe.png'); 
}

.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: calc(100vh - 60px); 
    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: 100%;
    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;
}


.marcas-simples {
  background-color: #F5F3EE; 
  padding: 10px 20px;
  margin-top: 70px;
}


.marcas-simples .interface {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.marcas-simples h3 {
  font-weight: 600;
  font-size: 1.5em;
  margin-bottom: 0px;
  color: #222;
  letter-spacing: 0.05em;
}


.logos-marcas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;  
  flex-wrap: wrap; 
}

.logos-marcas img {
  height: 100px;  
  width: auto;
  filter: grayscale(20%); 
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.logos-marcas img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .logos-marcas {
    gap: 30px;
  }
  .logos-marcas img {
    height: 55px;
  }
}

@media (max-width: 480px) {
  .logos-marcas {
    gap: 20px;
  }
  .logos-marcas img {
    height: 45px;
  }
}

.logos-marcas img.logo1 {
  height: 140px;
  filter: none; 
  transform: scale(1.2);
  transition: transform 0.4s ease;
}

.logos-marcas img.logo1:hover {
  transform: scale(1.3);
  filter: brightness(1.1);
  cursor: pointer;
}

.logos-marcas img.logo5 {
  height: 140px;
  filter: none; 
  transform: scale(0.7);
  transition: transform 0.4s ease;
}

.logos-marcas img.logo5:hover {
  transform: scale(0.8);
  filter: brightness(1.1);
  cursor: pointer;
}

.logos-marcas img.logo6 {
  height: 180px;
  filter: none; 
  transform: scale(1.2);
  transition: transform 0.4s ease;
}

.logos-marcas img.logo6:hover {
  transform: scale(1.3);
  filter: brightness(1.1);
  cursor: pointer;
}

.logos-marcas img.logo3 {
  height: 45px;
  filter: none; 
  transform: scale(1.1);
  transition: transform 0.4s ease;
}

.logos-marcas img.logo3:hover {
  transform: scale(1.2);
  filter: brightness(1.1);
  cursor: pointer;
}

.logos-marcas img.logo4 {
  height: 75px;
  filter: none; 
  transform: scale(1.6);
  transition: transform 0.4s ease;
}

.logos-marcas img.logo4:hover {
  transform: scale(1.7);
  filter: brightness(1.1);
  cursor: pointer;
}

.logos-marcas img.logo7 {
  height: 45px;
  filter: none; 
  transform: scale(1.9);
  transition: transform 0.4s ease;
  margin-left: 15px;
}

.logos-marcas img.logo7:hover {
  transform: scale(2.0);
  filter: brightness(1.1);
  cursor: pointer;
}

.logos-marcas img.logo8 {
  transform: scale(0.6);
  filter: brightness(1.1);
  cursor: pointer;
}

.logos-marcas img.logo8:hover {
  transform: scale(0.7);
  filter: brightness(1.1);
  cursor: pointer;
}

.logos-marcas img.logo9 {
  transform: scale(1.1);
  filter: brightness(1.1);
  cursor: pointer;
}

.logos-marcas img.logo9:hover {
  transform: scale(1.2);
  filter: brightness(1.1);
  cursor: pointer;
}


.logos-marcas img.logo11 {
  height: 35px;
  filter: none; 
  transform: scale(1.7);
  transition: transform 0.4s ease;
  margin: 0 15px;
  margin-left: 25px;
}

.logos-marcas img.logo11:hover {
  transform: scale(1.8);
  filter: brightness(1.1);
  cursor: pointer;
}

.logos-marcas img.logo12 {
  height: 30px;
  filter: none; 
  transform: scale(1.8);
  transition: transform 0.4s ease;
  margin-left: 30px;
}

.logos-marcas img.logo12:hover {
  transform: scale(1.9);
  filter: brightness(1.1);
  cursor: pointer;
}



@media (max-width: 480px) {
  .logos-marcas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .logos-marcas a:nth-child(1) {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
  }

  .logos-marcas a:nth-child(n+2):nth-child(-n+9) {
    flex: 0 0 48%;
    display: flex;
    justify-content: center;
  }

  .logos-marcas a:nth-last-child(2),
  .logos-marcas a:nth-last-child(1) {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
  }

  .logos-marcas img {
    height: 50px;
    max-width: 100%;
  }
}




/* fim logos */

.logo-marca {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}



#marcaModal {
  display: none;
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: #fff;
  justify-content:center;
  align-items:center;
  z-index:9999;
  padding:0;
  box-sizing:border-box;
}

.modal-conteudo {
  width:90%;
  max-width:1200px;
  text-align:center;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.imagem-wrapper {
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
  padding:0 20px;
  box-sizing:border-box;
}

#marcaDestaque {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  width: 100%;
}

.foto-principal {
  width: 100%;
  max-width: 750px;
  max-height: 500px;
  object-fit: contain;
  border-radius: 6px;
}

#marcaDestaque img:not(.foto-principal) {
  width: 32%;
  max-height: 440px;
  object-fit: contain;
  border-radius: 6px;
}

.seta {
  background:transparent;
  border:none;
  font-size:24px;
  font-weight:bold;
  color:#000000;
  cursor:pointer;
  transition: transform 0.2s ease, text-shadow 0.2s ease;
  user-select:none;
}

.seta:hover:not(.desativado) {
  transform: translateY(-5px);
  text-shadow:2px 3px 10px rgba(0,0,0,0.5);
}

.seta.desativado {
  color:#666;
  cursor:default;
  pointer-events:none;
  text-shadow:none;
  transform:none;
}

#fecharModal {
  position:absolute;
  top:20px;
  right:20px;
  font-size:36px;
  color:#000000;
  cursor:pointer;
  z-index:20;
}

#whatsappBtn {
  display:none;
  margin-top:20px;
  text-decoration:none;
  background:transparent;
  border: solid 1px #000000;
  color:#000000;
  padding:14px 28px;
  border-radius:30px;
  font-weight:bold;
  transition:0.2s all;
  z-index:20;
}

#whatsappBtn:hover {
  transform: scale(1.05);
}

#nomeMarca {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #000000;
  margin-bottom: 0px;
}




/* Desktop */
.marcas-simples {
  display: block; /* mostra desktop */
}
.marcas-mobile {
  display: none !important; /* esconde mobile */
}

/* Mobile (até 768px de largura, por exemplo) */
@media (max-width: 768px) {
  .marcas-simples {
    display: none; /* esconde desktop */
  }
  .marcas-mobile {
    display: block !important; /* mostra mobile */
  }
}


.marcas-mobile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 10px;
  overflow: hidden;
}

.marca-item {
  width: 100%;
  cursor: pointer;
  text-align: center;
}

.logo-modal-mob {
  width: 50%;
  max-width: 180px;
  margin-bottom: 0px;
  padding: 5px;
}

.logo-modal-mob1 {
  margin-top: 55px;
  width: 50%;
  max-width: 180px;
  margin-bottom: 0px;
  padding-bottom: 5px;
}


.foto-mobile {
  width: 360px;
  height: 520px;
  border-radius: 0px;
  object-fit: cover;
}

/* Modal Mobile */
.modal-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.modal-mobile.active { display: flex; }

.logo-modal-mobile {
  width: 50%;
  max-width: 160px;
  margin: 0px 0 7px 0;
  object-fit: contain;
}

.imagem-wrapper-mobile {
  position: relative;
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.foto-modal {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0px;
}

.seta-esq, .seta-dir {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  user-select: none;
}

.seta-esq { left: 5px; }
.seta-dir { right: 5px; }

.fechar-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  color: #000;
  cursor: pointer;
}

.btn-whats-mobile {
  display:none;
  margin-top:5px;
  text-decoration:none;
  background:transparent;
  border: solid 1px #000000;
  color:#000000;
  padding:14px 28px;
  border-radius:30px;
  font-weight:bold;
  transition:0.2s all;
  z-index:20;
}



 /* 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;
      }

      footer .bottom-footer {
        border-top: 2px solid #000;
      }


