html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
}

.table-bordered tbody tr {
    vertical-align: middle !important;
}

/* Global Styles */

::-webkit-scrollbar {
    width: 5px; 
    height: 5px;
    background-color: #f5f5f5; 
}

::-webkit-scrollbar-thumb {
    background: transparent linear-gradient(180deg, #453FFF 0%, #0528A6 100%) 0% 0% no-repeat padding-box;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: none;
}

main {
    background-color: #fff; 
    padding-left: unset !important;
    padding-right: unset !important;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff; 
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Estilos para links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Estilos para cabeçalhos */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
}

/* Estilos para parágrafos */
p {
    margin-bottom: 20px;
    font-size: 16px;
}

h3 p {
    margin-bottom: 0;
}


/* Estilos para lista não ordenada e ordenada */
ul, ol {
    margin-bottom: 20px;
    list-style-type: none;
}

/* Estilos para elementos de formulário */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Estilos para botões */
button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

strong {
    font-weight: bold;
}

.page-header {
    margin-bottom: 60px;
}

.page-header h1 {
    display: none;
}

h2,
h3,
h5 {
    font-family: "Amatic SC", sans-serif;
    font-size: 38px;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 425px) {
    .container {
        width: 100%;
    }
}

/*  ------------------------------ VITRINE -------------------------- */

html,
body {
    position: relative;
    height: 100%;
}

body {
    background: #eee;
    font-family: 'Poppins', sans-serif;
    color: #000;
    margin: 0;
    padding: 0;
}

h5 p {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}

.btn {
    display: inline-block;
    padding: 15px 60px;
    background-color: #0539F0;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    transition: ease-in-out 0.3s;
    border-radius: 39px;
}

.btn:hover {
    background-color: #0056b3;
    transform: scale(1.02);
    text-decoration: none;
}

.main-vitrine {
    padding-top: 0;
    padding-bottom: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    background-color: #FFFF00 !important;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.swiper-slide-active {
    background-color: #FFFF00;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-wave {
    display: none;
    position: absolute;
    background-image: url(../img/bg-wave.png);
    height: 300px;
    width: 100%;
    top: -140px;
    z-index: 1;
}

@media (max-width: 1920px) {
    .bg-wave {
        display: inline-block;
    }

}

@media (max-width: 768px) {
    .bg-wave {
        height: 220px;
    }

}

/* <!-------------------------------------------------- BLOCOS --------------------------------------> */

.blocks {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 575px;
    padding-top: 0;
}

.block {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 15px;
    background-color: #0539F0;
    flex-grow: 1;
    flex-basis: 50%;
    padding: 30px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.block img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.block a {
    font-family: 'Poppins', sans-serif;
    color: #FFFF00;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.block a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 3px;
    background-color: #FFFF00;
    transition: width 0.3s ease;
}

.block a:hover::after,
.block a.active::after {
    width: 100%;
}

.bg-yellow {
    position: absolute;
    background-image: url(../img/bg-yellow.png);
    width: 200px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    bottom: -20%;
    left: 0;
    z-index: 1;
    filter: blur(20px);
}

@media (max-width: 425px) {

    .bg-yellow {
        display: none;
    }
    .blocks {
        flex-direction: column;
        height: 650px;
    }

    .block {
        border-radius: unset !important;
    }
}


/* <!------------------------------------------------- EQUIPE --------------------------------------------> */

.team {
    position: relative;
}

.team-section {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 10%;
}

.team-card {
    width: calc(23% - 20px);
    margin-bottom: 20px;
    padding: 60px 15px 0px 15px;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    z-index: 1;
}

.team-card:nth-child(1),
.team-card:nth-child(3) {
    height: auto;
}

.team-card:nth-child(2),
.team-card:nth-child(4) {
    height: auto;
}

.team-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.content-first p {
    font-size: 24px;
}

.content-last h2 {
    margin-bottom: 0;
}

.content-last {
    margin-bottom: 20px;
}

.content-last h2 p strong span {
    margin-bottom: 0;
    font-size: 36px;
}

.content-last h2 p span {
    margin-bottom: 0;
    font-size: 36px;
}

.content-last p {
    font-family: 'Amatic SC', sans-serif;
    margin-bottom: 0;
    text-align: center;
    font-size: 18px;
}

.team-content img {
    width: auto;
    height: 300px;
}

.team-content h2:nth-child(1),
.team-content h2:nth-child(2) {
    color: #FFFF00;
}

.team-content h2:nth-child(3),
.team-content h2:nth-child(4) {
    color: #0037FF;
}

.bg-blue {
    position: absolute;
    background-image: url(../img/bg-blue.png);
    width: 350px;
    height: 350px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    bottom: -10%;
    left: 30%;
    z-index: 0;
}

.bg-roxo {
    position: absolute;
    background-image: url(../img/bg-roxo.png);
    width: 200px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    bottom: 15%;
    right: 0;
    z-index: 1;
    filter: blur(20px);
}

@media screen and (max-width: 1024px) {
    .team-section {
        align-items: normal;
        justify-content: center;
        gap: 15px;
    }

    .team-card {
        width: calc(47% - 20px);
        margin-bottom: 0;
    }

    .bg-blue {
        bottom: 35%;
    }
}

@media screen and (max-width: 570px) {
    .team-section {
        justify-content: center;
    }

    .team-card {
        width: 100%;
        margin-bottom: 0;
    }

    .bg-blue {
        bottom: 68%;
        left: 0;
    }

}

@media screen and (max-width: 375px) {
   
    .bg-blue {
        left: -25%;
    }

}


/* <!------------------------------------------------- QUEM SOMOS -------------------------------> */

.quem {
    background-image: linear-gradient(to top, #e5e5e5 0%, #e5e5e5 85%, #ffffff 85%);
    position: relative;
}

.quem-somos-section {
    margin-top: 50px;
    text-align: center;
}

.quem-somos-section h2 {
    margin-bottom: 20px;
}

.quem-somos-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quem-somos-content img {
    width: 52%;
    max-width: 400px;
    height: auto;
    border-radius: 10px 10px 120px 10px;
    z-index: 1;
}

.quem-somos-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 100px 0px 30px;
}

.quem-somos-text h2 {
    font-family: "Amatic SC", sans-serif;
    font-size: 38px;
}

.quem-somos-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.bg-blue-quem {
    position: absolute;
    background-image: url(../img/bg-blue.png);
    width: 350px;
    height: 350px;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    top: 0;
    left: -10%;
    z-index: 0;
    transform: matrix(-0.67, -0.74, 0.74, -0.67, 0, 0);
    filter: blur(20px);
}

.bg-yellow-quem {
    position: absolute;
    background-image: url(../img/bg-yellow.png);
    width: 350px;
    height: 350px;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    top: -20%;
    right: 0;
    z-index: 1;
}

@media (max-width: 1024px) {

    .quem-somos-text {
        padding: 100px 30px 0 30px;
        align-items: center;
    }

    .bg-yellow-quem {
        width: 200px;
        height: 200px;
        z-index: 0;
    }
}

@media (max-width: 768px) {
    .quem-somos-content {
        display: flex;
        flex-direction: column;
    }

    .quem-somos-content img {
        width: 100%;
        max-width: -webkit-fill-available;
    }

    .quem-somos-text {
        padding: 30px 30px 0 30px;
        align-items: center;
    }
}

@media (max-width: 425px) {

    .quem-somos-text {
        max-height: 500px;
        overflow-y: auto;
        margin-bottom: 30px;
    }

    .quem-somos-text p {
        z-index: 1;
    }

    .bg-blue-quem {
        top: 50%;
        left: -45%;
        z-index: 0;
    }
}

/* <!----------------------------- DESTAQUES -------------------------> */

.swiper-mid {
    margin-top: 50px;
    position: relative;
}

.swiper-mid h2 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.swiper-2 {
    background: none !important;
}

.second-swiper {
    width: 100%;
    height: 550px;
}

.second-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: none;
}

.second-swiper .swiper-slide img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 0px 120px;
}

