@import url(./guideStyle.css);
@import url(./body.css);
@import url(./menu.css);

.content {
    padding-top: 100px;
    width: 100vw;

    line-height: 40px;
    box-sizing: border-box;
    max-width: 100vw;
}
.conteudo {
    width: 70%;
    margin: auto;
    
    @media (max-width:1000px){
        width: 95%;
    }
}

.fundo-titulo {
    text-align: left;
    font-weight: 600;
    background-color: var(--verde);
    color: var(--branco);
    padding: 10px;
    
    @media (max-width:1000px){
        text-align: center;
    }
}
.fundo-titulo-2 {
    text-align: left;
    font-weight: 600;
    background-color: var(--gold);
    color: var(--branco);
    padding: 10px;
    
    @media (max-width:1000px){
        text-align: center;
    }
}

.produto-texto {
    padding: 60px 0px;
    
    @media (max-width:1000px){
        padding: 40px 0px;
    }
}
.produtos-lista {
    list-style-type: disc;
    padding: 0px 30px;
    
    @media (max-width: 1000px) {
        list-style: disc;
        padding: 0px 0px;
    }
}


.produtos-numeros {
    padding: 60px 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.numeros-card {
    width: 20%;
    padding: 5px;
    
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    align-items: center;
    
    @media (max-width:1000px){
        width: 80%;
    }
}

.numeros-cardBC {
    width: 25%;
    padding: 5px;
    
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    align-items: center;
    
    @media (max-width:1000px){
        width: 80%;
    }
}

.numeros-card img, .numeros-cardBC img {
    height: 90px;
    width: 90px;
    
}
.card-numero {
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    
}
.card-texto {
    font-size: 16px;
    text-align: center;
    line-height: 20px;
    padding-top: 10px;
}

.titulo-numeros {
    padding: 60px 0px 0px 0px;
    text-align: center;
    font-weight: 700;
}

/* COA  */

.coa {
    width: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    @media (max-width:1000px){
        flex-direction: column;
    }
}
.coa .produtos-lista {
    width: 70%;
    
    @media (max-width:1000px){
        width: 80%;
    }
}
.coa img {
    height: 300px;
    padding-left: 40px;
    
    @media (max-width:1000px){
        width: 200px;
        padding-top: 40px;
    }
}
.coa .list{
    list-style: disc;
    padding-left: 20px;
}
.bold {
    font-weight: 700;
}