.mobile-menu-icon{
    display: none;
}

#CelNav{
    display: none;
}

body {
    overflow-x: hidden;
    font-family:Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

                        /* ================== NAVBAR ================= */

#navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    height: 100px;
    margin-top: -10px;
    z-index: 1;
    font-size: 17px;
    position: fixed;
    background-color: #000000;
}



#nav{
    width: 90%;
    display: flex;
    justify-content: center; /* Alinha os itens horizontalmente */
    align-items: center; /* Alinha os itens verticalmente */
}

#nav ul, #CelNav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around; /* Espaçamento uniforme entre os ícones */
}


#nav ul li, #CelNav ul li {
    display: inline-block; /* Alterado para inline-block para adicionar espaçamento */
    margin-right: 40px; /* Espaçamento horizontal entre os ícones */
}

#nav ul li a, #CelNav ul li a {
    color:#DAA543; /* Alterar a cor dos ícones para branco */
    position: relative;
    overflow: hidden;
    text-decoration: none; /* Remover o sublinhado */
}


#nav ul li a::after,#CelNav ul li a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px; /* Altura do sublinhado */
    width: 0; /* Começa invisível */
    height: 1px; /* Espessura do sublinhado ajustada para 2px */
    background-color: #777777; /* Cor do sublinhado */
    transition: width 0.3s ease; /* Transição suave do crescimento */
}

#nav ul li a:hover::after,#CelNav ul li a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px; /* Altura do sublinhado */
    width: 100%;
    height: 1px; /* Espessura do sublinhado ajustada para 2px */
    background-color:  #777777; /* Cor do sublinhado */
    transition: width 0.3s ease; /* Transição suave do crescimento */
}

#logo {
    width: 10%;
    scale: 1;
}

#logo img {
  padding-top: 20px;
    width: 100px;
}

.logo img{
    width: 10%;
    scale: 1;  
    width: 100px;
    left: 0px;
}


        
                                /*============== SLIDE PRINCIPAL ================*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.containerSlidePrincipal {
    position: relative;
    width: 100%;
    height: 100vh;
}

.containerSlidePrincipal .slidePrincipal .item {
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 1.2s;
}

.slidePrincipal .item:nth-child(1),
.slidePrincipal .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.slidePrincipal .item:nth-child(3) {
    left: 50%;
}

.slidePrincipal .item:nth-child(4) {
    left: calc(50% + 220px);
}

.slidePrincipal .item:nth-child(5) {
    left: calc(50% + 440px);
    opacity: 0;
}

.slidePrincipal .item:nth-child(n+6) {
    left: calc(50% + 660px);
    opacity: 0;
}

.item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color:#fff;
    transform: translate(0, -50%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: none;
}

.slidePrincipal .item:nth-child(2) .content {
    display: block;
}

.content .name {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out .3s 1 forwards;
}

.content button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out .6s 1 forwards;
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        /* filter: blur(33px); */
    }
    to {
        opacity: 1;
        transform: translate(0);
        /* filter: blur(0); */
    }
}

.button {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.button button {
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: .3s;
}

.button button:hover {
    background: #ababab;
    color: #fff;
}

                                /*================ AMBIENTES =============== */

@keyframes animar {
    0% {opacity: 0%;}
    20% {opacity: 0%;}
    30% {opacity: 80%;}
    40% {opacity: 100%;}
    100%{opacity: 100%;}
    }

    @keyframes lateral {
    0% {transform: translateX(300%);}
    100% {transform: translateX(0%);}
    }


    .slides{
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 10px;

    }



    #boxSectionTitulo{
    width: 100%;
    position:sticky;
    align-items: center;
    }

    #boxSectionImg{
    position:sticky;
    display: flex;
    background-color: #57575c;
    justify-content: space-around;
    
    }

    #boxSlidesTitulos{
    top: 0;
    background-color: #57575c;
    position:relative;
    align-items: center;
    text-align: center;
    }

    #boxSlide1{
    top: -35%;
    position: relative;
    margin: 0 auto;

    }

    #boxSlide2{
    top: 0;
    position:relative;
    margin: 0 auto;
    }

    #boxSlide3{
    top:-35%;
    position:relative;
    margin: 0 auto;
    }

    #slideImg1, #slideImg2, #slideImg3, #slideImg4{
        margin: 0 auto;
        border-radius: 20px; 
        }

    #slideImg3{
        margin-top: 10%;
    }

    #tituloGrande{
    
    animation: animar 1s ease-in-out;
    animation-timeline: view();

    font-family: 'Roboto', sans-serif;
    font-size: 5rem; 
    font-weight: 900; 
    line-height: 1.5;
    color: #505055; 
    top: 0%;
    }

    #tituloPequeno{
    animation: animar 1s ease-in-out;
    animation-timeline: view();
    font-family: 'Roboto', sans-serif;
    font-weight: 700; 
    line-height: 1.5;
    color: #9CC1E7; 
    position: absolute;
    left: 45%;
    top: 20%;
    }

    #tituloMedio{
    animation: animar 1s ease-in-out;
    animation-timeline: view();

    font-family: 'Roboto', sans-serif;
    font-size: 2rem; 
    font-weight: 800; 
    line-height: 1.5; 
    color: #FFFFFF; 
    position: absolute;
    left: 40%;
    top: 30%;
    }

