#hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
#hero .swiperHero {
    width: 100%;
    height: 100%;
}
#hero .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#hero .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}
#hero .swiper-slide picture,
#hero .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}
#hero .hero-btn-prev,
#hero .hero-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .35);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}
#hero .hero-btn-prev {
    left: 20px;
}
#hero .hero-btn-next {
    right: 20px;
}
#hero .hero-btn-prev:hover,
#hero .hero-btn-next:hover {
    background: rgba(0, 0, 0, .6);
}
#hero .hero-btn-prev::after,
#hero .hero-btn-next::after {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}
#hero .hero-pagination {
    bottom: 16px;
}
#hero .hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, .6);
    opacity: 1;
    transition: background .2s ease, transform .2s ease;
}
#hero .hero-pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.3);
}
#hero .hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}
#hero .hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100%;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity .6s ease-in-out;
}
#hero .vimeo-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 1;
    transition: opacity .6s ease-in-out;
}
#hero .hero-video-mute-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .6);
    border: 2.5px solid rgba(255, 255, 255, .45);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
    pointer-events: auto;
    z-index: 20 !important;
}
#hero .hero-video-mute-btn:hover {
    background: rgba(0, 0, 0, .85);
    transform: translate(-50%, -50%) scale(1.08);
}
#hero .hero-video-mute-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
    display: block;
}
#hero .arrow {
    opacity: 0;
    position: absolute;
    left: 50%;
    bottom: 5%;
    width: 29px;
    height: 20px;
    transform: translate3d(-50%, 0, 0);
    z-index: 25;
}
#hero .arrow-first {
    -webkit-animation: arrow-movement 2s ease-in-out infinite;
            animation: arrow-movement 2s ease-in-out infinite;
}
#hero .arrow-second {
    -webkit-animation: arrow-movement 2s 0.66s ease-in-out infinite;
            animation: arrow-movement 2s 0.66s ease-in-out infinite;
}
#hero .arrow-third {
    -webkit-animation: arrow-movement 2s 1.33s ease-in-out infinite;
            animation: arrow-movement 2s 1.33s ease-in-out infinite;
}
#hero .arrow:before,
#hero .arrow:after {
    background: #fff;
    content: "";
    display: block;
    height: 5px;
    position: absolute;
    top: 0;
    width: 25px;
    border-radius: 10px;
}
#hero .arrow:before {
    left: 0;
    transform: rotate(45deg);
    transform-origin: top left;
}
#hero .arrow:after {
    right: 0;
    transform: rotate(-45deg);
    transform-origin: top right;
}
@media (max-width: 992px) {
    #hero .arrow {
        bottom: 10%;
    }
    #hero .hero-video-mute-btn {
        top: 50%;
        left: 50%;
        bottom: auto;
        right: auto;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
    }
    #hero .hero-video-mute-btn:hover {
        transform: translate(-50%, -50%) scale(1.05);
    }
    #hero .hero-video-mute-btn svg {
        width: 22px;
        height: 22px;
    }
}

@-webkit-keyframes arrow-movement {
    0% {
        opacity: 0;
        transform: translate3d(-50%, -22px, 0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate3d(-50%, 22px, 0);
    }
}
@keyframes arrow-movement {
    0% {
        opacity: 0;
        transform: translate3d(-50%, -22px, 0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate3d(-50%, 22px, 0);
    }
}




/* Vídeo Sobre */
#video-sobre {
    position: relative;
    padding: 100px;
    background: linear-gradient(0deg, transparent 0%, #E8E6F4 75%);
    z-index: 1;
}
#video-sobre .section-titulo {
    color: #0058A5;
    font-family: var(--font-Museo);
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 50px 0;
}
#video-sobre .video {
    position: relative;
    display: block;
    width: 100%;
    /* aspect-ratio: 16 / 9; */
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, .25) 0 5px 20px;
    overflow: hidden;
    cursor: pointer;
}

