.about_section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 85%;
}
.about_section .about_p1 {
    display: flex;
}
.about_section .about_p1 h1{
    font-size: 30px;
}
.about_section p{
    font-size: 16px;
    font-weight: lighter;
    line-height: 18px;
    color: var(--blue-2);
}

.about_section .paralax{
    background-image: url('../images/paralax_infortread.png');
    background-size: cover;
    filter: grayscale(100%) brightness(80%);
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 10px;
    margin-top:50px;
    margin-bottom: 30px;
    flex: 1;
    height: 350px;
    width: 100%;
    transition: filter 0.5s ease;
}
.about_section .paralax:hover{
    filter: none;
}

.mvv{
    padding: 15px;
    margin: 15px;
    position: relative;
}


.mvv p{
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.mvv p.visible{
    opacity: 1;
    transform: translateX(0);
}

/* Missão, Visão e Valores */
.mvv_container{
    display: flex;
    width: 100%;
}
.mvv_container .circ1, .mvv_container .circ2{
    display: none;
}

.missao, .valores{
    border: 2px var(--gray-1) dotted;
    border-radius: 10px;
    margin-left: 0;
    margin-bottom: 0;
    text-align: center;
}
.visao{
    border: 2px var(--gray-1) dotted;
    border-radius: 10px;
    margin-left: 0;
    text-align: center;
}
.visao h2, .missao h2, .valores h2{
    font-size: 18px;
    text-transform: uppercase;
}
.visao p, .missao p, .valores p{
    color: var(--gray-2);
    font-size: 14px;
}
.valores{
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
}
.valores img{
    display: none;
}

.locais_section .locais_list h3{
    font-size: 9px;
    color: var(--orange-1);
    margin-top: 20px;
}

.locais_section .locais_list ul{
    padding-left: 10px;
}

.locais_section .locais_list li{
    width: 50%;
    line-height: 12px;
    padding: 0;
}

.locais_section .locais_list ul li::marker{
    color: var(--orange-1);
    font-size: 11px;
    margin-top: 0;
}


/* ==================================== */


@media (max-width: 601px) {

    .about_section{
        width: 90%;
        border: none;
        display: flex;
        flex-direction: column;
    }
    .mvv_container .circ1, .mvv_container .circ2{
        display: block;
        background-color: var(--orange-1);
        width: 7px;
        height: 7px;
        position: absolute;
        border-radius: 5px;
    }
    .mvv_container .circ1{
        left: -4px;
        top: 0;
    }
    .mvv_container .circ2{
        right: -4px;
        bottom: -4px;
    }


    /* Animação dos circs */
    /* @keyframes moveCirc1 {
        0%, 100% {
            left: -4px;
            top: 0;
        }

        25%{
            left: -4px;
            top: 99%;
        }
        50% {
            top: 99%;
            left: 100%;
        }
        75% {
            top: 99%;
            left: -4px;
        }
    } */

    /* @keyframes moveCirc2 {
        0%, 100% {
            right: -4px;
            bottom: -4px;
        }
        25%{
            right: 99%;
            bottom: -4px;
        }
        50% {
            right: 99%;
            bottom: 99%;
        }
        75% {
            right: 99%;
            bottom: -4px;
        }
    } */

    /* .mvv_container .circ1 {
        animation: moveCirc1 4s infinite ease-in-out;
    }

    .mvv_container .circ2 {
        animation: moveCirc2 4s infinite ease-in-out;
    } */

    /* fim da animação circ */



    .about_section p{
        font-size: 12px;
        font-weight: lighter;
        line-height: 14px;
        color: var(--blue-2);
    }
    .about_section .about_p1 {
        display: flex;
        flex-direction: column;
    }
    .about_section .about_p1 h1{
        font-size: 20px;
    }

    .about_section .about_p1 .paralax{
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        filter: none;
        flex: none;
        margin-left: 0;
        margin-top:0;
        margin-bottom: 20px;
        height: 200px;
        width: 100%;
    }

    .mvv{
        padding: 10px 10px 10px 10px;
        margin: 0;
    }
    .mvv_container{
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .about_section .img_float figure{
        padding: 0;
        width: 180px;
        height: 90px;
        margin-left: 0;
        border: 1px solid red;
    }
    .about_section .img_float img{
        float: left;
        margin-right: 10px;
        margin-bottom: 5px;
        width: 180px;
        padding: 0;
        margin-right: 0;
    }

    .about_section .img_float figcaption{
        font-size: 7px;
        display: flex;
        float: left;
    }
    /* Missão, Visão e Valores */
    .missao, .valores{
        border-top: none;
        border-right: none;
        border-left: 2px var(--gray-1) dotted;
        border-bottom: 2px var(--gray-1) dotted;
        border-radius: 0px 0px 0px 10px;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .missao{
        margin-right: 10px;
    }
    .visao{
        border-top: none;
        border-left: none;
        border-right: 2px var(--gray-1) dotted;
        border-bottom: 2px var(--gray-1) dotted;
        border-radius: 0px 10px 10px 0px;
        padding-top: 10px;
        margin-left: 10px;
        margin-right: 0;
    }
    .visao h2, .missao h2, .valores h2{
        font-size: 14px;
        text-transform: uppercase;
    }
    .visao p, .missao p, .valores p{
        color: var(--gray-2);
        font-size: 12px;
    }
    .valores{
        border-radius: 10px 0 0 10px;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-around;
    }
    .valores img{
        width: 150px;
        height: 150px;
    }

    .locais_section .locais_list h3{
        font-size: 9px;
        color: var(--orange-1);
        margin-top: 20px;
    }

    .locais_section .locais_list ul{
        padding-left: 10px;
    }

    .locais_section .locais_list li{
        width: 50%;
        line-height: 12px;
        padding: 0;
    }

    .locais_section .locais_list ul li::marker{
        color: var(--orange-1);
        font-size: 11px;
        margin-top: 0;
    }
}
