@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Work Sans";
    outline: none;
    color: var(--color1);
}

:root {
    --color1: #003cff;
    --color2: #eee;
    --color3: #AEA48C;
    --color4: #B0E0E6;

}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

main {
    background-color: #efef;
}


/*==================== HEADER ============================*/
/*=======================================================*/
#myHeader {
    position: fixed;
    width: 100%;
    z-index: 99;
    display: flex;
    text-align: center;
    justify-content: space-between;
    padding: 1% 10%;
    background-color: #003cffbb;
}

#myHeader .logo {
    transition: opacity .5s ease;
    opacity: 1;
}

#myHeader .logo p {
    color: var(--color2);
    font-size: 1.3em;
    font-weight: 500;
}

#myHeader .menuNavegacao {
    display: flex;
    align-items: center;
    justify-content: center;
}

#myHeader .menuNavegacao .toggle {
    border: none;
    background-color: var(--color2);
    border-radius: 5px;
    font-size: 1.5em;
    cursor: pointer;
    padding: 2px;
    position: fixed;
    transition: all 0.5s cubic-bezier(.73, .13, .29, .74);
}

#myHeader .menuNavegacao .toggle:hover {
    background-color: #e9e6e6;
}

#myHeader .menuNavegacao .toggle.ativo {
    margin-right: 50%;
}

#myHeader .menuNavegacao .toggle i {
    color: var(--color1);
}

#myHeader .menuNavegacao .navegacao {
    position: fixed;
    right: -33%;
    top: 0;
    width: 30%;
    height: 100%;
    background-color: var(--color1);
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
        0 3px 6px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7%;
    transition: all 0.5s cubic-bezier(.88, .04, .37, 1);
}

#myHeader .menuNavegacao .navegacao.ativo {
    right: 0;
}

#myHeader .menuNavegacao .navegacao ul {
    background-color: var(--color2);
    padding: 2%;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
        0 3px 6px rgba(0, 0, 0, 0.5);
}

#myHeader .menuNavegacao .navegacao ul:last-child {
    margin-top: 20px;
    background-color: #022391;
}

#myHeader .menuNavegacao .navegacao ul:last-child li i,
#myHeader .menuNavegacao .navegacao ul:last-child li a {
    color: var(--color2);
}

#myHeader .menuNavegacao .navegacao ul:last-child:hover li i,
#myHeader .menuNavegacao .navegacao ul:last-child:hover li a {
    color: var(--color1);
}

#myHeader .menuNavegacao .navegacao ul:last-child:hover {
    background-color: var(--color2);
}

#myHeader .menuNavegacao .navegacao ul:hover {
    background-color: #022391;
}

#myHeader .menuNavegacao .navegacao ul:hover li i,
#myHeader .menuNavegacao .navegacao ul:hover li a {
    color: var(--color2);
}

/*=======================================================*/


/*================== HOME ===============================*/
#home {
    background-color: var(--color4);
}

.center {
    width: 98%;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: initial;
    justify-content: center;
}

#home .center .content .title h1 {
    font-size: 3.3em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.2em;
}

#home .center .content .subtitle p {
    line-height: 2em;
    font-size: 1.3em;
    font-weight: 400;
}

#home .center .content .redeSociais {
    padding: 2%;
    display: flex;
    flex-direction: row;
    gap: 2%;
}

#home .center .content .redeSociais .rsContent {
    max-width: 35px;
    width: 100%;
    padding-top: 35px;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    transition: all .5s ease;
}

#home .center .content .redeSociais .rsContent:hover {
    transform: translatey(-10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.2);
}


#home .center .content .redeSociais .rsContent:nth-child(1) .img {
    position: absolute;
    background-image: url(/imagens/instagram.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#home .center .content .redeSociais .rsContent:nth-child(2) .img {
    position: absolute;
    background-image: url(/imagens/communication.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}




#home .center .contentLogo {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home .center .contentLogo .logoImg {
    max-width: 500px;
    width: 100%;
    padding-top: 500px;
    position: relative;
}

#home .center .contentLogo .logoImg .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/imagens/imgLogo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*=======================================================*/


/*================= ATIVIDADES ==========================*/


#atividades {
    width: 100%;
    padding-top: 100px;
}

#atividades .center {
    margin-bottom: 10%;
}

#atividades .center .conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}



#atividades .conteudo .text {
    line-height: 2em;
    font-size: 2.75em;
    text-align: center;
}

