:root{
    --cor-primaria: #d9d9d9;
    --cor-secundaria: #fefefe;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;  
    font-family: "Montserrat", serif;
}

.wpp-fixo img{
    position: fixed;
    bottom: 5%;
    right: 2%;
    z-index: 2;
    width: 5%;
}

body{
    overflow-x: hidden;
}


.menu-nav{
    display: flex;
    background-color: var(--cor-primaria);
    padding: 11.5px;
}
.menu-nav ul{
    list-style: none;
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}
.menu-nav ul img{
    width: 100px;
}
.menu-nav ul li a{
    text-decoration: none;
    font-size: 15px;
    color: black;
}
.menu-nav ul li a:hover{
    border-bottom: 2px solid black;
}
.menu-hamburguer{
    display: none;
}


.contato{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(/src/assets/images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}


.contato #bloco{
    background-image: linear-gradient(90deg, #a6a6a6,#ffffff);
    text-align: center;
    width: 350px;
    margin-bottom: 20px;
    font-size: 33px;
}
.contato #bloco a{
    text-decoration: none;
    color: black;
}
.contato #bloco2{
    text-align: center;
    width: 22%;
    font-size: 14.5px;
    border: 2px solid var(--cor-secundaria);
    color: white;
    padding: 5px;
}

.servicos{
    height: 100vh;
    background: linear-gradient(to bottom, black 10%, rgba(0, 0, 0, 0) 50%, white 100%);
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.servicos #titulo{
    color: var(--cor-primaria);
    margin-bottom: 10px;
    font-size: 38px;
}

.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 270px;
    height: 375px;
    border: 2px solid var(--cor-primaria);
    gap: 14px;
    margin-left: 80px;
    text-align: center;
}
.card img{
    width: 250px;
    height: 200px;
    margin-top: 10px;
    object-fit: cover;
}
.card .tipo_servico{
    font-size: 11.5px;
}
.card .servico_principal{
    font-size: 27px;
}
.card .preco_servico{
    font-size: 11.5px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    color: black;
    font-size: 24px;
}

.produtos {
    height: 100vh;
    background-color: var(--cor-secundaria);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.produtos .quadro {
    background-color: var(--cor-primaria);
    height: 80%;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.produtos .quadro .conteudo {
    width: 95%;
    height: 95%;
    border: 1px solid black;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.produtos .quadro .conteudo #titulo {
    font-size: 38px;
}

.produtos .quadro .conteudo #produto_imagem{
    width: 250px;  /* Defina um tamanho fixo para a largura */
    height: 250px; /* Defina um tamanho fixo para a altura */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Evita que imagens muito grandes ultrapassem a área */
    margin: 0 auto; /* Centraliza o bloco */
}
.produtos .quadro .conteudo #produto_imagem img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Garante que todas as imagens se ajustem sem distorção */
}

.produtos .quadro .conteudo .qualidades {
    display: flex;
    gap: 8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.produtos .quadro .conteudo .qualidades .qualidade {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.produtos .quadro .conteudo .qualidades .qualidade img {
    width: 50px;
    height: 50px;
}



.depoimentos{
    height: 100vh;
    background: var(--cor-secundaria);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.depoimentos #titulo{
    font-size: 38px;
    color: black;
    margin-bottom: 30px;
    margin-bottom: 7%;
}
.depoimentos .container_blocos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8rem 2rem;
}
.depoimentos .bloco-texto{
    border-top: 1px solid black;
    width: 350px;
    color: black;
    display: flex;
    flex-direction: column;
}
.depoimentos .bloco-texto span{
    margin-top: 10px;
}
.depoimentos .bloco-texto .cliente{
    font-size: 28px;
}

.carrossel {
    display: none;
}
#opcao_mobile{
    display: none;
}

.nosso_espaco{
    height: 100vh;
    background-color: var(--cor-secundaria);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.nosso_espaco #titulo{
    font-size: 38px;
}
.nosso_espaco .cards_redondos{
    display: flex;
    gap: 6rem;
}
.nosso_espaco .cards_redondos .card_redondo{
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid black;
    transition: .5s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6); /* Sombra suave */
}
.nosso_espaco .cards_redondos .card_redondo:hover{
    transform: scale(1.1) translateY(-5%);
    transition: .5s;
}
.nosso_espaco .cards_redondos .card_redondo img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%; 
}


.sobre_nos{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom, var(--cor-secundaria) 10%, rgba(0, 0, 0, 0) 50%, black 100%);
}
.sobre_nos img{
    width: 60%;
}
.sobre_nos .bloco_quem_somos{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--cor-secundaria);
    background-color: #252527;
    width: 30%;
    padding: 1%;
}
.sobre_nos .bloco_quem_somos #texto{
    border: 2px solid var(--cor-secundaria);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2%;
}

.sobre_nos .bloco_quem_somos #texto h1{
    font-weight: 400;
}
.sobre_nos .bloco_quem_somos #texto span{
    color: var(--cor-primaria);
    text-align: center;
}