#video-sobre .video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#video-sobre .video .player {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;

    margin: auto;
}
#video-sobre .video .player svg {
    display: block;
    fill: #fff;
    width: 100%;
    height: 100%;
}
#video-sobre .content {
    margin-top: 30px;
}
#video-sobre .content .descricao {
    color: #00376A;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 15px 0;
}
#video-sobre .content .botao {
    display: block;
    width: fit-content;
    
    padding: 10px 50px;
    background-color: #E63331;
    border-radius: 50px;
    
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, .2) 0 5px 10px;
    line-height: normal;
    margin: 0 auto;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
#video-sobre .content .botao:hover {
    background-color: #E63331;
    text-shadow: none;
    transform: scale(1.05);
}




/* Solucoes */
#solucoes {
    position: relative;
    padding: 100px 0;
    min-height: 100dvh;
}
#solucoes .anim-container {
    position: relative;
    width: 80%;
    margin: 0 auto;
}
#solucoes .anim-container::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}
#solucoes .anim-container::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #fff 100%);
}

#solucoes .anim-container svg.bg {
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: auto;
}
#solucoes .anim-container .cls-6,
#solucoes .anim-container .cls-7 {
    fill: none;
    stroke: #e63331;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    stroke-width: 10px;
}
#solucoes .anim-container .cls-8 { opacity: .15; }
#solucoes .anim-container .cls-7 { stroke-dasharray: .1 29.89; }
#solucoes .anim-container .bolinha-onda {
    fill: #e4202d;
    transform-box: fill-box;
    transform-origin: center;
    animation: ondaAnim 2.5s infinite linear;
}
@keyframes ondaAnim {
    0% { transform: scale(1.8); opacity: 1; }
    30% { transform: scale(0.2); opacity: 0 }
    100% { transform: scale(0.2); opacity: 0 }
}
#solucoes .anim-container .card {
    position: absolute;
    width: 28%;
    height: 85%;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
}
#solucoes .anim-container .card-left {
    background-color: #E8E6F4;
    border: none;
    left: 19.4%;
    top: 4%;
    padding: 4% 2% 2% 2%;
    justify-content: flex-start;
}
#solucoes .anim-container .card-left h2 {
    color: #0058A5;
    font-family: var(--font-Museo);
    font-size: clamp(14px, 1.5vw, 32px);
    font-weight: 900;
    margin: 0 0 20px 0;
}
#solucoes .anim-container .card-left p {
    color: #00376A;
    font-size: clamp(12px, 1vw, 20px);
    line-height: normal;
    margin: 0;
}
#solucoes .anim-container .card-left .card-img-container {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    
    width: calc(100% - 30px);
    aspect-ratio: 1;
    border-radius: 50%;
    margin: auto;
    /* border: clamp(5px, 1vw, 15px) solid #004b93; */

    z-index: 0;
}
#solucoes .anim-container .card-left .card-img-container::before {
    content: '';
    display: block;
    position: absolute;
    top: -40px;
    left: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);

    background-color: rgba(0, 88, 165, .45);
    border: 10px solid #0058A5;
    border-radius: 50%;

    z-index: -1;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
#solucoes .anim-container .card-left:hover .card-img-container::before {
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: #0058A5;
}




#solucoes .anim-container .card-right .card-img-container {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    
    width: calc(100% - 30px);
    aspect-ratio: 1;
    border-radius: 50%;
    margin: auto;
    /* border: clamp(5px, 1vw, 15px) solid #004b93; */

    z-index: 0;
}
#solucoes .anim-container .card-right .card-img-container::before {
    content: '';
    display: block;
    position: absolute;
    top: -40px;
    left: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    
    background-color: rgba(148, 75, 150, .45);
    border: 10px solid #944B96;
    border-radius: 50%;
    
    z-index: -1;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
#solucoes .anim-container .card-right:hover .card-img-container::before {
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: #944B96;
}