#atividades .center .conteudo .text .subtitle p {
    font-size: .5em;
    font-weight: 300;
    color: var(--color3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#atividades .center .conteudo .text .contact a {
    background: linear-gradient(#003cff, #022ec0);
    border: none;
    font-size: .7em;
    padding: 10px;
    border-radius: 50px;
    color: var(--color2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.2);
}


.contentAtividades {
    display: flex;
    flex-direction: column;
    gap: 200px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 1%;
}

.contentAtividades .boxAtividade:nth-child(1) {
    align-self: flex-start;
}

.contentAtividades .boxAtividade:nth-child(2) {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.contentAtividades .boxAtividade:nth-child(3) {
    align-self: flex-start;
}

.contentAtividades .boxAtividade {
    max-width: 1000px;
    width: 100%;
    background-color: var(--color1);
    border-radius: 8px;
    padding: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
}

.contentAtividades .boxAtividade .imgContent {
    top: 0;
    left: 0px;
    position: relative;
    max-width: 300px;
    width: 100%;
    padding-top: 300px;
}

.contentAtividades .boxAtividade .imgContent .img {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/imagens/img5.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    border: 8px solid #022ec0;
    border-radius: 6px;
    border: none;
}

.contentAtividades .boxAtividade:nth-child(2) .imgContent .img {
    background-image: url(/imagens/img9.jpg) !important;
}

.contentAtividades .boxAtividade:nth-child(3) .imgContent .img {
    background-image: url(/imagens/img1.jpg) !important;
}

.contentAtividades .boxAtividade .content {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    width: 80%;
}


.contentAtividades .boxAtividade .content .contenTitle {
    padding: 30px;
}

.contentAtividades .boxAtividade .content .contenTitle p {
    font-family: "Pacifico";
    font-size: 1.75em;
    color: var(--color2);
}

.contentAtividades .boxAtividade .content .contenText {
    text-align: justify;
    margin-bottom: 50px;

}

.contentAtividades .boxAtividade .content .contenText p {
    color: var(--color2);
    line-height: 1.5em;
    font-weight: 300;
}

.contentAtividades .boxAtividade .content .modalidades .modalidadesList ul {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 10%;
}

.contentAtividades .boxAtividade .content .modalidades .modalidadesList ul li {
    padding: 10px;
    background: linear-gradient(#eee, #f5f1f1);
    border-radius: 50px;
    border: none;
}

.jeduca {
    width: 100%;
    margin-top: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.jeduca h3 {
    font-size: 2.3em;
    margin-bottom: 80px;
}

.jeduca .imgContent {
    width: 100%;
    padding-top: 585px;
    position: relative;
    background-image: url(/imagens/Jeduca3.jpeg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.jeduca .imgContent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.jeduca .imgContent .contenText {
    z-index: 5;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15%;
}

.jeduca .imgContent .contenText p:nth-child(1) {
    font-size: 3em;
    color: var(--color2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
        0 3px 6px rgba(0, 0, 0, 0.5);
}

.jeduca .imgContent .contenText p:nth-child(2) {
    font-size: 1.2em;
    text-align: center;
    color: var(--color2);
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
        0 3px 6px rgba(0, 0, 0, 0.5);

}


/*=======================================================*/

/*====================== ABOUT ==========================*/
#about {
    margin: 250px 0;
}

#about .content {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    margin: 0 auto 200px auto;
}

#about .content .contenTitle {
    width: 40%;
    font-size: 2.75em;
}

#about .content .contenText {
    width: 60%;
    font-size: 1.2em;
    font-weight: 300;
    text-align: justify;
}

#about .valores {
    width: 100%;
    display: flex;
    padding: 2%;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

#about .valores .valoresBox {
    border-left: 4px solid var(--color1);
    padding-left: 10px;
    width: 33.3%;
    height: 27%;
}

#about .valores .valoresBox .icon {
    font-size: 2.5em;
    margin-bottom: 30px;
}

#about .valores .valoresBox .valoreSobre {
    margin-bottom: 25px;
    font-size: 1.3em;
    font-weight: 400;
}

#about .valores .valoresBox .valoresText {
    font-size: 1.1em;
    font-weight: 300;
    text-align: justify;
    line-height: 1.3em;
}

/*=======================================================*/

/*===================== PARCEIROS =======================*/
#parceiros {
    overflow-x: hidden;
}

