.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:#E9E9E9;
    
}



#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:rgb(0, 0, 80); /* 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;
}


     /* ============= SUBMENUS ============== */
        
                                /*============== SLIDE PRINCIPAL ================*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.containerSlidePrincipal {
    position: relative;
    width: 100%;
    height: 500px;
    top: 80px;
}

.containerSlidePrincipal .slidePrincipal .item {
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    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%;
    opacity: 0;
}

.slidePrincipal .item:nth-child(4) {
    left: 70%;
}

.slidePrincipal .item:nth-child(5) {
    left: calc(50% + 100px);
    opacity: 0;
}

.slidePrincipal .item:nth-child(n+6) {
    left: calc(50% + 0px);
    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: 25px;
    border-radius: 8px;
    cursor: pointer;
    border: solid .5px;
    margin: 0 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    transition: .3s;
    background-color: rgba(255, 255, 255, 0.3); /* Cor branca com 30% de opacidade */
    backdrop-filter: blur(2px); /* Aplicando um desfoque de 5px */
}

.button button:hover {
    background: #ababab;
    color: #fff;
}


#btn-slide-prev{
    transform: translate(-320px);
}
#btn-slide-next{
    transform: translate(320px);
}

                                    /* =============== FACEBOOK ========= */

.title-section{
    background-color:#0866FF ;
    font-family: 'Roboto', sans-serif;
    font-size: 40px; 
    font-weight: 700; 
    line-height: 1.5;
    color: #fff; 
    top: 0%;
    flex: 1; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 2px;
    height: 80px;
}
          
.btn-link-facebook{
    background-image: url('/Imagens/Google/btn-facebook.png');
    background-size: cover;
    background-position: center;
    width: 200px;
height: 50px;
display: flex;
justify-content: center; 
align-items: center;
margin-left: 40%; 
margin-bottom: 10px;
border-radius: 10px; 
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8); 
transition: transform 0.3s ease; 
}

.btn-link-facebook:hover{
    cursor: pointer;
    transform: scale(1.05); /* Aumenta o tamanho do botão ligeiramente */
    background-color: darkgreen; /* Altera a cor de fundo ao passar o mouse */
}


#box-Facebook{
    background-color:#FFF;
    width: 100%;
    display: flex;
    margin-top: 50px;
}

#foto-facebook{
    width: 70%;
}
#foto-facebook img{
    width: 100%;
}


#comentario-facebook{
    width: 30%;
}

#comentario-facebook img{
    width: 100%;
}


                            /*================ AMBIENTES =============== */

#section-ambientes{background-color: grey;
width: 100%;
height: 2300px;
}

.box-ambientes{
width: 100%;
height: 570px;
display: flex;
flex-direction: column;
}

.title-ambientes{
    font-family: 'Roboto', sans-serif;
    font-size: 40px; 
    font-weight: 700; 
    line-height: 1.5;
    color: #fff; 
    top: 0%;
width: 100%;
height: 110px;
display: flex;
justify-content: center; 
align-items: flex-end; 

}

.content-ambientes{
    width: 100%;
    height: 450px;
    display: flex;
justify-content: center; 
align-items: center;
}

.content-ambientes-reverse{
    width: 100%;
    height: 450px;
    display: flex;
justify-content: center; 
align-items: center;
    flex-direction: row-reverse;
}

.img-ambientes{
    width: 40%;
    height: 400px;
    margin-top: 40px;
    margin-left: 30px;
}

.img-ambientes img{
width: 100%;
height: 100%;
border-radius: 10px; 
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8); 
transition: transform 0.3s ease; 
}

.img-ambientes img:hover{
    cursor: pointer;
    transform: scale(1.05); /* Aumenta o tamanho do botão ligeiramente */
    background-color: darkgreen; /* Altera a cor de fundo ao passar o mouse */
}


.info-ambientes{
width: 50%;
height: 400px;
margin-left:20px;
margin-top: 30px;
border-radius: 10px; 
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8); 
}

.text-ambientes{
    height: 80%;
    margin: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px; 
    font-weight: 500px; 
    line-height: 1.5;
    color: #fff; 
    top: 0%;
display: flex;
justify-content: center; 
align-items: center; 
}

.btn-ambientes{
color: #fff;
font-size: 20px;
font-weight:bolder;
background-color: #0866FF;
width: 200px;
height: 50px;
display: flex;
justify-content: center; 
align-items: center;
margin-bottom: 10px;
border-radius: 10px; 
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8); 
transition: all 0.3s ease;  
}

.btn-ambientes:hover{
    transform: scale(1.05); 
    background-color: #5088cc;
    cursor: pointer;
}
       


                                /* ==============  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; 
}

#link-google{
width: 100%;
height: 80px;
display: flex;
justify-content: center; 
align-items: flex-end; 
}

.text-link-google{
font-size: 35px;
margin-bottom: 15px;
}

.btn-link-google{
    background-image: url('/Imagens/Google/btn-google.png');
    background-size: cover;
    background-position: center;
    width: 200px;
height: 50px;
display: flex;
justify-content: center; 
align-items: center;
margin-left: 50px; 
margin-bottom: 10px;
border-radius: 10px; 
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8); 
transition: transform 0.3s ease; 
}

.btn-link-google:hover{
    cursor: pointer;
    transform: scale(1.05); /* Aumenta o tamanho do botão ligeiramente */
    background-color: darkgreen; /* Altera a cor de fundo ao passar o mouse */
}


/* ============== MATÉRIA PRIMA ============= */

.subtitle-section{background-color: #1674ea;
color: #fff;
height: 60px;
font-size: 30px;
display: flex;
justify-content: center; 
align-items: center;
}



#catalogos{background-color: #1674ea;
    color: #fff;
width: 100%;
height: 460px;
display: flex;
}

.box-pedras{
width: 30%;
height: 400px;
margin: 2%;
display: flex;
flex-direction: column;

}

.title-pedras{
width: 100%;
height: 15%;
display: flex;
justify-content: center; 
align-items: center;
font-size: 25px;
}

.img-pedras{

width: 95%;
height: 80%;
margin: auto;
}

.img-pedras img{
    width: 100%;
    height: 100%;
    border-radius: 10px; 
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8); 
transition: transform 0.3s ease; 
}

.img-pedras img:hover{
    cursor: pointer;
    transform: scale(1.05); /* Aumenta o tamanho do botão ligeiramente */
    background-color: darkgreen; /* Altera a cor de fundo ao passar o mouse */
}

/* ================ 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;
    }
    

                            /* ========== LOCALIZAÇÃO ============ */

#box-localizacao{
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center; 
    align-items: center; 
    color: #fff;
    background-color: #0862F7;
}

#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; 
    right: 20px; 
    z-index: 1000;
}

#whatsapp-button img {
    width: 90px; 
    height: auto;
    border-radius: 50%; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); 
    transition: transform 0.3s ease; 
}

#whatsapp-button img:hover {
    cursor: pointer;
    transform: scale(1.1); 
}
