/*Configurações Gerais*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; /*Inclue border e padding no tamanho*/
}

html {
    scroll-behavior: smooth;
  }

body{
    font-family: "Montserrat", "Arial", "Helvetica", "sans-serif";
    font-size: 13px;
    overflow-x: hidden; /*Todo conteudo que ultrapassar a horizontal será ignorado*/
}

.button{
    display: inline-block;
    background-color: #b28756;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 20px;
}

.button:hover{
    color: #b28756;
    background-color: #dbd9d9;
}


/*Area do cabeçalho*/

header{
    height: 100px;
    background: linear-gradient(#000, #b28756);
}

.cabecalho{
    max-width: 1140px;
    height: 100px;
    margin: auto;
    display: flex;
    
    align-items: center;
}

.cabecalho img{
    width: 300px;
}

.menu_hamburguer{
    display: none;
}

.menu{
    flex: 1; /*Faz menu ocupar todo o restante do espaço do .cabecalho*/
    color: #fff;
    display: flex;
    justify-content: flex-end; /*Alinha menu a direita*/
}

.menu ul,
.menu li{
    list-style: none; /*Tira estilos pré definidos, no caso as bolinhas da lista*/
}

.menu ul{
    display:flex;
}

.menu li a{
    color: #fff;
    text-transform: uppercase; /*Tudo maiusculo*/
    font-weight: 600;
    text-decoration: none;
    padding-left: 10px;
    padding-right: 10px;
}

.menu li a:hover{
    color: #b28756;
}

.menu.active a{
    color: #b28756;
}









/*Area do banner*/

.banner{
    height:calc(100vh - 100px);
    background-color: #333;
    background-image: url("../Assets/images/comprimida-2.png") ;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.banner .sliders{
    width: 1000vw;
    height: 100%;
}

.banner .slide{
    width: 100vw;
    height: 100%;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.6);
}

.banner .slidearea{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.banner h1{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 50px;
}

.banner h1 span{
    color: #b28756;
}

.banner h2{
    text-transform: uppercase;
    margin-top: 60px;
    font-size: 15px;
}

.banner .sliders-pointers{
    width: 100vw;
    height: 20px;
    position: absolute;
    margin-top: -210px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .pointer{
    width: 15px;
    height: 15px;
    border: 2px solid #b28756;
    border-radius: 8px;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
}

.banner .pointer.active{
    background-color: #b28756;
}

/*Area do Quem somos*/

.quem_somos{
    background-color: #f7f7f7;
    padding-top: 50px;
    padding-bottom: 50px;
}

.quem_somos .titulo,
.quem_somos .descricao{
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.quem_somos .titulo{
    font-size: 20px;
    color: #000;
}

.quem_somos .descricao{
    font-size: 12px;
    color: #b28756;
    margin-top: 10px;
    margin-bottom: 40px;
}

.quem_somos .corpo{
    max-width: 1140px;
    margin: auto;
    color: #000;
}

.corpo_quem_somos{
    display: flex;
}

.corpo_esquerdo{
    flex: 1;
}

.corpo_esquerdo p{
    font-size: 14px;
    line-height: 25px;
}

.corpo_direito{
    width: 540px;
    text-align: center;
}

.corpo_direito img{
    width: 400px;
    box-shadow: 5px 10px 15px #333;
}

/*Produtos padrão*/

.produtos_padrao{
    background-color: #333;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow-x: hidden;
}

.produtos_padrao .titulo,
.produtos_padrao .descricao{
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.produtos_padrao .titulo{
    font-size: 20px;
    color: #fff;
}

.produtos_padrao .descricao{
    font-size: 12px;
    color: #b28756;
    margin-top: 10px;
    margin-bottom: 40px;
}



.produtos_padrao_fotos{
    width: 100vw;
    max-width: 1140px;
    margin-top: 20px;
    display: flex;
    
}

.produtos_padrao_foto{
    width: 280px;

    width: 300px;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.produtos_padrao_photoarea{
    margin: 10px;
    width: 260px;
    height: 160px;

    display: flex;
    width: calc(300px * 6); /* 6 imagens no total, incluindo repetidas */
    animation: deslizar 12s linear infinite;
}

.produtos_padrao_photoarea img{
    width: inherit;
    height: inherit;

    width: 300px;
    height: 200px;
    flex-shrink: 0;
}

.produtos_padrao_fotoinfo{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: inherit;
    height: inherit;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.produtos_padrao_fotoinfo h5{
    font-size: 18px;
    font-weight: 600;
}

.produtos_padrao_photoarea:hover .produtos_padrao_fotoinfo{
    display: flex;
}

.button-especific{
    text-align: center;
}

.button-especific a{
    align-content: center;
    display: inline-block;
}


@keyframes deslizar {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-900px); } /* 3 imagens deslizam */
  }



  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    background-color: #f5f5f5;
  }

  .carrossel {
    position: relative;
    overflow: hidden;
    width: 100vw; /* ocupa 100% da largura da tela */
    margin: 0; /* sem margens automáticas */
  }

  .carrossel:hover .faixa {
    animation-play-state: paused;
  }

  .faixa {
    display: flex;
    gap: 10px;
    scroll-behavior: smooth;
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    width: 100%; /* Faixa ocupa 100% da largura disponível */
    z-index: 1;
  }

.faixa img {
    flex: 0 0 auto;
    width: 300px; /* Tamanho das imagens */
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;

  }
  
  
  .faixa img:hover {
    transform: translateY(-5px); /* levanta um pouco */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4); /* sombra elegante */
    z-index: 2;
  }
  

  .faixa::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .carrossel {
    position: relative;
    overflow: hidden;
  }
  
  .faixa {
    display: flex;
    transition: transform 0.5s ease;
    z-index: 1;
  }
  
  .carrossel img {
    max-width: 100%;
    height: 200px;
  }
  
  
  
  @keyframes rolar {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

/* Estilo do destaque */
#destaque {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }

  #destaque.hidden {
    display: none;
  }

  #destaque .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    z-index: 1;
  }

  #destaque .conteudo {
    position: relative;
    z-index: 2;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    max-width: 90%;
    max-height: 90%;
  }

  #destaque img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
  }

  #destaque button {
    display: block;
    margin: 10px auto 0;
    padding: 8px 16px;
    font-size: 16px;
    background: #444;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }

  #destaque button:hover {
    background: #222;
  }

  #destaque .conteudo-destaque img {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
  }



  .produtos_padrao{
    background-color: #444;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow-x: hidden;
}