footer{
    height: 100vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--cor-primaria);
    gap: 2rem;
}
footer .informacao{
    text-align: center;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    
}
footer .detalhes{
    margin-top: 10%;
    font-size: 15px;
    text-decoration: none;
    color: var(--cor-primaria);
}
footer .informacao .informacao-imgs{
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 20px;
}
footer .informacao .informacao-imgs img{
    width: 65px;
    height: 65px;
    border: 1px solid white;
    border-radius: 50%;
    padding: 10px;
    
}
footer .informacao .informacao-imgs a:nth-child(1) img:hover{
    background-color: green;
}
footer .informacao .informacao-imgs a:nth-child(2) img:hover{
    background: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #FD1D1D, #F77737, #FFC837);

}
footer img{
    width: 400px;
}

@media screen and (max-width: 768px) {

    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden; 
        
    }
    
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    .wpp-fixo img{
        position: fixed;
        bottom: 2%;
        right: 2%;
        z-index: 2;
        width: 15%;
    }

    .menu-nav {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        position: relative;
    }
    .menu-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--cor-primaria);
        padding: 10px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    }
    .menu-nav ul.show {
        display: flex;
        z-index: 2;
    }
    .menu-nav ul.show img{
        display: none;
        
    }
    .menu-nav ul li {
        text-align: center;
        margin: 10px 0;
    }
    .menu-hamburguer {
        display: block;
        font-size: 30px;
        cursor: pointer;
        display: flex;
        
        align-items: center;
        justify-content: space-between;
    }
    .menu-hamburguer img{
        width: 15%;
    }
    #opcao_mobile{
        display: block;
    }
    #opcao_desktop{
        display: none;
    }
    .contato {
        background-image: url(/src/assets/images/background_cellphone.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
        z-index: 0;
        height: 60vh;
        padding: 20px;
        text-align: center;
        
    }
    .contato #bloco {
        padding: 2%;
        width: 50%;
        font-size: 18px;
    }
    .contato #bloco2 {
        margin-top: 5%;
        width: 50%;
        font-size: 12px;
    }
    

    .servicos #titulo{
        text-align: center;
    }
    .servicos .swiper-button-prev{
        display: none;
    }
    .servicos .swiper-button-next{
        display: none;
    }

    .card{
        margin-left: 13%;
        
    }

    .produtos {
        height: auto; /* Ajuste a altura para que não ocupe toda a altura da tela */
    }

    .produtos .quadro {
        height: auto;
        width: 90%; /* Aumenta a largura para dar mais espaço */
    }

    .produtos .quadro .conteudo {
        width: 100%;
        height: auto;
        gap: 1.5rem; /* Reduz o espaçamento */
        text-align: center;
        padding: 4%;
    }

    .produtos .quadro .conteudo #titulo {
        font-size: 30px; /* Diminui o tamanho da fonte */
    }

    .produtos .quadro .conteudo #lista_produtos {
        gap: 2rem; /* Reduz o espaçamento entre os itens */
        list-style: none;
    }

    .produtos .quadro .conteudo .qualidades {
        gap: 4rem; /* Ajusta o espaçamento das qualidades */
    }

    .produtos .quadro .conteudo .qualidades .qualidade {
        gap: 2rem; /* Ajusta o espaçamento interno das qualidades */
    }

    .produtos .quadro .conteudo .qualidades .qualidade span {
        display: none;
    }

    .produtos .quadro .conteudo .qualidades .qualidade img {
        width: 40px; /* Reduz o tamanho das imagens */
        height: 40px;
    }

    .depoimentos {
        display: none;
    }

    .carrossel #titulo{
        text-align: center;
        font-size: 38px;
        color: black;
        margin-bottom: 30px;
        margin-bottom: 7%;
    }
    .carrossel {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        height: 80vh;
    }
    .carrossel-container {
        width: 80%;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }
    .carrossel-item {
        display: none;
        text-align: center;
        font-size: 18px;
        padding: 1rem;
        border: 1px solid black;
        width: 100%;
    }
    .carrossel-item.ativo {
        display: block;
    }
    .carrossel .cliente {
    display: block; /* Coloca o nome da cliente em uma nova linha */
    margin-top: 10px; /* Espaço entre o depoimento e o nome da cliente */
    }


    .nosso_espaco {
        height: auto;
        flex-direction: column;
        text-align: center;
    }
    .nosso_espaco .cards_redondos {
        flex-direction: column;
        gap: 2rem;
    }
    .nosso_espaco .cards_redondos .card_redondo {
        width: 250px;
        height: 250px;
        position: relative;
        margin-top: 6%;
    }
    .nosso_espaco .cards_redondos .card_redondo span {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 5px 10px;
        font-size: 16px;
        border-radius: 5px;
    }


    .sobre_nos {
        flex-direction: column-reverse;
        height: auto;
        padding: 20px;
        background: linear-gradient(to bottom, var(--cor-secundaria) 10%, rgba(0, 0, 0, 0) 50%, black 90%);
    }
    .sobre_nos img {
        width: 100%; /* Faz a imagem ocupar toda a largura do contêiner */
        height: auto;
    }
    .sobre_nos .bloco_quem_somos {
        width: 90%;
    }
    

    footer {
        height: auto;
        padding: 20px;
    }
    footer .informacao {
        font-size: 20px;
    }
    footer img {
        width: 60%;
    }
}