#parceiros .content {
    display: flex;
    width: 100%;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

#parceiros .content .contenTitle {
    font-size: 2.75em;
    margin-bottom: 80px;
}

#parceiros .content .box {
    width: 100%;
    height: 150px;
    mask-image: linear-gradient(to right,
            transparent,
            #000 10% 90%,
            transparent);
}

#parceiros .box .carrossel {
    width: 100%;
    display: flex;
    position: relative;
}

#parceiros .box:hover .carrossel .item {
    animation-play-state: paused;
    filter: grayscale(1);
}

#parceiros .box .carrossel .item:hover {
    filter: grayscale(0);
}

#parceiros .box .carrossel .item {
    width: 100px;
    height: 50px;
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    animation-delay: var(--delay);
    cursor: pointer;
}

#parceiros .box .carrossel .item img {
    width: 100%;
}

@keyframes autoRun {
    from {
        left: 100%;
    }

    to {
        left: -50px;
    }
}


.contentForm {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contentForm .formAbout {
    width: 98%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.contentForm .formAbout h6 {
    width: 95%;
    font-size: 2.5em;
    text-align: center;
    font-weight: 600;
    line-height: 1.3em;
}

.contentForm .formAbout p {
    font-size: 1.5em;
    font-weight: 300;
    color: var(--color3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.formulario {
    width: 100%;
    padding: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formulario form {
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: var(--color1);
    padding: 2%;
    border-radius: 8px;
    margin-bottom: 50px;
}

.formulario form input,
textarea {
    width: 90%;
    padding: 2%;
    outline: none;
    border-radius: 6px;
    border: transparent;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5),
        0px 3px 6px rgba(0, 0, 0, 0.5);

}

.formulario form textarea {
    height: 150px;
    text-decoration: none;
    resize: none;
}

.formulario form h1 {
    color: var(--color2);
    font-size: 1.6em;
    font-weight: 400;
}

.formulario form button {
    padding: 5px;
    width: 50%;
    height: 50px;
    border-radius: 6px;
    outline: none;
    border: transparent;
    font-size: 1.2em;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5),
        0px 3px 6px rgba(0, 0, 0, 0.5);
}

.formulario form input:hover,
textarea:hover {
    border: 4px solid var(--color4);
    transition: border 0.2s ease;
}

.formulario form input:focus,
textarea:focus {
    border: 4px solid var(--color4);
    transition: border 0.2s ease;
    font-size: 1.2em;
    background-color: #f8f8f8
}

.formulario form button:hover {
    border: 4px solid var(--color4);
    transition: border 0.2s ease;
}

/*=======================================================*/

/*==================== FOOTER ===========================*/

footer {
    background-color: var(--color1);
}

footer p {
    color: #eee;
    text-align: center;
}

.footerBox {
    width: 100%;
    gap: 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2%;
}


.footerBox .citacao {
    width: 33.3%;
}

.footerBox .citacao p {
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.3em;
    text-align: center;
    color: var(--color2);
}

.footerBox .redeSociais {
    width: 33.3%;
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footerBox .redeSociais p {
    font-size: 2em;
    color: var(--color2);
}

.footerBox .redeSociais .rsBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10%;
}

.footerBox .redeSociais .rsBox .iconeSocial i {
    font-size: 2em;
    color: var(--color2);
}

.footerBox .contato {
    width: 33.3%;
}

.footerBox .contato p {
    color: var(--color2);
}

.footerBox .contato {
    width: 33.3%;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footerBox .contato a {
    color: var(--color2);
}

/*=======================================================*/






@media screen and (max-width:900px) {

    .center {
        flex-direction: column-reverse;
    }

    .content {
        width: 100%;
        height: 50%;
        margin-top: -80px;
        text-align: center;
        font-size: .75em;
    }

    #home .center .contentLogo {
        width: 100%;
        height: 50%;
    }

    #home .center .contentLogo .logoImg {
        max-width: 350px;
        padding-top: 350px;
    }

    #home .center .content .redeSociais {
        align-items: center;
        justify-content: center;
    }

    #home .center .content .redeSociais .rsContent {
        max-width: 50px;
        padding-top: 50px;
    }

    #myHeader .menuNavegacao .navegacao ul li,
    #myHeader .menuNavegacao .navegacao ul a {
        font-size: .85em;
        font-weight: 300;
    }

    #myHeader .menuNavegacao .navegacao ul:last-child {
        margin-top: 20px;
    }

    #atividades {
        padding-top: 50px;
    }

    #atividades .center {
        font-size: .75em;
    }


    .contentAtividades .boxAtividade:nth-child(1) {
        align-self: center;
    }

    .contentAtividades .boxAtividade:nth-child(2) {
        align-self: center;
        flex-direction: row-reverse;
    }

    .contentAtividades .boxAtividade:nth-child(3) {
        align-self: center;
    }

    .contentAtividades .boxAtividade .content .contenTitle {
        padding: 0;
        margin-top: 10%;
    }


    .contentAtividades .boxAtividade .content .contenText {
        text-align: justify;
        margin-bottom: 10px;

    }

    .contentAtividades .boxAtividade {
        max-width: 1000px;
        width: 100%;
        background-color: var(--color1);
        border-radius: 8px;
        padding: 2%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2%;
    }

    .contentAtividades .boxAtividade .content .modalidades .modalidadesList ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10%;
    }


    .jeduca {
        margin-top: 150px;
    }

    .jeduca h3 {
        font-size: 1.9em;
        text-align: center;
    }

    .jeduca .imgContent .contenText {
        width: 98%;
        gap: 5%;
    }


    #about .content {
        flex-direction: column;
        margin-bottom: 100px;
    }

    #about .content .contenTitle {
        width: 100%;
        font-size: 3.5em;
    }

    #about .content .contenText {
        width: 90%;
        font-size: 1.5em;
        font-weight: 300;
        text-align: center;
    }

    #parceiros .box .carrossel .item {
        width: 80px;
        height: 20px;
    }

    #parceiros .content .contenTitle {
        padding-top: 80px;
        margin-bottom: 20px;
    }



}