.containerImg {
    animation: animar 1s ease-in-out;
    animation-timeline: view();
    
    position: sticky;
    width: 300px;
    height: 200px;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.containerImg:hover{
    transform: scale(1.08);
}

.overlayImg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    transition: left 0.5s ease; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerImg:hover .overlayImg {
    left: 0; 
}

.overlayImg p {
    color: white;
    font-size: 24px;
    text-align: center;
}

#slideImg1 {
    height: 500px;
    
}

#slideImg2 {
    height: 500px;
}

#slideImg3 {
    height: 200px;
    width: 430px;
}

#slideImg4 {
    height: 200px;
    width: 430px;
}


                        /* =============== A EMPRESA ========= */
                        
#boxEmpresa{
    background-color:#000000;
    width: 100%;
    display: flex;
}

#InfoEmpresa{
    background-color:black;
    width: 50%;
    height: 100%;
}

#InfoEmpresa #text{
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.5;
    font-weight: 300;
    font-family: Arial, sans-serif;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
    margin-left: 10%;
    margin-bottom: 10%;
    animation: animate 1s ease-in-out .6s 1 forwards; 

    
}

#InfoEmpresa button{
    
    width: 150px;
    height: 35px;
    animation: animate 1s ease-in-out .9s 1 forwards;
    margin-left: 10%;
    background-color: #BC652F;
}

#InfoEmpresa button a{
color: black;
text-decoration: none;
}

#marcaEmpresa{
    background-color:black;
    width: 50%;
    height: 100%;

}

#marcaEmpresa img{
    width: 80%;
    padding: 10%;
    animation: animate 1s ease-in-out 1s 1 forwards;
}

                                /* ========== MATÉRIA PRIMA ============  */

#MateriaPrima {
    display: flex;
    background-color:#DAA543;
    margin-top: 10px;
    height: 500px;
    width: 100%;
}

#MateriaPrima #boxTituloPedra{
    animation: animar 1s ease-in-out;
    animation-timeline: view();
    height: auto;
    width: 30%;
}

#MateriaPrima #materiaPrimaBtns{
    animation: animar 1s ease-in-out;
    animation-timeline: view();

width: 20%;
height: 100%;
display: flex;
flex-direction: column;
}

#boxTituloPedra h1{
    font-family: 'Roboto', sans-serif;
    font-size: 5rem; 
    font-weight: 900; 
    line-height: 1.5;
    color: #ffb700; 
    top: 0%;
}

#boxTituloPedra p{
font-family: 'Roboto', sans-serif;
font-weight: 700; 
line-height: 1.5;
color: #57575c; 
position: relative;
top: -10%;
left: 25%;
}

#boxTituloPedra h2{
    font-family: 'Roboto', sans-serif;
    font-size: 2rem; 
    font-weight: 800; 
    line-height: 1.5; 
    color: #000000; 
    position: relative;
    top: -10%;
    left: 20%;    
    }

#materiaPrimaBtns button{
    color: #fff;
    height: 30px;
    margin: 28% 0 0 20%;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out .6s 1 forwards;
    background-color: #5e300c;
    transition: background-color 0.3s ease;
}

#materiaPrimaBtns button:hover{
    background-color: #be5a0d;
}

.pedraPosicao1 {
    animation: animar 1s ease-in-out;
    animation-timeline: view();

    border-radius: 10px;
    position: absolute;
    width: 350px; 
    height: 350px; 
    margin: 60px 0 0 10px;
    transition: .5s ease-in-out;
    overflow: hidden;
    cursor: pointer;
}
.sombraPedraPosicao1 {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;
    color: rgb(255, 255, 255);
    background-color:#282D32;
    position: absolute;
    width: 100%; 
    height: 100%; 
    margin: 0 0 0 0 ;
    transition: .4s ease-in-out;
    opacity: 70%;
    transform: translateX(-100%);
}

