.secondSection{
    display: none;
}
.displayFlexSection{
    display: flex;
    flex-direction: row;
}
.leftBox{
    width: 40%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgb(7,102,48);
    background: -moz-linear-gradient(180deg, rgba(7,102,48,1) 0%, rgba(3,67,33,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(7,102,48,1) 0%, rgba(3,67,33,1) 100%);
    background: linear-gradient(180deg, rgba(7,102,48,1) 0%, rgba(3,67,33,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#076630",endColorstr="#034321",GradientType=1);
}
.rightBox{
    width: 60%;
    height: 100%;
    background-color: white;
    background-image: url(../img/imagem\ produtor\ fundpo.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.containerTextSecondPage{
    width: 85%;
    height: 170px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: space-between;
}

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

.containerTextSecondPage p{
    width: 600px;
    font-size:var(--fontParagraph);
    color: var(--cor04);
}

.containerTextSecondPage a{
    width: 128px;
    height: 27px;
    border: solid 2px var(--cor04);
    background-color: transparent;
    border-radius: 20px;
    font-size: 1.0em;
    text-align: center;
    color: var(--cor04);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.containerTextSecondPage a:hover{
 background-color: var(--cor02);
 transition: 0.5s;
 color: white;
}


/* portabilidade para mobile a partir daqui */

@media screen and (max-width:800px){
    .containerTextSecondPage{
  
    }
    .displayFlexSection{
        flex-direction: column;
    }
    .leftBox{
        width: 100%;
    }
    .rightBox{
        width: 100%;
    }

    .containerTextSecondPage{
        left: 50%;
        transform: translate(-50%,-50%);
        align-items: center;
        padding: 10px;
    }
    .containerTextSecondPage p{
        width: 100%;
        text-align: center;
        margin-bottom: 5%;
    }
}
