@font-face {
    font-family: "tiltwarp";
    src: url("assets/fonts/MerriweatherSans-Light.ttf") format("truetype");
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}
* {box-sizing: border-box;}
body{
    margin: 0;
    padding: 0;
    font-family: "tiltwarp";
    color: #404040;
    overflow-x: hidden;
}
.verde_escuro{
    background-color: #2a674e;
}
.verde_claro{
    background-color: #70bd3a;
}
.azul{
    background-color: #217fb1;
}
.amarelo{
    background-color: #f8a71c;
}
.texto_branco{
    color: white;
}
.texto_cinza{
    color: #404040;
}
.justificado{
    text-align: justify;
    padding: 0px 20px;
}
.centro{
    text-align: center;
}
.parte{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    font-size: 20px;
    overflow-x: hidden;
    color: black;
}

.titulo{
    text-align: center;
    font-size: 2em;
}

.texto{
    text-align: justify;
    font-size: 0.7em;
}
.gloss{
        /* From https://css.glass */
background: rgba(255, 255, 255, 0.7);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
}
/*Menu*/
#menu{
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    display: grid;
    z-index: 2;
    transition: 1s;
}
#logo{
    width: 250px;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1s;
}

#botoes{
    position: absolute;
    top: 0;
    right: 0px;
    padding: 10px;
}
.socialMenu{
    display: none!important;
}
#botaoLogo{
    width: fit-content;
}
@media screen and (max-width: 768px) {
    #botoes{
        position: absolute;
        top: -25px;
        right: -500px;
        padding: 10px;
        height: 120vh;
        background-color: #545454;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 1s ease-in;
    }
    #logo{
        position: absolute;
        top: 0;
        left: calc(50% - 125px);
        transition: 1s;
    }
    #menu input:checked ~ #botoes{
        right: -25px;
        transition: 1s ease-in;
    }
    .socialMenu{
        display: block!important;
    }
}

#botoes a{
    text-decoration: none;
    display: inline-block;
    margin-right:40px ;
    font-size: 1.2rem;
    color: #fff;
    padding: 10px;
    border-radius:30px;
}

#table a{
    margin:0px;
}
#table{
    margin-right:40px;
}
#botoes a:hover{
    color: #000000;
    background-color: rgb(255, 255, 255);
    transition: 0.5s ease-in-out;
}

#menu label{
    position: absolute;
    top: 25px;
    right: 25px;
}
#menu input{
    position: absolute;
    top: 9px;
    right: 17px;
}
/*botao menu*/
#menu input{
    visibility: hidden;
    width: 40px;
    height: 40px;
}
#menu label{
    display: none;
}

@media screen and (max-width: 768px) {
    #menu label{
        display: block;
        z-index: 3;
    }
}

#menu input:checked ~ .hamburger{
    background: transparent;
}
#menu input:checked ~ .hamburger::before{
    transform: rotate(45deg);
    top: 0;
}#menu input:checked ~ .hamburger::after{
    transform: rotate(-45deg);
    top:0;
}


.hamburger{
    position: relative;
    width: 30px;
    height: 4px;
    background: white;
    border-radius:10px;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s;
}

.hamburger::before,
.hamburger::after{
    content: "";
    position: absolute;
    height: 4px;
    right: 0;
    background: white;
    border-radius:10px;
    transition: 0.3s;
}
.hamburger::before{
    top: -10px;
    width: 30px;
    height: 4px;
}
.hamburger::after{
    top: 10px;
    width: 30px;
    height: 4px;
}


/*Slider principal*/

.banerContem {
    width: 100%;
    height: 100vh;
    background-color: #217fb1;
}
@media screen and (max-width: 768px) {
    .banerContem {
        height: 95vh;
    }
}
.banerItem:nth-child(1){
    background-image: url("assets/imagens/fundos/fundo4.png");
}.banerItem:nth-child(2){
    background-image: url("assets/imagens/fundos/fundo3.png");
}.banerItem:nth-child(3){
    background-image: url("assets/imagens/fundos/fundo1.png");
}.banerItem:nth-child(4){
    background-image: url("assets/imagens/fundos/fundo2.png");
}
.banerItem{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position:center;
}

/*produtos*/