@media screen and (max-width:765px) {
    #about .valores {
        flex-direction: column;
        margin-bottom: 200px;
    }

    #about .valores .valoresBox {
        border: 4px solid var(--color1);
        width: 100%;
        height: auto;
        border-radius: 8px;
        padding: 2%;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

    }

    #parceiros .box .carrossel .item {
        width: 70px;
        height: 20px;
    }



    .footerBox .citacao {
        display: none ;
    }

    .footerBox .redeSociais{
        width: 30%;
    }

    .footerBox .contato{
        width: 70%;
    }

    .footerBox .redeSociais p {
        font-size: 1em;
    }

    .footerBox .redeSociais .rsBox .iconeSocial i {
        font-size: 1.5em;
    }

}

@media screen and (max-width:613px) {
    .contentAtividades .boxAtividade .content {
        align-self: flex-end;
    }

    .contentAtividades .boxAtividade:nth-child(2) .content .contenTitle {
        margin-bottom: 20%;
    }

    .jeduca .imgContent .contenText p:nth-child(2) {
        font-size: 1em;
    }

    #parceiros .box .carrossel .item {
        width: 50px;
        height: auto;
    }


}

@media screen and (max-width:550px) {


    .contentAtividades .boxAtividade {
        max-width: auto;
        width: 100%;
        height: auto;
        flex-direction: column !important;
        align-items: center;
        gap: 2%;
    }


    #atividades {
        width: 100%;
    }


    .contentAtividades {
        gap: 100px;
    }

    .contentAtividades .boxAtividade .imgContent {
        top: 0;
        left: 0px;
        position: relative;
        max-width: 250px;
        width: 100%;
        padding-top: 250px;
        margin-bottom: 50px;
    }



    .contentAtividades .boxAtividade .content {
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        width: 100%;
    }


    .contentAtividades .boxAtividade .content .contenTitle {
        padding: 10px;
    }

    .contentAtividades .boxAtividade .content .contenTitle p {
        font-size: 1.75em;
        color: var(--color2);
    }

    .contentAtividades .boxAtividade .content .contenText {
        text-align: justify;
        margin-bottom: 50px;

    }

    .contentAtividades .boxAtividade .content .contenText p {
        color: var(--color2);
        line-height: 1.5em;
        font-weight: 300;
    }

    .contentAtividades .boxAtividade .modalidades {
        margin-bottom: 50px;
    }


  


}