.bg-roxo-destaques {
    position: absolute;
    background-image: url(../img/bg-roxo-full.png);
    width: 200px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    top: -10%;
    left: 0;
    z-index: 2;
}

.bg-yellow-destaques {
    position: absolute;
    background-image: url(../img/bg-yellow.png);
    width: 200px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    bottom: -10%;
    right: 0;
    z-index: 2;
    filter: blur(20px);
}

@media (max-width: 768px) {

    .bg-roxo-destaques {
        width: 150px;
        height: 150px;
    }

    .bg-yellow-destaques {
        width: 100px;
        height: 100px;
    }

    .second-swiper {
        height: 200px;
    }

  
}
@media (max-width: 570px) {

    .bg-roxo-destaques {
        width: 100px;
        height: 100px;
        top: 0;
        z-index: 0;
    }

}

/* <!----------------------------------- GALERIA ----------------------------> */
.memorias {
    position: relative;
}

.galeria {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    z-index: 1;
}

.galeria h2 {
    text-align: center;
}

.galeria-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 2fr;
    grid-template-rows: repeat(2, auto);
    gap: 20px;
}

.galeria-content > a {
    display: block;
    width: 100%;
    height: 100%;
    transition: ease-in-out .3s;
}

.galeria-content .imagem {
    background-size: cover;
    background-position: center;
    height: inherit;
}

