
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    color: rgb(0, 0, 0);
    --font-secundaria: "Gowun Batang", serif;
    --cor-principal: #0e6a37;
    --cor-secundaria:#744434;
    --cor-terciaria: #fffaf0;
    --cor-quaternaria: #744434;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    /*Organizar os itens em uma coluna*/
    background-color: var(--cor-terciaria);
    height: 100vh;
    /*Altura total da tela*/
}

header {
    display: block;
    position: sticky;
    top: 0;
    background-color: var(--cor-terciaria);
    flex: 0 0 auto; 
    /* justify-content: start;
    align-items: center;
    flex-direction: column; 
    padding: 0.7rem 6rem; */
    display: flex;
    z-index: 4;
}


.imagemfundo{
    position:relative;
    opacity: 0.9;
    background-image: url("../imagem/imagemfundoatualizada.JPG");
    height: 700px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

header img {
    width: 7%;
    margin: 0 auto;
    text-align: center;
}

header .centralizar-div {
    position: relative;
    text-align: left;
    z-index: 2;
    /* Garante que o conteúdo fique acima do background */
}

header h1 {
    position: relative;
    color: #000;
    text-shadow: 2px 2px 6px var(--cor-terciaria);
    text-align: center;
    justify-content: center;
    margin-bottom: 10px;
    z-index: 2;
}

.transparencia::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(92, 172, 128, 0.1);
    background-blend-mode: overlay;
    z-index: 1;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu {
    flex: 0 0 auto;
    align-items: center;
    width: 300px;
    height: 57%;
    background-color: #fffaf0a6 ; 
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 19;
    margin: 10px;   
    border-radius: 10px;
}

.menubotao{
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 20;
}

.menubotao button{
    font-size: 40px;
    background-color: transparent;
    border: none;
}

#botaomenu{
    cursor: pointer;
}

.mostrar{
    display: none;
}

.menu ul {
    height: 100%;
    display: flex;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    flex-direction: column;
    
    
}

.menu ul li {
    display: flex;
    padding: 0 20px;
}

.menu ul li a {
    display: flex;
    padding: 10px;
    margin: auto 0;
    border-radius: 30px;
    text-decoration: none;
    color: black;
    
}

.menu ul li a:hover {
    background-color: var(--cor-secundaria);
}

.titulo{
    padding: 10px;
    margin-top: 50px;
    margin-left: 100px;
    font-size: 13px;
}

.artesanatos{
    display: flex;
    width: 90%;
    margin: 0 auto;
    justify-content: space-around;
    margin-top: 10px;
}
.item-artesanato {
    width: 100%;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-artesanato img {
    width: 500px;
    /* Ajuste o tamanho da imagem conforme necessário */
    height: 300px;
    /* Ajuste o tamanho da imagem conforme necessário */
    margin: 0 auto;
}

.item-artesanato img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.item-artesanato img:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4),-4px -4px 4px rgba(0, 0, 0, 0.4); 
}

.titulo2{
    padding: 10px;
    margin-top: 50px;
    margin-left: 100px;
    font-size: 13px;
}
.artesanatos2{
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    margin-top: 10px;
}

.item-artesanato2{
    width: 90%;
    margin: 0 auto;
}

.item-artesanato2 img{
    width: 33%;
}

.corpo {
    display: flex;
}
.empresa{
    text-align: center;
    margin: 200px;
    padding: 10px;
    color: var(--cor-terciaria);
    font-size: 35px;
}

footer {
    flex: 0 0 auto;
    text-align: center;
    background-color: #0e6a37;
    padding: 20px;
}

footer .linha {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

footer .item {
    width: 400px;
}

footer .item img {
    width: 50px;
    height: auto;
}

footer .rede-social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 30px;
    align-items: center;
    flex-wrap: wrap;
}

footer a {
    text-decoration: none;
    color: var(--cor-terciaria);
    display: flex;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.textologo {
margin-left: 150px;
}


@media screen and (max-width: 1024px) {

    body {
        width: 100%;
        margin: 0;
    }

    header {
        display: flex;
        flex-direction: row;
        justify-content: center;

    }

    header h1 {
        margin-bottom: 30px;
        font-size: 25px;
    }

    header img {
        width: 250px;
        margin: 0 auto;
    }

    .empresa{
        margin: 30px ;
        text-align: justify;
        font-size: 15px;
        padding: 50px;
    }

    .conteudo {
        margin: 6px;
    }

    .conteudo p {
        padding: 10px;
    }

    .centralizar-div {
        width: 50%;
        margin: 0 auto;
    }

    .item-artesanato{
        flex-direction: column;
        padding: 0%;
    }

    .item-artesanato img{
        width: 100%;
    }

    .item-artesanato2{
        flex-direction: column;
        padding: 0%;
    }

    .item-artesanato2 img{
        width: 100%;
    }
    .imagemfundo{
        display: none;
    }
  


}