.produtoContem{
    width: 70%;
    height: auto;
}
@media screen and (max-width: 768px) {
    .produtoContem{
        width: 100%;
    }
    .parte{
        font-size: 18px;
        width: 100%;
    }
    .texto{
        font-size: 1.2em;
    }
}
@media screen and (max-width: 500px) {
    .parte{
        font-size: 15px;
    }
}
@media screen and (max-width: 400px) {
    .parte{
        font-size: 12px;
    }
}
.produtoItem img{
    width: 100%;
}


/*  footer  */

#footerColor{
    background-color: #217fb1;
    width: 100%;
    height: auto;
}

#footer{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 20px 0px;
}

#footer div{
    width: 30%;
}

#footer ul{
    list-style: none;
    font-size: 1.2rem;
    color: white;
}

#footer ul li{
    margin-top: 10px;
}

#footer ul li:nth-child(1){
    border-bottom: 4px solid #f8a71c;
    width: 50%;
}

@media screen and (max-width: 768px) {
    #footer{
        flex-direction: column-reverse;
    }
    #footer div{
        width: 90%;
    }
}

.social a{
    text-decoration: none;
    color: white;
    transition: 0.2s;
}
.social a:hover{
    color: #f8a71c;;
    transition: 0.2s;
}

/*sobre nos*/
.conteudo_responsivo{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
.item_responsivo{
    width: 50%;
    text-align: justify;
    padding: 20px;
}
.item_responsivo img{
    width: 100%;
}
h3{
    text-align: left;
    color: #f8a71c;
}
.naocor h3{
    color: #217fb1;
}

@media screen and (max-width: 768px) {
    .conteudo_responsivo{
        flex-direction: column;
        overflow-x: hidden;
    }
    .item_responsivo{
        width: 100%;
        overflow-x: hidden;
    }
    .imgItem{
        display: flex;
        justify-content: center;
    }
    .imgItem img{
        width: 155%;
    }
}

/*Contato*/

#contato{
    width: 100%;
    height: fit-content;
    background-image: url("assets/imagens/fundos/Estampa-Brasil.png");
    background-position: center;
    background-size: cover;

    display: grid;
    align-items: center;
    justify-content: center;
}

.submission-form{
    width: 700px;
    padding: 20px;
    margin: auto;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
}

.inputes,textarea,#sendBtn{
    width: 100%;
    border-radius: 15px;
    margin-bottom: 10px;
    border: 1px solid gray;
    font-size: 1.2rem;
    height: 40px;
    padding-left: 10px;
}

textarea{
    height: 200px;
    resize: vertical;
}

#sendBtn{
    width: fit-content;
    margin: auto;
    padding: 0px 30px;
    transition: all 0.3s;
}

#sendBtn:hover{
    background-color: #217fb1;
    color: white;
    transition: all 0.3s;
}

@media screen and (max-width: 768px) {
    .submission-form{
        width: 400px;
    }
}
@media screen and (max-width: 400px) {
    .submission-form{
        width: 300px;
    }
}


/*parceiros*/

.grade {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    transition: all 1s ease;
}
@media screen and (max-width: 768px) {
    .grade {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        transition: all 1s ease;
    }
}

.grade img{
    width: 100%;
    transition: all 1s ease;
}


/*efeito suave*/

.hiddenL{
    opacity: 0;
    transform: translateX(-100%);
    transition: all 1s;
}
.hiddenR{
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s;
}
.show{
    opacity: 1;
    transform: translateX(0);
}



/*parallax*/

.parallax{
    min-height: 250px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.paraA{
    background-image: url("assets/imagens/fundos/fundoManeiro1.jpg");
}
.paraB{
    background-image: url("assets/imagens/fundos/fundoManeiro2.jpg");
}
    
@media screen and (max-width: 768px) {
    .parallax {
        background-attachment: scroll;
        min-height: 150px; 
    }
}
    

/*mascote :( */
#mascote{
    width: 100%;
    margin: 20px 0px;
    display: flex;
    align-items: center;
}
#mascote img{
    width: 400px;
    margin: auto;
}
@media screen and (max-width: 500px) {
    #mascote img{
        width: 200px;
    }
}


/* missalenius */
.justificado a{
    text-decoration: none;
    color: #217fb1;
}
#apoio{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#apoio img{
    width: 50%;
}

@media screen and (max-width: 768px) {
    #apoio img{
        width: 70%;
    }   
}