.galeria-content > a:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.galeria-content > a:nth-child(1) {
    grid-column: 1 / span 1;
    grid-row: 1;
}

.galeria-content > a:nth-child(2) {
    grid-column: 2 / span 2;
    grid-row: 1;
}

.galeria-content > a:nth-child(3) {
    grid-column: 1 / span 2;
    grid-row: 2;
}

.galeria-content > a:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
}

.galeria-content > a:nth-child(5) {
    grid-column: 4;
    grid-row: 1 / span 2;
}

.ver-todas {
    margin: 30px 0;
    align-self: center;
    text-align: center;
    width: auto;
}

.bg-blue-galeria {
    position: absolute;
    background-image: url(../img/bg-blue.png);
    width: 400px;
    height: 400px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    right: 0;
    bottom: 30%;
    z-index: 0;
}

.bg-yellow-galeria {
    position: absolute;
    background-image: url(../img/bg-yellow.png);
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    left: 0;
    bottom: 0;
    z-index: 0;
}

@media (max-width: 425px) {
    .bg-blue-galeria {
        width: 200px;
        height: 200px;
    }
}

/* <!------------------------------ DEPOIMENTOS ----------------------------> */

.depoimento-pais {
    background: linear-gradient(to bottom, #8405F0 75%, #fff 75%);
    text-align: center;
}

.depoimento-pais h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.video-container {
    position: relative;
    margin: 0 auto;
    border-radius: 120px 0px;
    
    max-height: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.video-container video {
    border-radius: 120px 0px;
    object-fit: cover; 
    max-height: 600px;
    width: auto;
    max-width: 100%;
}

.depoimentos .btn {
    margin-top: 30px;
}

.bg-star-dep1 {
    position: absolute;
    background-image: url(../img/estrelas.png);
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    left: -10%;
    top: -10%;
    z-index: 1;
}

.bg-star-dep2 {
    position: absolute;
    background-image: url(../img/estrelas.png);
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    right: -10%;
    bottom: 10%;
    z-index: 1;
}

@media (max-width: 1024px) {

    .bg-star-dep1 {
        width: 100px;
        height: 100px;
    }
    
    .bg-star-dep2 {
        width: 100px;
        height: 100px;
        right: -15%;
    }
}

@media (max-width: 425px) {

    .video-container {
        border-radius: 25px 0px;
    }

    .video-container video {
        border-radius: 25px 0px;
        height: 200px;
    }

    .depoimento-pais {
        background: linear-gradient(to bottom, #8405F0 65%, #fff 65%);
    }

    .bg-star-dep1 {
        width: 50px;
        height: 50px;
        left: 0;
    }
    
    .bg-star-dep2 {
        width: 50px;
        height: 50px;
        right: 0;
        bottom: -15%;
    }
}

/* <!--------------------------------- AQUARELA -----------------------------> */

.aquarela-section {
    position: relative;
}

.aquarela {
    margin-top: 50px;
}

.aquarela-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.linha {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 1;
}

.circulo {
    width: 76px;
    height: 76px;
    border-radius: 50%;
}

.campo {
    border-radius: 39px;
    padding: 15px 50px;
    margin: 0 10px;
    flex-grow: 1;
}

.campo p {
    margin: 0;
    font-size: 18px;
}

.azul {
    background-color: #0539F0;
    color: #fff;
}

.azul-claro {
    background-color: #00EAFF;
}

.rosa {
    background-color: #F005E2;
}

.vermelho {
    background-color: #F00505;
    color: #fff;
    flex-grow: 0;
}

.verde-escuro {
    background-color: #00DC39;
    color: #000;
}

.roxo {
    background-color: #8405F0;
    color: #fff;
    flex-grow: 0;
}

.amarelo {
    background-color: #F9D72F;
    color: #000;
}

.laranja {
    background-color: #FF8400;
    color: #fff;
}

.bg-blue-aquarela {
    position: absolute;
    background-image: url(../img/bg-blue.png);
    width: 250px;
    height: 250px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    left: 0;
    z-index: 0;
    filter: blur(20px);
}

.bg-roxo-aquarela {
    position: absolute;
    background-image: url(../img/bg-roxo.png);
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    bottom: 15%;
    right: 0;
    z-index: 1;
}

@media (max-width: 768px) {
    .campo {
        padding: 10px 30px;
    }
}

@media (max-width: 425px) {

    .campo {
        width: 100%;
        text-align: center;
    }

    .circulo {
        display: none;
    }

    .bg-roxo-aquarela {
        width: 150px;
        height: 150px;
    }
}

/* <!----------------------------- DIFERENCIAIS -------------------------------------> */

.diferenciais {
    background: transparent linear-gradient(180deg, #453FFF 0%, #0528A6 100%) 0% 0% no-repeat padding-box;
    border-radius: 120px 120px 0px 0px;
}

.diferenciais-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    padding-bottom: 100px;
}

.diferenciais h2 {
    color: #fff;
    text-align: center;
}

.words-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.word {
    font-weight: bold;
    margin: 10px 0;
}

.yellow-32 {
    color: #FFFF00;
    font-size: 32px;
}

.cyan-32 {
    color: #00EAFF;
    font-size: 32px;
}

.white-26 {
    color: #FFFFFF;
    font-size: 26px;
}

@media (max-width: 768px) {
    .word {
        text-align: center;
        font-size: 24px;
    }
}



/* -------------------------------------  PÁGINA QUEM SOMOS -----------------------------------------*/

p strong {
    font-weight: bold;
}

.page-quem {
    position: relative;
}

.page-quem-section {
    margin-top: 50px;
    text-align: center;
}

.page-quem-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.page-quem-content img {
    max-width: 650px;
    height: auto;
    border-radius: 10px 10px 120px 10px;
}

.page-quem-text {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1;

}

.page-quem-section h2 {
    font-family: "Amatic SC", sans-serif;
    font-size: 38px;
    margin-bottom: 20px;
}

.page-quem-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.boxes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 60px;
}

.box {
    background-color: #8405F0;
    padding: 30px 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    flex-basis: 33%;
    height: auto;
    box-shadow: 0px 3px 6px #00000029;
    transition: ease-in-out .3s;
    z-index: 1;
}

.box:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.box h3 {
    font-family: "Amatic SC", sans-serif;
}

.end-banner {
    background: transparent linear-gradient(180deg, #453FFF 0%, #0528A6 100%) 0% 0% no-repeat padding-box;
    height: 200px;
    border-radius: 120px 120px 0px 0px;
}

.bg-yellow-page-quem {
    position: absolute;
    background-image: url(../img/bg-yellow.png);
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    left: 0;
    top: 0;
    z-index: 0;
    filter: blur(20px);
}

.bg-blue-page-quem {
    position: absolute;
    background-image: url(../img/bg-blue.png);
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    right: 0;
    bottom: -20%;
    z-index: 0;
    filter: blur(20px);
}

.bg-roxo-page-quem {
    position: absolute;
    background-image: url(../img/matematica-image.png);
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    left: 0;
    bottom: -20%;
    z-index: 0;
}


@media (max-width: 1024px) {
    .page-quem-content {
        display: flex;
        flex-direction: column;
    }

    .page-quem-content img {
        width: 100%;
        max-width: -webkit-fill-available;
    }

    .page-quem-text {
        align-items: center;
        flex: 1;
    }

    .page-quem-text a {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .boxes {
        flex-direction: column;
    }

    .bg-blue-page-quem {
        bottom: -40%;
    }
}

@media (max-width: 425px) {
    .bg-yellow-page-quem {
        left: -20%;
    }
}




/* -------------------------------------  PÁGINA PORTUGUÊS -----------------------------------------*/

.pt-txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.anim:hover {
    animation: bouncing 3s infinite;
}

@keyframes bouncing {

    0%,
    50% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-35px);
    }

    60% {
        transform: translateY(0px);
    }

}

.pt-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pt-title h2 strong p {
    font-size: 38px;
}

.pt-txt h2 {
    font-size: 38px !important;
    z-index: 1;
}

.pt-txt h2 strong p span {
    font-size: 38px !important;
}

.pt-boxes {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.box-page-pt {
    padding: 60px 60px;
    text-align: center;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 8px;
    color: #fff;
    width: 70%;
    z-index: 1;
    transition: ease-in-out .3s;
}

.box-page-pt h3 p {
    font-size: 32px;
}

.box-page-pt:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.orange {
    position: relative;
}

.mid-title {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    font-size: 36px !important;
}

.mid-title h3 strong p {
    font-size: 36px !important;
} 

.como {
    background-color: #EBEBEB;
    padding: 60px 0;
}

.como-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.como-boxes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
}

.como-box {
    display: flex;
    flex-basis: 33.33%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 15px;
    text-align: center;
    color: #fff;
    border-radius: 6px;
    transition: ease-in-out .3s;
}

.como-box h3 strong p span {
    font-size: 32px;
}

.como-box h3 strong p {
    font-size: 18px;
}

.como-box:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.texto-fim {
    margin-top: 20px;
}

.educadores {
    position: relative;
}

.educadores-bg1 {
    position: absolute;
    left: 0;
    width: 100px;
    top: 20%;
    height: 250px;
    filter: blur(10px);
}

.educadores-bg2 {
    position: absolute;
    right: 0;
    width: 130px;
    height: 350px;
    filter: blur(10px);
}

.educadores-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.educadores-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
    margin-top: 60px;
}

.educadores-text {
    width: 50%;
    z-index: 1;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: none;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 9px 9px 41px 9px;
    color: #fff;
    padding: 30px 15px 0px 15px;
    min-width: 250px;
    font-family: 'Amatic SC', sans-serif;
}

.card span h5, .card span h5 p {
    font-family: 'Amatic SC', sans-serif;
    font-size: 38px;
    margin-bottom: 0;
}

.card span p {
    font-size: 18px;
}

.card-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    margin: 60px 0;
    width: 100%;
    max-height: 800px;
    overflow: auto;
    padding-bottom: 15px;
}