.produtos_padrao .titulo,
.produtos_padrao .descricao{
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.produtos_padrao .titulo{
    font-size: 20px;
    color: #fff;
}

.produtos_padrao .descricao{
    font-size: 12px;
    color: #b28756;
    margin-top: 10px;
    margin-bottom: 40px;
}





/*Pop up seção produtos padrão*/
.imagem-popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
  }
  
  .imagem-popup-conteudo {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
  }
  
  .imagem-popup .fechar-popup {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .projetos_realizados_photoarea img {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .projetos_realizados_photoarea img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }


/*Projetos realizados*/

.projetos_realizados{
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

.projetos_realizados .titulo,
.projetos_realizados .descricao{
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.projetos_realizados .titulo{
    font-size: 20px;
    color: #000;
}

.projetos_realizados .descricao{
    font-size: 12px;
    color: #b28756;
    margin-top: 10px;
    margin-bottom: 40px;
}

.corpo_do_filtro{
   display: flex; 
   flex-direction: column;
   align-items:center;
}


.selecao_de_filtros{
    border: 1px solid #dbd9d9;
    background-color: #b28756;
    border-radius: 30px;
    display: inline-block;
    padding: 0px 20px;
}

.selecao_de_filtros ul,
.selecao_de_filtros li{
    list-style: none;
}

.selecao_de_filtros li{
    display: inline-block;
    padding: 10px;
    text-transform: uppercase;
    font-size: 13px;
    border-left: 1px solid #dbd9d9;
    color: #fff;
    cursor: pointer;
}

.selecao_de_filtros li:first-child{
    border-left: 0;
}

.selecao_de_filtros li:hover{
    border-bottom: 3px solid #dbd9d9;
}

.projetos_realizados_fotos{
    width: 100vw;
    max-width: 1140px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.projetos_realizados_foto{
    width: 280px;
}

.projetos_realizados_photoarea{
    margin: 10px;
    width: 260px;
    height: 160px;
}

.projetos_realizados_photoarea img{
    width: inherit;
    height: inherit;
}

.projetos_realizados_fotoinfo{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: inherit;
    height: inherit;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.projetos_realizados_fotoinfo h5{
    font-size: 18px;
    font-weight: 600;
}

.projetos_realizados_photoarea:hover .projetos_realizados_fotoinfo{
    display: flex;
}



/*Área de rodapé*/


footer {
    background-color:#333;
    padding:20px;
}

.footer--area {
    max-width:1140px;
    margin:auto;
    color:#FFF;
    display:flex;
}

.footer--item {
    flex:1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item img {
    width: 24px;
    height: 24px;
}

.footer-contact-item span {
    font-size: 14px;
    color: #ccc;
}

.footer--item p {
    font-size: 14px;
    text-align: center;
    color: #ccc;
    margin-top: 20px;
}



/*Responsividade tablet*/

@media(min-width:450px) and (max-width:800px){
    .menu_hamburguer{
        display: block;
        width: 30px !important;
        height: auto;
        margin-right: 30px;
    }

    .logo{
        margin-left: 50px;
    }

    nav{
        display: none;
        position: absolute;
        z-index: 99;
        background-color: rgba(0, 0, 0, 0.9);
        width: 70vw;
        height: calc(60vh - 100px);
        top: 100px;
        right: 0;
    }

    .menu ul{
        flex-direction: column;
    }

    .menu ul li{
        margin-top: 30px;
    }

    .menu li a{
        padding-top: 50px;
        font-weight: bold;
        height: 200px;
        font-size: 27px;
        margin-left: 50px;
        border: 0;
    }

    .menu li.active a{
        border: 0;
        color:#b28756

    }

    .slidearea h1{
        font-size: 40px;
    }

    .slidearea h2{
        font-size: 18px;
    }

    .slidearea a{
        font-size: 18px;
    }

    .banner .sliders-pointers {
        margin-top: -410px;
   
    }

    .corpo_quem_somos{
        flex-direction: column;
    }

    .corpo_esquerdo{
        margin-left: 30px;
        margin-right: 30px;
        margin-bottom: 30px;
    }

    .corpo_direito{
        width: auto;
        margin-bottom: 30px;
    }

    .corpo_quem_somos {
        flex-direction: column-reverse; /* Inverte a ordem dos itens */
    }

}


/*Responsividade celular*/

@media(max-width:450px){
    .menu_hamburguer{
        display: block;
        width: 30px !important;
        height: auto;
        margin-right: 90px;
    }

    .logo{
        margin-left: 10px;
    }

    nav{
        display: none;
        position: absolute;
        z-index: 99;
        background-color: rgba(0, 0, 0, 0.9);
        width: 80vw;
        height: calc(100vh - 100px);
        top: 100px;
        right: 0;
    }

    .menu ul{
        flex-direction: column;
    }

    .menu ul li{
        margin-top: 20px;
    }

    .menu li a{
        padding-top: 50px;
        font-weight: bold;
        height: 200px;
        font-size: 17px;
        margin-left: 30px;
        border: 0;
    }

    .menu li.active a{
        border: 0;
        color:#b28756

    }

    .slidearea h1{
        font-size: 35px;
       margin-left: 15px;   
    }

    .slidearea h1 span{
        font-size: 20px;
    }

    .slidearea h2{
        font-size: 15px;
    }

    .slidearea a{
        font-size: 15px;
    }

    .banner .sliders-pointers {
        margin-top: -200px;
    }

    .corpo_quem_somos{
        flex-direction: column;
    }

    .corpo_esquerdo{
        margin-left: 30px;
        margin-right: 30px;
        margin-bottom: 30px;
    }

    .corpo_direito{
        width: auto;
        margin-bottom: 30px;
        margin-left: 40px;
        margin-right: 40px;
    }

    .corpo_direito img{
        width: 100%;
    }

    .corpo_quem_somos {
        flex-direction: column-reverse; /* Inverte a ordem dos itens */
    }

    .faixa img {
        width: 70%; /* 1 por linha no celular */
        aspect-ratio: 3 / 2; /* um pouco mais horizontal */
      }

    .selecao_de_filtros li{
        font-weight: bold;
        font-size: 9px;
    }

}


  
  /*Botão do Whatsapp*/
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25d366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-float img {
    width: 32px;
    height: 32px;
    filter: invert(1);
  }
  
  /* Animação pulsante */
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
      transform: scale(1.1);
      box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  
  /*Rodapé*/

  .footer {
    background-color: #222;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .footer--area {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  
  .footer--col {
    flex: 1;
    min-width: 250px;
  }
  
  .footer--col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #25d366;
  }
  
  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 16px;
  }
  
  .footer-contact-item i {
    color: #25d366;
  }
  
  .social-link {
    color: #fff;
    text-decoration: none;
  }
  
  .social-link:hover {
    text-decoration: underline;
  }
  
  .site-seguro {
    width: 130px;
    margin-top: 10px;
  }
  
  .back-to-top {
    display: inline-block;
    color: #25d366;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid #25d366;
    padding: 6px 12px;
    border-radius: 25px;
    margin-top: 10px;
    transition: 0.3s;
  }
  
  .back-to-top:hover {
    background-color: #25d366;
    color: #fff;
  }
  
  .footer--bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 14px;
    color: #ccc;
  }



  
  
  /* Estilo das setas */
    .seta {
      display: none;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        border: none;
        color: white;
        font-size: 2rem;
        padding: 10px;
        cursor: pointer;
        z-index: 9999; /* Altíssimo para não ter chance de ser coberta */
        pointer-events: auto; /* Garante que ela receba clique */
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
        touch-action: manipulation;
        transition: background 0.2s ease;
      }

      .seta:active {
        background: rgba(0, 0, 0, 0.8);
      }
  
  
  /* Seta para avançar (à direita) */
  #seta-direita {
    right: 10px; /* Ajuste da posição da seta à direita */
  }
  
  /* Estilo de hover para as setas */
  .seta:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Responsividade */
  @media screen and (max-width: 768px) {
    .seta {
      font-size: 1.5rem;
      padding: 8px;
    }
  }






  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background-color: #f0f0f0;
  }
  
  .filter-btn {
    padding: 10px 5px;
    cursor: pointer;
    border: none;
    background-color: #b28756;
    color: white;
    font-size: 13px;
    border-radius: 5px;
    white-space: nowrap;
    margin: 0px;

    
  }
  
  .filter-btn:hover {
    background-color: #fff;
    color: #b28756;
  }
  
  .gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  
  .category {
    display: none;
    width: 100%;
  }
  
  .category.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  

  .image {
    width: calc(23% - 15px);
    height: 200px; /* Altura fixa para garantir que as imagens não fiquem pequenas */
    object-fit: cover; /* Garante que a imagem cubra o contêiner sem distorcer */
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease;
    margin: 10px;
    border-radius: 10px;
}

.image img {
  width: 100%; /* Faz a imagem ocupar a largura total do contêiner */
  height: 100%; /* Garante que a imagem ocupe toda a altura definida pelo contêiner */
  border-radius: 10px;
  object-fit: cover; /* Mantém o ajuste sem distorcer */
  object-position: center center; /* Alinha a imagem no centro para evitar esticamento */
}


  
  .image:hover {
    transform: scale(1.05);
  }
  
  .image p {
    margin-top: 8px;
    font-size: 14px;
  }
  
  .show-more {
    display: none;
    margin: 20px auto 0;
    background-color: #b28756;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .show-more:hover {
    background-color: #ccc;
    color: #b28756;
  }
  
  /* Popup */
  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  .popup-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
  }
  
  .popup-content img {
    width: 400px;
    border-radius: 10px;
  }
  
  .close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .image {
        width: calc(100% - 20px);
        margin: 10px 0;
        
  }

  .image img{
    border-radius: 10px;
  }

  .popup img{
    max-width: 90%; /* reduz a largura para 90% da tela */
    max-height: 80%; /* reduz a altura para 80% da tela */
}
}