/* Inicia aqui a sessão com página principal */


header {
    width: 100%;
    height: 180px;

    position: absolute;
    z-index: 4;

}

.section2 {
    height: 120%;
}

.containerHeader {
    width: 80%;
    height: 100%;

    margin: auto;
    border-bottom: solid 1px var(--branco);

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;


}


.containerHeader a {
    text-decoration: none;
    color: white;
    text-shadow: 2px 2px 2px black;


}

.containerHeader img {

    width: 90%;

}

nav {
    width: 700px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav div {
    margin: 20px;
    font-weight: 500;
    cursor: pointer;

}

nav div:hover {
    background-color: var(--branco);
}



.containerContent {
    width: 100%;
    /* height: calc(60%); */
    display: flex;
    /* position: absolute; */
    bottom: 0;
    height: 70%;
}



.imgProdutos img {
    height: 83%;
    width: 70%;
}

.textProdutos {
    padding-left: 50px;
    width: 50%;
    display: flex;
    justify-content: left;
    align-items: center;

}

.textProdutos p {
    width: 70%;
    line-height: 1.6em;
}

/* form de contato aqui */

.downSection {
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 40px;
}

.textContact {
    width: 50%;
    height: 15%;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: right;
}


.anotherDiv {
    height: 50%;
}


.textContact span {
    width: 100%;
    height: 3px;
    background-color: var(--cor04);
    display: block;
}

.textContact h2 {
    font-size: 2em;
    margin: 5px 0px 22px 0px;
    text-align: center;
}

.textContact p {

    font-size: 1.0em;

    text-align: center;

    width: 1;
}


.formContact {
    width: 50%;
    height: 72%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}



.inputArea {
    width: 64%;
    margin-left: 10px;
    margin: 5px 0;
}

.formContact input {
    width: 100%;
    height: 30px;
    border: solid 2px var(--cor04);
    border-radius: 5px;
    padding: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}


.textArea {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

}

.formContact textarea {
    width: 64%;
    border: solid 2px var(--cor04);
    border-radius: 5px;

    padding: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.sendButton {
    width:40px;
    height: 40px;
    border: solid 2px var(--cor04);
    border-radius: 5px;
    margin-left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 50%;
}

.sendButton:hover {
    background-color: var(--cor02);
    transition: 0.4s;
}

.sendButton img{
   height: 20px;

}




.imgProdutos {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: right;
    align-items: center;
    text-align: right;


}

.imgProdutos img {

    width: 100%;
}


@media screen and (max-width:1400px) {

    .sendButton{
        width: 50%;
        margin-top: 10px;
    }
    .formContact {
        height: 60%;
    }

    .formContact input{
        margin: 5px 0;
    }
    .textArea {
        height: 50%;
        width: 110%;
        margin-top: 10px;
    }

    .map img {
        width: 80%;
    }


    .containerTextFourthPage p {
        width: 100%;

    }

    .leftBox img {
        width: 80%;
    }

    .containerLIstFooter {
        width: 80%;
        margin: auto;
    }

    .containerHeader {
        width: 80%;
    }

    .section2 {
        margin-bottom: 200px;
    }

    .downSection {
        height: 100%;
    }

    .formContact textarea {
        height: 100%;
    }

    .textContact {
        width: 80%;

    }

    .textContact p {
        font-size: 1.1em;
        margin-top: 20px;


    }
}





.botaoLenguage {
    min-width: 70px;
    height: 25px;
    background-color: rgb(244, 244, 244);
    border: solid 2px rgb(61, 58, 58);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.parteInternaBotao {
    width: 50%;
    height: 100%;
    background-color: rgb(60, 204, 20);
    box-shadow: 2px 2px 3px rgb(128, 255, 0);
    box-shadow: inset 0px 1px 2px rgb(166, 255, 0);
    border-radius: 20px;
    position: absolute;
    left: 2.5%;
}

.toLeftButton {
    animation: toLeftButton 0.5s ease-in-out forwards;
}

.toRightButton {
    animation: toRightButton 0.5s ease-in-out forwards;
}

@keyframes toLeftButton {
    0% {
        left: 0%;
    }

    100% {
        left: 50%;
    }
}

@keyframes toRightButton {
    0% {
        left: 50%;
    }

    100% {
        left: 0%;
    }
}

.botaoLenguage img:nth-child(2) {
    height: 95%;
    position: absolute;
    left: 2.5%;

}

.botaoLenguage img:nth-child(3) {
    height: 95%;
    position: absolute;
    right: 2.5%;
}

.containerHeaderMobile {
    display: none;
}

.fadeIn {
    display: block;
    animation: fadeInMenu 0.3s ease-in-out forwards;
}

.fadeOut {

    animation: fadeOutMenu 0.3s ease-in-out forwards;
}


@keyframes fadeInMenu {
    0% {
        opacity: 0;
        /* Começa e termina com opacidade 0 */
    }

    100% {
        opacity: 1;
        /* Tem opacidade 1 na metade da animação */
    }

}


@keyframes fadeOutMenu {
    0% {
        opacity: 1;
        /* Começa e termina com opacidade 0 */
    }

    100% {
        opacity: 0;
        /* Tem opacidade 1 na metade da animação */
    }

}




@media screen and (max-width: 800px) {


    .formContact {
        height: 50%;
        width: 100%;
        justify-content: space-between;
    }


    .inputArea {
        width: 90%;
        margin: 10px 0;
    }

    .formContact textarea {
        width: 90%;
    }

    .textContact h2 {
        font-size: 1.5em;
    }

    .sendButton {
        margin-top: 10px;
        width: 40px;
        border-radius: 50%;
    }

    .textArea {
        width: 100%;
    }

    .downSection {
        height: 50%;
    }

    .imgProdutos img {
        margin-top: 40px;
        height: 100%;
    }

    .imgProdutos h2 {
        text-align: center;
        width: 100%;
        font-size: 1.5em;
    }

    .imagemLogoMobile {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, 80%);
        z-index: 200;
        mix-blend-mode: overlay;
    }

    .containerHeaderMobile {
        position: absolute;
        width: 100%;
        height: 300px;
        z-index: 20;
        margin-top: 40px;
    }

    .navMobile{
        width: 100%;
        height: 65%;
        display: flex;
        flex-wrap: wrap;
        background-color: rgba(207, 207, 207, 0.679);
        border-radius: 0 0 20px 20px;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .containerHeaderMobile  a {
        width: 35%;
        height: 11%;
        margin: 3%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        /* background-color: var(--cor01); */
        color: #676767;
        box-shadow: var(--boxShadow);
        border-radius: 10px;
        border: 1px solid;
        padding: 2px;
        font-size: 0.8em;
    }

    .containerHeader,
    .containerImg {
        display: none;
    }

    .containerImgMobile {
        display: block;
    }

    .textProdutos {
        width: 100%;
        height: 125%;
        flex-direction: column;
        justify-content: space-around;


    }

    .imgHistória {
        width: 70%;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .imgHistória img {
        width: 100%;
    }

    .containerContent {
        height: auto;
        margin-bottom: 10px;
    }


    .textContact {
        width: 95%;

    }

    .contact {
        height: 3;
    }

    .section2 {
        margin: 0;
        height: 100%;
    }

}