#solucoes .anim-container .card-right {
    background-color: #E8E6F4;
    border: none;
    left: 52.6%;
    bottom: 4%;
    padding: 2% 2% 4% 2%;
    flex-direction: column;
    justify-content: flex-end;
}
#solucoes .anim-container .card-right h2 {
    color: #944B96;
    font-family: var(--font-Museo);
    font-size: clamp(14px, 1.5vw, 32px);
    font-weight: 900;
    margin: 0 0 20px 0;
}
#solucoes .anim-container .card-right p {
    color: #00376A;
    font-size: clamp(12px, 1vw, 20px);
    line-height: normal;
    margin: 0;
}

#solucoes .anim-container .card-img-container img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
}




/* Tecnologias Educacionais */
#tecnologias-educacionais {
    position: relative;
    padding: 100px 0;
    z-index: 0;
}
#tecnologias-educacionais::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bg_tecnologias-educacionais.webp');
    background-attachment: fixed;
    z-index: -1;
}
#tecnologias-educacionais .section-titulo {
    color: #fff;
    font-family: var(--font-BaksoSapi);
    font-size: 54px;
    font-weight: 500;
    text-shadow: rgba(0, 0, 0, .5) 5px 0 10px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 100px 0;
}
#tecnologias-educacionais .card-descricao {
    padding: 25px;
    background-color: rgba(148, 75, 150, .8);
    border-radius: 25px;
}
#tecnologias-educacionais .card-descricao p {
    color: #fff;
    font-size: 20px;
    text-align: center;
    margin: 0 0 20px 0;
}
#tecnologias-educacionais .card-descricao p:last-child {
    padding: 0 5%;
    margin: 0;
}




#nossos-numeros {
    position: relative;
    padding: 100px 0 150px 0;
    overflow: hidden;
}
#nossos-numeros .section-titulo {
    color: #944B96;
    font-family: var(--font-Museo);
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 50px 0;
}
#nossos-numeros .engrenagem-esquerda {
    position: absolute;
    top: 100px;
    bottom: 0;
    left: min(-70px, calc(50vw - 885px));

    width: 390px;
    height: 390px;

    margin: auto;
}
#nossos-numeros .engrenagem-direita {
    position: absolute;
    top: 100px;
    bottom: 0;
    right: min(-170px, calc(50vw - 1050px));

    width: 580px;
    height: 580px;

    margin: auto;
}
#nossos-numeros .engrenagens {
    position: relative;
    width: fit-content;
    margin: auto;
}
#nossos-numeros .engrenagens .engrenagem {
    position: relative;
}
#nossos-numeros .engrenagens .engrenagem .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#nossos-numeros .engrenagens .engrenagem .content h3 {
    color: #fff;
    font-size: 40px;
    text-align: center;
    line-height: normal;
    font-weight: 700;
    margin: 0;
}
#nossos-numeros .engrenagens .engrenagem .content span {
    display: block;
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: normal;
    margin: 0;
}
#nossos-numeros .engrenagens .engrenagem.--left {
    position: absolute;
    top: -110px;
    left: -260px;
    width: 330px;
    height: 330px;
}
#nossos-numeros .engrenagens .engrenagem.--left svg {
    animation: girar 6s linear infinite;
    animation-direction: reverse;
    transform-origin: center;
}
#nossos-numeros .engrenagens .engrenagem.--center {
    width: 430px;
    height: 430px;
    margin-top: 200px;
}
#nossos-numeros .engrenagens .engrenagem.--center svg {
    animation: girar 6s linear infinite;
    transform-origin: center;
}
#nossos-numeros .engrenagens .engrenagem.--right {
    position: absolute;
    top: -155px;
    right: -235px;
    width: 330px;
    height: 330px;
}
#nossos-numeros .engrenagens .engrenagem.--right svg {
    animation: girar 6s linear infinite;
    animation-direction: reverse;
    transform-origin: center;
}
@keyframes girar {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
#nossos-numeros .engrenagens .descricao {
    position: absolute;
    /* 15px de top garante que o centro do SVG(800x800) se alinhe perfeitamente ao centro da engrenagem roxa(430x430 + 200px margin) */
    top: -150px; 
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    pointer-events: none; /* Para não bloquear o clique/hover nas engrenagens */
}
#nossos-numeros .engrenagens .descricao text {
    fill: #00376A;
    font-size: 28px;
    letter-spacing: 0.5px;
}




