/* Estilo automático para a página: sobre-nos */

#historia{
    padding: 70px 0;
    border-top: solid 10px #E7FF25;

    p{
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: var(--Cinza);
    }
}

#mvv {
    padding: 60px 0;

    .card-mvv {
        background-color: var(--VerdePrimario);
        min-height: 360px;
        width: 100%;
        padding: 30px;
        text-align: center;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        .titulo-mvv {
            font-weight: 600;
            font-size: 28px;
            color: var(--Branco);
        }
        .text-mvv {
            font-weight: 400;
            font-size: 16px;
            line-height: 160%;
            color: var(--Branco);
        }

        &::after{
            clip-path: ellipse(52% 40% at 50% 100%);
            background-color: var(--Branco);
            background-size: auto;
            display: inline-block;
            width: 100%;
            height: 70px;
            content: "";
            bottom: -5px;
            right: 0;
            position: absolute;
            z-index: 1;

        }
    }

    .swiper-pagination-bullet {
        background: var(--VerdePrimario);
    }
    .swiper-pagination-bullet-active {
        background: #013F32;
    }
}

#parceiros{
    padding: 60px 0;

    
    .logo-parceiro {
        width: 100%;
        height: 60px;
        object-fit: contain;
    }

}


/* TABLET */
@media (min-width: 768px) and (max-width: 1200px) {
    
}

/* MOBILE */
@media all and (max-width: 767px) { 
  #historia{
    img{
        margin: 24px 0;
    }
    .mob-form-bt{
        text-align: center;
    }
  }
}