﻿/* reset b�sico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased !important;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
a {text-decoration: none;}
a:hover {text-decoration: none;}
ul,li {list-style: none;}

/* conteiner */
.container  {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
    @media (min-width: 1170px) {
        .container {
            max-width: 1170px;
            padding: 0;
        }
    }

 /* MENU */
header {
    width: 100%;
    height: 6em;
    background: #F4F8F9;
    border-bottom: 3px solid #00618E;
    position: fixed;
    z-index: 2;
}
header .container .contentMenu {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
}
header .container .contentMenu img {
    height: 70px;
    margin-top: 0.5em;
}
header .container .contentMenu ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
header .container .contentMenu ul li {
    margin-right: 20px;
}
header .container .contentMenu ul li:nth-child(3){
    margin-right: 0px;
}
header .container .contentMenu ul li a {
    font-size: 15px;
    font-weight: bold;
    color:  rgb(12, 62, 141);
}
header .container .contentMenu ul li a:hover {
    opacity: 0.7;
}
@media (max-width: 800px){
    header {
        height: 8em;
    }
    header .container .contentMenu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    header .container .contentMenu ul {
        margin-top: 20px;
    }
}

/* CAPA */
.capa {
    width: 100%;
    height: 100vh;
    background-image: url('../assets/c4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
@media (max-width: 900px){
    .capa {
        height: 80vh;
    } 
}
@media (max-width: 700px){
    .capa {
        height: 60vh;
    } 
}

/* CARDS */
.container .contentCards {
    display: flex;
    justify-content: space-around;
    position: relative;
    margin-top: -60px;
    width: 100%;
    height: auto;
}
.container .contentCards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    height: 200px;
    background: #ffffff;
    box-shadow: 3px 3px 10px #ccc;
    border-radius: 5px;
}
.container .contentCards .card img {
    height: 40px;
    margin-top: 15px;
}
.container .contentCards .card h2 {
    text-align: center;
    color: #00618E;
    font-size: 20px;
    margin-top: 15px;
    padding: 0 20px;
}
@media (max-width: 980px){
    .container .contentCards {
        flex-direction: column;
        align-items: center;
        margin-top: 0px;
    }
    .container .contentCards .card {
        margin-top: 20px;
        width: 100%;
    }
}

/* NOSSOS PRODUTOS */
.produtos .container #titoloProd {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    height: 10em;
}
.produtos .container #titolcolor {
    font-size: 20px;
    margin-bottom: 40px;
    letter-spacing: .2rem;
}
.produtos .container #titoloProd h3 {
    font-size: 17px;
    letter-spacing: .1rem;
}

.produtos .container .contentProdutos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    height: auto;
}
.produtos .container .contentProdutos .item {
    width: 300px;
    height: auto;
}

@media (max-width: 656px){
    .produtos .container .contentProdutos .item {
        margin-top: 25px !important;
    }
}

.produtos .container .contentProdutos img {
    width: 100%;
    margin-top: 50px;
}
.produtos .container .contentProdutos .mostrar {
    background: #ff6600;
    border: none;
    width: 100%;
    height: 3em;
    color: #ffffff;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
}
.produtos .container .contentProdutos .mostrar i {
    color: #ffffff;
    margin-right: 10px;
}
.produtos .container .contentProdutos ul {
    display: none;
}
.produtos .container .contentProdutos ul li {
    margin-top: 50px;
}
.compre-box {
 width: 100%;
 display: flex;
 justify-content: center;
 margin-top: 16px;
}

.compre {
    padding: 12px 24px;
    background: #ffffff;
    font-weight: bold;
    font-size: 12px;
    border: 1px solid #000;
    cursor: pointer;
    color: #000000;
}
.compre i {
    color: #000000;
    margin-right: 10px;
}

/* QUEM SOMOS */
.quemsomos {
    display: flex;
    align-items: center;
    width: 100%;
    height: 90vh;
    background: #F8FAFA;
    margin-top: 70px;
}
.quemsomos .box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 50vh;
}
.quemsomos .box div {
    display: flex;
    flex: 1;
    height: 50vh;
}
.quemsomos .box div:nth-child(1){
    border-radius: 15px;
    box-shadow: 3px 3px 10px #ccc;
    background-image: url(../assets/quemS.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.quemsomos .box div:nth-child(2){
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0 50px;
}

#txt {
    font-size: 20px;
}
#caixa {
    font-size: 17px;
    margin-top: 30px;
    line-height: 25px;
}
@media (max-width: 900px){
    .quemsomos {
        height: 100vh;
    }
    .quemsomos .box {
        flex-direction: column;
        align-items: center;
        height: 80vh;
    }
    .quemsomos .box div:nth-child(1){
        padding: 20% 30%;
    }
    .quemsomos .box div:nth-child(2){
        text-align: center;
        padding: 30px 30px;
    }
    #caixa {
        line-height: normal;
    }
}

/* CONTATO */
.contato {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.contato .container {
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.contato .container .info {
    display: flex;
    flex: 1;
    flex-direction: column;
}
.contato .container .info .logo2 img {
    height: 70px;
    margin-top: 100px;
}
.contato .container .info span {
    margin-top: 20px;
    color: #4789C6;
}

.contato .container form {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.contato .container form label {
    margin-top: 50px;
}
.contato .container form #nome, #email, #msg, #send {
    width: 100%;
    margin-top: 10px;
}
.contato .container form #nome, #email, #send {
    height: 3em;
}
.contato .container form #msg {
    height: 8em;
}
.contato .container form #send {
    background: #4789C6;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: 1s;
}
.contato .container form #send:hover {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}
.contato .container form #nome, #email, #msg::placeholder{
    padding-left: 10px;
    font-size: 15px;
}
.contato .container .footer2 {
    display: none;
}
@media (max-width: 1000px){
    .contato .container {
        flex-direction: column;
    }
    .contato .container .info {
        justify-content: center;
        align-items: center;
    }
}

/* RODAPÉ */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3.5em;
    background: #43464C;
}
footer p {
    color: #ffffff;
}

/* Required for animation */
.animaTop {
    opacity: 0;
    transform: translate3d(0,-100px,0);
    transition: 2s;
}
.anime {
    opacity: 0;
    transform: translate3d(0,-100px,0);
    transition: 2s;
}
.animeLeft {
    opacity: 0;
    transform: translate3d(0,-100px,0);
    transition: 2s;
}
.anime-start {
    opacity: 1;
    transform: translate3d(0,0,0);
}