/* Aprender */
.aprender-divisor-top {
    display: block;
    width: 100%;
    height: auto;
    background-color: #eeedf9;
}
#aprender {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background-color: #eeedf9;

    display: flex;
}
#aprender .render {
    width: 40%;
    margin-left: -5%;

    pointer-events: none;
    user-select: none;
}
#aprender .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#aprender .content .section-titulo {
    color: #944B96;
    font-family: var(--font-Museo);
    font-size: 42px;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 30px 0;
}
#aprender .content .section-titulo strong {
    font-size: 62px;
}
#aprender .content .section-titulo b {
    font-size: 54px;
}
#aprender .content .descricao {
    max-width: 550px;
    color: #00376A;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 50px 0;
}
#aprender .content .cards {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    height: auto;
}
#aprender .content .cards .card-aprender {
    padding: 40px 80px;
    background-color: #fff;
    border-radius: 27.5px;
    text-decoration: none;

    -webkit-transition: box-shadow .25s ease-in-out;
    -moz-transition: box-shadow .25s ease-in-out;
    -ms-transition: box-shadow .25s ease-in-out;
    -o-transition: box-shadow .25s ease-in-out;
    transition: box-shadow .25s ease-in-out;
}
#aprender .content .cards .card-aprender:hover {
    box-shadow: 0 0 0 3px #944B96;
}
#aprender .content .cards .card-aprender .icon {
    display: block;
    width: fit-content;
    margin: 0 auto 30px auto;
}
#aprender .content .cards .card-aprender .icon img {
    display: block;
    width: 125px;
    height: 125px;
    object-fit: contain;
}
#aprender .content .cards .card-aprender h3 {
    color: #00376A;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    margin: 0;
}




/* Beneficios */
#beneficios {
    position: relative;
    padding: 150px 0 0 0;
    background-color: #fff;

    z-index: 0;
    overflow: hidden;
}
#beneficios .bg {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;

    pointer-events: none;
    user-select: none;
}
#beneficios .beneficios-divisor-bottom {
    /* position: absolute;
    left: 0;
    bottom: 0; */
    display: block;
    width: 100%;
    height: auto;
    margin: 150px 0 -2px 0;
}
#beneficios .section-titulo {
    color: #fff;
    font-family: var(--font-Museo);
    font-size: 42px;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 100px 0;
}
#beneficios .swiperBeneficios {
    padding: 30px 0;
}
#beneficios .swiperBeneficios .swiper-slide {
    height: auto;
}
#beneficios .swiperBeneficios .card-beneficio {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}
#beneficios .swiperBeneficios .card-beneficio .front {
    width: 100%;
    height: 100%;
    padding: 120px 30px;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    transform: rotateY(0deg);
}
#beneficios .swiperBeneficios .card-beneficio .front .icon svg {
    display: block;
    width: 130px;
    height: 130px;
}
#beneficios .swiperBeneficios .card-beneficio .front .icon.--rosa svg {
    fill: #DA7DB5;
}
#beneficios .swiperBeneficios .card-beneficio .front .icon.--amarelo svg {
    fill: #EFC465;
}
#beneficios .swiperBeneficios .card-beneficio .front .icon.--verde svg {
    fill: #66BC93;
}
#beneficios .swiperBeneficios .card-beneficio .front .icon.--azul svg {
    fill: #99CADD;
}
#beneficios .swiperBeneficios .card-beneficio .front h3 {
    color: #00376A;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    font-weight: 700;
    margin: 0;
}