@media screen and (max-width:500px) {

    #atividades .conteudo .text {
        font-size: 2em;
    }

    #atividades .center .conteudo .text .subtitle p {
        font-size: .5em;
    }


    .jeduca .imgContent .contenText {
        width: 90%;
        flex-direction: column;
        gap: 50px;
    }

    .jeduca .imgContent .contenText p:nth-child(1) {
        font-size: 2em;
    }

    .jeduca .imgContent .contenText p:nth-child(2) {
        font-size: 1.1em;
    }

    .contentForm .formAbout {
        font-size: .80em;
    }

    .footerBox {
        width: 100%;
        display: flex;
        justify-items: center;
        align-items: center;
        background-color: var(--color1);
    }



    .footerBox .redeSociais {
        width: 30%;
        display: flex;
        gap: 35px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .footerBox .redeSociais p {
        font-size: 1em;
        color: var(--color2);
    }

    .footerBox .redeSociais .rsBox {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10%;
    }

    .footerBox .redeSociais .rsBox .iconeSocial i {
        font-size: 1.5em;
        color: var(--color2);
    }

    .footerBox .contato {
        width: 70%;
    }

    .footerBox .contato p:nth-child(2){
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width:415px) {

    #myHeader .menuNavegacao .toggle.ativo {
        margin-right: 80%;
    }

    #myHeader .menuNavegacao .navegacao {
        position: fixed;
        right: -47%;
        top: 0;
        width: 45%;
    }


    #myHeader .menuNavegacao .navegacao ul li {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100px;
    }


    #myHeader .menuNavegacao .navegacao ul li,
    #myHeader .menuNavegacao .navegacao ul a {

        font-size: .85em;
        font-weight: 300;
    }

    #myHeader .logo p {
        font-size: 1em;
        font-weight: 400;
        margin-left: -30px;
        padding-bottom: 10px;
    }


    .content {
        width: 100%;
        height: auto;
        margin-top: -50px;
        text-align: center;
        font-size: .55em;
    }



    #home .center .contentLogo .logoImg {
        max-width: 250px;
        padding-top: 250px;
    }


    #home .center .content .redeSociais .rsContent {
        max-width: 30px;
        padding-top: 30px;
    }

    #myHeader .menuNavegacao .navegacao ul li,
    #myHeader .menuNavegacao .navegacao ul a {
        font-size: .7em;
        font-weight: 400;
    }

    #atividades .center .conteudo .text {
        font-size: 1.7em;
        line-height: 1.8em;
    }

    #atividades .center .conteudo .text .subtitle p {
        font-weight: 600;
        line-height: 1.1em;
        margin: 20px 0;
    }

    .boxAtividade .content .contenText p {
        font-weight: 600;
        font-size: 1.3em;
    }

    .jeduca h3 {
        font-size: 1.3em;
    }

    .jeduca .contenText {
        font-size: .9em;
    }

    .jeduca .contenText p:nth-child(1) {
        text-align: center;
    }

    #about .content .contenText p {
        font-weight: 400;
        font-size: 1.3em;
        text-align: justify;
    }

    #parceiros .box .carrossel .item {
        width: 40px;
        height: auto;
    }



}

@media screen and (max-width:400px) {
    #myHeader .logo p {
        font-size: .85em;
    }


    #myHeader .menuNavegacao .toggle.ativo {
        margin-right: 85%;
    }

    #myHeader .logo.esconderMenu {
        opacity: 0;
        pointer-events: none;
    }


    .jeduca .contenText {
        font-size: .8em;
    }

    .footerBox {
        width: 100%;
        gap: 2%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2%;
        background-color: var(--color1);
    }



    .footerBox .redeSociais {
        width: 30%;
        display: flex;
        gap: 35px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .footerBox .redeSociais p {
        font-size: .8em;
        color: var(--color2);
    }



    .footerBox .redeSociais .rsBox .iconeSocial i {
        font-size: 1em;
    }

    .footerBox .contato{
        width: 70%;
        align-items: initial;
    }

    .footerBox .contato p {
        width:100%;
        text-align: left;
        font-size: .8em;
    }

    .footerBox .contato p:nth-child(2){
        display: flex;
        flex-direction: column;
    }

}


@media screen and (max-width:300px){

        #atividades .center .conteudo .text {
        font-size: 1.3em;
        line-height: 1.2em;
    }

     .contentAtividades .boxAtividade .imgContent {
        max-width: 200px;
        padding-top: 200px;
    }

    .contenTitle h4{
        font-size: .8em;
    }

    .contenText p{
        font-size: 1em !important;
        line-height: 1.5em;
    }

    .formAbout h6{
        font-size: 1.5em !important;
    }

}