.card-list img {
    height: 250px;
}

.avaliacao {
    background-color: #EBEBEB;
    padding: 60px 0;
}

.material {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.material-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #0037FF;
    padding: 60px 60px;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 9px 9px 111px 6px;
    width: 60%;
}

.material-content .star1 {
    position: absolute;
    right: 0;
    top: -60px;
    width: 100px;
    height: 110px;
}

.material-content .star2 {
    position: absolute;
    left: 0;
    bottom: -60px;
    width: 100px;
    height: 110px;
}

.material-bg1 {
    position: absolute;
    left: -120px;
    width: 230px;
    height: 230px;
    z-index: 1;
}

.material-bg2 {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 230px;
    height: 230px;
    filter: blur(10px);
}

.end-banner {
    background: transparent linear-gradient(180deg, #453FFF 0%, #0528A6 100%) 0% 0% no-repeat padding-box;
    height: 200px;
    border-radius: 120px 120px 0px 0px;
}

.bg-roxo-page-pt {
    position: absolute;
    background-image: url(../img/bg-roxo-full.png);
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    top: -15%;
    left: -10%;
    z-index: 1;
}

.bg-star-page-pt {
    position: absolute;
    background-image: url(../img/star2.png);
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    bottom: -10%;
    right: -10%;
    z-index: 0;
}

.bg-yellow-page-pt {
    position: absolute;
    background-image: url(../img/bg-yellow.png);
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    bottom: -50%;
    left: -5%;
    z-index: 0;
    filter: blur(20px);
}

.bg-blue-page-pt {
    position: absolute;
    background-image: url(../img/bg-blue.png);
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    bottom: 15%;
    right: 0;
    z-index: 0;
    filter: blur(20px);
}

@media (max-width: 1024px) {
    .bg-roxo-page-pt {
        top: -10%;
    }

    .bg-star-page-pt {
        bottom: -5%;
    }
}

@media (max-width: 768px) {

    .mid-title {
        flex-direction: column;
    }

    .box-page-pt {
        width: 100%;
        max-height: 700px;
        overflow-y: scroll;
        overflow-x: hidden;
        padding: 30px 15px;
    }

    .como-boxes {
        flex-direction: column;
    }

    .como-box {
        width: 100%;
    }

    .educadores-text {
        text-align: center;
    }

    .educadores-content {
        flex-direction: column;
    }

    .educadores-text {
        width: 100%;
    }

    .destaque-educ {
        width: 100%;
    }

    .destaque-educ img {
        height: 250px;
    }

    .card-list {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding-right: 15px;
    }

    .card {
        width: 100%;
        border-radius: 9px;
    }

    .bg-roxo-page-pt {
        top: -6%;
    }

    .avaliacao-txt {
        text-align: center;
    }
}

@media (max-width: 425px) {

    .bg-roxo-page-pt {
       display: none;
    }

    .box-page-pt {
        padding: 60px 5px;
    }

    .pt-txt {
        text-align: center;
    }

    .bg-star-page-pt {
        display: none;
    }

    .material-bg1 {
        display: none;
    }

    .material-bg2 {
        display: none;
    }

    .material-content {
        width: 100%;
        max-height: 700px;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .educadores-bg2 {
        width: 60px;
    }

}


/* -------------------------------------  PÁGINA MATEMÁTICA -----------------------------------------*/

.mt-txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.mt-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mt-txt h2 {
    font-size: 38px !important;
}

.mt-txt p {
    margin-bottom: 0;
}

.mt-title h2 strong p {
    font-size: 38px;
}

.mt-boxes {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 100px;
}

.box-page-mt {
    padding: 60px 60px;
    text-align: center;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 8px;
    color: #fff;
    width: 70%;
    z-index: 1;
    transition: ease-in-out .3s;
}

.box-page-mt h3 p {
    font-size: 32px;
}

.box-page-mt:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.blue {
    position: relative;
}

.green {
    position: relative;
}

.destaque-educ img {
    max-width: 305px;
    max-height: 425px;
}

.educadores-mt-bg1 {
    position: absolute;
    left: 0;
    width: auto;
    top: 20%;
    height: 300px;
    filter: blur(20px);
}

.educadores-mt-bg2 {
    position: absolute;
    right: 0;
    top: 15%;
    width: 100px;
    height: 250px;
}

.bg-roxo-page-mt {
    position: absolute;
    background-image: url(../img/bg-roxo-full.png);
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    top: 0;
    left: -10%;
    z-index: 1;
}

.bg-star-page-mt {
    position: absolute;
    background-image: url(../img/star2.png);
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    bottom: -10%;
    right: -10%;
    z-index: 0;
}

.bg-yellow-page-mt {
    position: absolute;
    background-image: url(../img/bg-yellow.png);
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    bottom: -50%;
    left: -5%;
    z-index: 0;
}

.bg-blue-page-mt {
    position: absolute;
    background-image: url(../img/bg-blue.png);
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    bottom: 15%;
    right: 0;
    z-index: 0;
    filter: blur(20px);
}

.bg-flor-page-mt {
    position: absolute;
    background-image: url(../img/flor.png);
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    bottom: -10%;
    right: 0;
    z-index: 0;
}

@media (max-width: 1440px) {
    .bg-roxo-page-mt {
        left: -13%;
    }
}
@media (max-width: 1024px) {
    .bg-roxo-page-mt {
        left: -20%;
        z-index: 1;
    }

    .educadores-mt-bg1 {
        position: absolute;
        left: 0;
        width: auto;
        top: 20%;
        height: 300px;
        filter: blur(20px);
        z-index: 0;
    }
}

@media (max-width: 768px) {

    .mid-title {
        flex-direction: column;
    }

    .como-boxes {
        flex-direction: column;
    }

    .como-box {
        width: 100%;
    }

    .educadores-text {
        text-align: center;
    }

    .educadores-content {
        flex-direction: column;
    }

    .educadores-text {
        width: 100%;
    }

    .destaque-educ {
        width: 100%;
    }

    .destaque-educ img {
        height: 250px;
    }

    .card-list {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .card {
        width: 100%;
    }

    .box-page-mt {
        width: 100%;
        max-height: 700px;
        overflow-y: scroll;
        overflow-x: hidden;
        padding: 30px 15px;
    }

    .bg-roxo-page-mt {
        width: 90px;
    }
}

@media (max-width: 425px) {

    .mt-txt {
        text-align: center;
    }

    .material-bg1 {
        display: none;
    }

    .material-bg2 {
        display: none;
    }

    .material-content {
        width: 100%;
    }

    .material-content .star1 {
        top: 0;
        width: 75px;
        height: 75px;

    }

    .material-content .star2 {
        bottom: 0;
        left: -15px;
        width: 75px;
        height: 75px;
    }

    .bg-star-page-mt {
        display: none;
    }
}


/* ---------------------------------------- PÁGINA MATRÍCULAS ----------------------------------------------*/

.bg-yellow-page-matriculas {
    position: absolute;
    background-image: url(../img/bg-yellow.png);
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    top: -12%;
    left: 10%;
    z-index: 0;
    filter: blur(20px);
}

.bg-roxo-page-matriculas {
    position: absolute;
    background-image: url(../img/bg-roxo-full.png);
    width: 400px;
    height: 400px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    top: 40%;
    left: -10%;
    z-index: 1;
}


.bg-blue-page-matriculas {
    position: absolute;
    background-image: url(../img/bg-blue.png);
    width: 500px;
    height: 500px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    bottom: 15%;
    right: 0;
    z-index: 0;
    filter: blur(20px);
}

.bg-yellow-page-matriculas-2 {
    position: absolute;
    background-image: url(../img/bg-yellow.png);
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    bottom: 0;
    left: 10%;
    z-index: 0;
    filter: blur(20px);
}

.bg-star-page-matriculas {
    position: absolute;
    background-image: url(../img/star2.png);
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.bg-flower-page-matriculas {
    position: absolute;
    background-image: url(../img/flor.png);
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    bottom: -50%;
    left: 10%;
    z-index: 0;
}