#beneficios .swiperBeneficios .card-beneficio .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    padding: 30px;
    background: linear-gradient(0deg, #944B96 7.6%, #944B96 35%, #7F4081 100%);
    border-radius: 15px;
    
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    transform: rotateY(180deg);
    
    display: flex;
    flex-direction: column;
}
#beneficios .swiperBeneficios .card-beneficio:hover .front {
    transform: rotateY(-180deg);
}
#beneficios .swiperBeneficios .card-beneficio:hover .back {
    transform: rotateY(0deg);
}
#beneficios .swiperBeneficios .card-beneficio .back ul {
    padding-left: 10px;
}
#beneficios .swiperBeneficios .card-beneficio .back ul li {
    color: #fff;
    font-size: 18px;
}

#beneficios .swiperBeneficios .card-beneficio .front .btn-ver-mais {
    display: none;
}

.beneficios-nav-mobile {
    display: none;
}

.beneficio-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.beneficio-modal.is-open {
    display: flex;
}
.beneficio-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.beneficio-modal-content {
    position: relative;
    z-index: 1;
    width: calc(100% - 40px);
    max-width: 420px;
    background: linear-gradient(145deg, #7F4081 0%, #944B96 60%, #a855a8 100%);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.85) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.beneficio-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
    backdrop-filter: blur(5px);
}
.beneficio-modal-close:hover {
    background: rgba(255,255,255,0.5);
}
.beneficio-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}
.beneficio-modal-titulo {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 20px 0;
    padding-right: 10px;
    line-height: 1.3;
}
.beneficio-modal-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.beneficio-modal-lista li {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 14px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
}


/* Depoimentos */
#depoimentos {
    position: relative;
    padding: 100px 0;
    background-color: #eeedf9;
}
#depoimentos .section-titulo {
    color: #944B96;
    font-family: var(--font-Museo);
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 50px 0;
}
#depoimentos .video {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, .25) 0 5px 20px;
    overflow: hidden;
}
#depoimentos .video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#depoimentos .video .player {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;

    margin: auto;
}
#depoimentos .video .player svg {
    display: block;
    fill: #fff;
    width: 100%;
    height: 100%;
}
#depoimentos .video-content {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #fff;
}
#depoimentos .video-content strong {
    display: block;
    color: #00376A;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 5px 0;
}
#depoimentos .video-content p {
    color: #00376A;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin: 0;
}

#depoimentos .depoimentos-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
#depoimentos .depoimentos-content .navDepoimentos-prev svg,
#depoimentos .depoimentos-content .navDepoimentos-next svg {
    display: block;
    fill: #944B96;
    width: 90px;
    height: 90px;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
#depoimentos .depoimentos-content .navDepoimentos-prev svg path,
#depoimentos .depoimentos-content .navDepoimentos-next svg path {
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
#depoimentos .depoimentos-content .navDepoimentos-prev svg path:nth-child(2),
#depoimentos .depoimentos-content .navDepoimentos-next svg path:nth-child(2) {
    opacity: .5;
}
#depoimentos .depoimentos-content .navDepoimentos-prev svg path:nth-child(1),
#depoimentos .depoimentos-content .navDepoimentos-next svg path:nth-child(1) {
    opacity: .3;
}

#depoimentos .depoimentos-content .swiper-button-disabled svg path {
    opacity: .1!important;
}
#depoimentos .depoimentos-content .navDepoimentos-prev:not(.swiper-button-disabled):hover svg path,
#depoimentos .depoimentos-content .navDepoimentos-next:not(.swiper-button-disabled):hover svg path {
    opacity: 1!important;
}