.pedraPosicao1:hover .sombraPedraPosicao1{
    transform: translateX(0%);
}

.pedraPosicao1:hover {
    scale: 1.05;
}


.pedraPosicao2 {
    animation: animar 1s ease-in-out;
    animation-timeline: view();

    border-radius: 10px;
    position: absolute;
    width: 200px; 
    height: 200px; 
    margin: 30px 0 0 400px;
    transition: .5s ease-in-out;
    overflow: hidden;
    cursor: pointer;
}

.sombraPedraPosicao2 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    background-color:#282D32;
    position: absolute;
    width: 100%; 
    height: 100%; 
    margin: 0 ;
    transition: .4s ease-in-out;
    opacity: 70%;
    transform: translateX(-100%);
}

.pedraPosicao2:hover .sombraPedraPosicao2{
    transform: translateX(0%);
}

.pedraPosicao2:hover {
    scale: 1.05;
}

.pedraPosicao3 {
    animation: animar 1s ease-in-out;
    animation-timeline: view();

    border-radius: 10px;
    position: absolute;
    width: 200px;
    height: 200px; 
    margin: 250px 0 0 400px; 
    transition: .5s ease-in-out;
    overflow: hidden;
    cursor: pointer;
}

.sombraPedraPosicao3 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    background-color:#282D32;
    position: absolute;
    width: 100%; 
    height: 100%; 
    margin: 0 ;
    transition: .4s ease-in-out;
    opacity: 70%;
    transform: translateX(-100%);

}

.pedraPosicao3:hover .sombraPedraPosicao3{
    transform: translateX(0%);
}

.pedraPosicao3:hover {
    scale: 1.05;
}

                                /* ================ QUEM SOMOS =====  */

#quemSomos{
background-color: #FFF;
width: 100%;
color: #787B7E;
padding: 5%;
}

#quemSomos i{
   scale: 2;
    }

    #ponto1,#ponto2,#ponto3,#ponto4{
     padding: 5px;
     margin-top: 10px;
     width: 48%;
    }

    #ponto1 p,#ponto2 p,#ponto3 p,#ponto4 p{
        padding-top: 2%;
       }

#tituloQuemSomos{
    font-size: 35px;
    text-align: center;
}

#iconesA{
    display: flex;
}

#iconesB{
    display: flex;
    margin-top: 2%;
}

#tituloQuemSomos{
    font-size: 30px;
}


                                /* ==============  COMENTÁRIOS GOOGLE ========================= */
#boxGoogle {
    width: 100%;
}

#tituloGoogle {
    text-align: center;
    padding-top: 20px;
}

#tituloGoogle img {
    max-width: 40%;
    height: auto;
}

#comentariosGoogle {
    width: 100%;
    display: flex;
    overflow: hidden;
}

#comentariosGoogle  div {
    flex: 1; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 2px;
}

#comentariosGoogle img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ccc; 
    border-radius: 10px; 
}






                            /* ========== LOCALIZAÇÃO ============ */

#box-localizacao{
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center; 
    align-items: center; 
    color: #fff;
    background-color: #282D32;
}

#mapa{
    width: 40%;
    height: 200px;
}

#mapa iframe{
    width: 100%;
    height: 100%;
}

#contato, #endereco{
    width: 30%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
}

#endereco p{
margin-left: 5%;
}

                                /* ========== FOOTER =========== */

#rodape {

    width: 100%;
    height: 130px;
    background-color: black;
    color: #fff;
    text-align: center;
}

#rodape p{
   margin:30px 0 0 45%;
   position: absolute;
}

#rodape img{
    scale: 1.2;
    margin:20px 0 0 10px;
    position: absolute;
 }

 /* ========= Botão Whatsapp ===== */

 #whatsapp-button {
    position: fixed;
    bottom: 20px; /* Distância do fundo da tela */
    right: 20px; /* Distância da borda direita da tela */
    z-index: 1000; /* Para garantir que o botão esteja acima de outros elementos */
}

#whatsapp-button img {
    width: 90px; /* Ajuste o tamanho conforme necessário */
    height: auto;
    border-radius: 50%; /* Para criar um botão circular */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Adiciona uma sombra sutil */
    transition: transform 0.3s ease; /* Efeito de transição suave */
}

#whatsapp-button img:hover {
    transform: scale(1.1); /* Efeito de escala no hover */
}