#depoimentos .depoimentos-content .swiperDepoimentos {
    border-radius: 30px;
}
#depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento {
    display: flex;
    gap: 30px;
    background-color: #eeedf9;
}
#depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento .image {
    position: relative;
    display: block;
    width: 375px;
    min-width: 375px;
    aspect-ratio: 3 / 4;
    border-radius: 30px 100px 30px 30px;
    overflow: hidden;
}
#depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento .image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
#depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento .content .nome {
    color: #00376A;
    font-size: 30px;
    text-align: center;
    margin: 0;
}
#depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento .content .descricao {
    color: #00376A;
    font-size: 20px;
    text-align: center;
    margin: 0 0 50px 0;
}
#depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento .content .comentario {
    color: #00376A;
    font-size: 20px;
    text-align: center;
    margin: 0;
}

/* =========================================================================
   RESPONSIVO
   ========================================================================= */

@media (max-width: 1400px) {
}

@media (max-width: 1200px) {
}

@media (max-width: 992px) {
    #hero {
        aspect-ratio: 9 / 16;
        max-height: 100dvh;
    }
    #hero .hero-btn-prev,
    #hero .hero-btn-next {
        width: 36px;
        height: 36px;
    }
    #hero .hero-btn-prev {
        left: 10px;
    }
    #hero .hero-btn-next {
        right: 10px;
    }


    /* Vídeo Sobre */
    #video-sobre {
        padding: 50px 0;
    }
    #video-sobre .section-titulo {
        font-size: 28px;
    }


    /* Tecnologias Educacionais */
    #tecnologias-educacionais {
        padding: 50px 0;
    }
    #tecnologias-educacionais .section-titulo {
        font-size: 32px;
        padding: 0 28px;
        margin: 0 0 25px 0;
    }
    #tecnologias-educacionais .card-descricao p {
        font-size: 15px;
    }


    /* Nossos Números */
    #nossos-numeros {
        padding: 50px 0 0 0;
    }
    #nossos-numeros .section-titulo {
        font-size: 32px;
        padding: 0 10px;
        margin: 0;
    }
    #nossos-numeros .engrenagens {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;

        transform: scale(0.9);
        margin: 0;
    }
    #nossos-numeros .engrenagens .engrenagem .content span {
        font-size: 24px;
    }
    #nossos-numeros .engrenagens .engrenagem.--left {
        position: relative;
        top: unset;
        left: unset;
        bottom: unset;
        width: 330px;
        height: 330px;
    }
    #nossos-numeros .engrenagens .engrenagem.--center {
        margin-top: 0;
        width: 300px;
        height: 300px;
    }
    #nossos-numeros .engrenagens .engrenagem.--center svg {
        animation-delay: .1s;
    }
    #nossos-numeros .engrenagens .engrenagem.--right {
        position: relative;
        top: unset;
        right: unset;
        width: 330px;
        height: 330px;
    }
    #nossos-numeros .engrenagens .engrenagem.--right svg {
        animation-delay: .45s;
    }
    #nossos-numeros .engrenagens .descricao {
        bottom: -80px;
        top: unset;
        width: calc(100% + 130px);
        height: auto;
    }




    /* Aprender */
    #aprender {
        flex-wrap: wrap;
        padding: 50px 0;
    }
    #aprender .render {
        width: calc(100% - 30px);
        margin-left: 15px;
        order: 9;
    }
    #aprender .content {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    #aprender .content .section-titulo {
        font-size: 32px;
    }
    #aprender .content .section-titulo strong {
        font-size: 48px;
    }
    #aprender .content .section-titulo b {
        font-size: 41px;
    }
    #aprender .content .cards {
        gap: 10px;
        flex-wrap: wrap;
    }
    #aprender .content .cards .card-aprender {
        width: 100%;
        padding: 20px 40px;
    }
    #aprender .content .cards .card-aprender .icon {
        margin: 0 auto 10px auto;
    }
    #aprender .content .cards .card-aprender .icon img {
        width: 80px;
        height: 80px;
    }




    /* Beneficios */
    #beneficios {
        padding: 50px 0 0 0;
        overflow: visible!important;
    }
    #beneficios .section-titulo {
        font-size: 32px;
        margin: 0 0 25px 0;
    }
    #beneficios .swiperBeneficios {
        padding: 0 0 60px 0;
    }
    #beneficios .swiperBeneficios .card-beneficio .front {
        padding: 30px;
        gap: 15px;
    }
    #beneficios .swiperBeneficios .card-beneficio:hover .front {
        transform: none;
    }
    #beneficios .swiperBeneficios .card-beneficio:hover .back {
        transform: rotateY(180deg);
    }
    #beneficios .swiperBeneficios .card-beneficio .front .btn-ver-mais {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, #944B96, #7F4081);
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 8px 18px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        letter-spacing: 0.3px;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    #beneficios .swiperBeneficios .card-beneficio .front .btn-ver-mais:active {
        transform: scale(0.96);
    }
    #beneficios .beneficios-divisor-bottom {
        margin: 0px 0 -2px 0;
    }

    #beneficios .beneficios-nav-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 15px;
    }
    #beneficios .beneficios-prev,
    #beneficios .beneficios-next {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,0.6);
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s, border-color 0.2s, transform 0.15s;
        padding: 0;
    }
    #beneficios .beneficios-prev:active,
    #beneficios .beneficios-next:active {
        transform: scale(0.92);
    }
    #beneficios .beneficios-prev svg,
    #beneficios .beneficios-next svg {
        width: 20px;
        height: 20px;
        stroke: #fff;
    }
    #beneficios .beneficios-prev.swiper-button-disabled,
    #beneficios .beneficios-next.swiper-button-disabled {
        opacity: 0.35;
        cursor: default;
    }



    /* Depoimentos */
    #depoimentos {
        padding: 50px 0;
    }
    #depoimentos .section-titulo {
        font-size: 32px;
        padding: 0 16px;
    }
    #depoimentos .video-content {
        margin-top: 25px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    #depoimentos .depoimentos-content {
        position: relative;
        padding-top: 60px;
    }
    #depoimentos .depoimentos-content .navDepoimentos-prev {
        position: absolute;
        top: 0;
        left: 0;
    }
    #depoimentos .depoimentos-content .navDepoimentos-next {
        position: absolute;
        top: 0;
        right: 0;
    }
    #depoimentos .depoimentos-content .navDepoimentos-prev svg,
    #depoimentos .depoimentos-content .navDepoimentos-next svg {
        width: 50px;
        height: 50px;
    }
    #depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento {
        flex-direction: column;
    }
    #depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento .image {
        width: 100%;
        min-width: unset;
        border-radius: 15px 30px 15px 15px;
    }



    
    #hero .content .descricao,
    #video-sobre .content .descricao,
    #aprender .content .descricao,
    #depoimentos .video-content p,
    #depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento .content .descricao,
    #depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento .content .comentario { font-size: 15px; }

    #aprender .content .cards .card-aprender h3,
    #beneficios .swiperBeneficios .card-beneficio .front h3,
    #depoimentos .video-content strong,
    #depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento .content .nome { font-size: 20px; }

    /* Adjust layouts that break on tablet */
    #solucoes {
        min-height: unset;
        padding: 0 0 50px 0;
        overflow: hidden;
    }
    #solucoes .anim-container {
        flex-direction: column;
        align-items: center;
        width: calc(100% - 15px);
        gap: 80px;
    }
    #solucoes .anim-container .card {
        width: 100%;
        max-width: unset;
        height: unset!important;

        position: initial;
        top: unset;
        left: unset;
        right: unset;
        bottom: unset;

        padding: 50px 0 0 0;
        /* width: 85%;
        max-width: 380px; */
    }
    #solucoes .anim-container .card-left {
        background-color: rgba(0, 88, 165, .45);
        border: 10px solid #0058A5;
        border-radius: 1000px;
        padding: 50px 0 20px 0;
        margin: 0 0 30px 0;
    }
    #solucoes .anim-container .card-right {
        background-color: rgba(148, 75, 150, .45);
        border: 10px solid #944B96;
        border-radius: 1000px;
        padding: 20px 0 50px 0;
    }
    #solucoes .anim-container .card-left .card-img-container {
        margin-top: 30px;
    }
    #solucoes .anim-container .card-right .card-img-container {
        margin-bottom: 30px;
    }
    #solucoes .anim-container .card-left .card-img-container,
    #solucoes .anim-container .card-right .card-img-container {
        position: initial;
        top: unset;
        left: unset;
        right: unset;
        bottom: unset;
    }
    #solucoes .anim-container .card-left h2,
    #solucoes .anim-container .card-right h2 {
        font-size: 26px;
    }
    #solucoes .anim-container .card-left p,
    #solucoes .anim-container .card-right p {
        font-size: 16px;
    }


    #solucoes .anim-container .card-left .card-img-container::before,
    #solucoes .anim-container .card-right .card-img-container::before,
    #solucoes .anim-container::before,
    #solucoes .anim-container::after,
    #solucoes .anim-container svg.bg {
        content: unset;
        display: none;
    }
    /* #nossos-numeros .engrenagens { transform: scale(0.8); margin: -50px 0; } */
    
    /* #aprender .content .cards { flex-direction: column; align-items: stretch; }
    #aprender .content .cards .card-aprender { padding: 20px 40px; } */
}

/* @media (max-width: 768px) {
    #hero .content .titulo,
    #tecnologias-educacionais .section-titulo,
    #aprender .content .section-titulo b { font-size: 28px; }
    #aprender .content .section-titulo strong { font-size: 32px; }

    #video-sobre .section-titulo,
    #solucoes .anim-container .card-left h2,
    #solucoes .anim-container .card-right h2,
    #nossos-numeros .section-titulo,
    #nossos-numeros .engrenagens .engrenagem .content h3,
    #beneficios .section-titulo,
    #depoimentos .section-titulo { font-size: 22px; }

    #hero .content .descricao,
    #video-sobre .content .descricao,
    #solucoes .anim-container .card-left p,
    #solucoes .anim-container .card-right p,
    #tecnologias-educacionais .card-descricao p,
    #nossos-numeros .engrenagens .engrenagem .content span,
    #aprender .content .descricao,
    #depoimentos .video-content p,
    #depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento .content .descricao,
    #depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento .content .comentario { font-size: 14px; }

    #aprender .content .cards .card-aprender h3,
    #beneficios .swiperBeneficios .card-beneficio .front h3,
    #depoimentos .video-content strong,
    #depoimentos .depoimentos-content .swiperDepoimentos .card-depoimento .content .nome { font-size: 18px; }

    #hero .content .botao,
    #video-sobre .content .botao { font-size: 18px; padding: 10px 25px; }

    #solucoes .anim-container .card {
        width: 90%;
        max-width: 350px;
    }

    #nossos-numeros .engrenagens { transform: scale(0.6); margin: -100px 0; }
    
    #aprender { flex-direction: column; height: auto; text-align: center; }
    #aprender .render { width: 100%; margin-left: 0; }
    #aprender .content { padding: 40px 20px; }
    #aprender .content .cards { align-items: center; }
}

@media (max-width: 576px) {
    #hero .content .titulo,
    #tecnologias-educacionais .section-titulo,
    #aprender .content .section-titulo b { font-size: 24px; }
    #aprender .content .section-titulo strong { font-size: 28px; }

    #video-sobre .section-titulo,
    #solucoes .anim-container .card-left h2,
    #solucoes .anim-container .card-right h2,
    #nossos-numeros .section-titulo,
    #nossos-numeros .engrenagens .engrenagem .content h3,
    #beneficios .section-titulo,
    #depoimentos .section-titulo { font-size: 20px; }

    #nossos-numeros .engrenagens { transform: scale(0.45); margin: -150px 0; }
    #nossos-numeros .engrenagem-esquerda, #nossos-numeros .engrenagem-direita { opacity: 0.2; }
} */