main{
    height: 361px;
}
main .swiper {
    width: 100%;
    height: 100%;
}
main .swiper .swiper-slide{
    position: relative;
}
main .swiper .swiper-slide img{
    transform: scale(1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 2s ease-in-out;
}
main .swiper .swiper-slide .text{
    box-shadow: inset 0 5px 25px rgba(224, 243, 255, 0.527);
    color: var(--color_text_light);
    outline: 1px solid #ececec;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    min-height: 229px;
    row-gap: 15px;
    padding: 35px 20px;
    line-height: 1 !important;
}
main .swiper .swiper-slide .text:before{
    background-image: url('../img/home/texture.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.164); /* cor do "borrão" */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
main .swiper .swiper-slide .text h1{
    text-shadow: -5px 5px 10px #000;
    text-wrap: nowrap;
    line-height: .95;
    font-weight: 700;
    font-size: 38px;
    width: fit-content;
    position: relative;
}
main .swiper .swiper-slide .text h1 span{
    font-weight: 700;
    font-size: 45px;
}
main .swiper .swiper-slide .text p{
    text-shadow: -5px 5px 10px #000;
}
main .swiper .swiper-slide.swiper-slide-active img{
    transform: scale(1);
}
.swiper .swiper-pagination-bullet{
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #fff !important;
    background-color: transparent !important;
    margin: 0 7px !important;
    border-radius: 0% !important;
    cursor: pointer !important;
    opacity: 1 !important; /* Ensure the bullet is fully visible */
}
.swiper .swiper-pagination-bullet-active{
    border: 2px solid transparent !important;
    background-color: #fff !important;
}
section.diferenciais{
    padding: 40px 0;
    background-image: url("../img/home/background_diferenciais.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 612px;
    color: var(--color_text_light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
section.diferenciais h2{
    text-align: center;
    font-size: 41.67px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 77px;
}
section.diferenciais .swiper-wrapper{
    padding-bottom: 80px;
}
section.diferenciais .item {
    text-align: center;
}
section.diferenciais .item i{
    font-size: 80px;
}
section.diferenciais .item svg{
    fill: #fff;
    width: 80px;
    height: 80px;
}
section.diferenciais .item svg#teacher path{
    transform: scale(3);
}
section.diferenciais .item h3{
    margin-top: 10px;
    font-size: 33.33px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    min-height: 80px;
}
section.acompanhe{
    border-top: 16px solid #005F80;
    border-bottom: 16px solid #005F80;
}
section.acompanhe .wrapper{
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    row-gap: 50px;
    min-height: 320px;
}
section.acompanhe .wrapper .text{
    width: 410px;
}
section.acompanhe .wrapper .text h2{
    font-size: 49.86px;
    font-weight: 800;
    line-height: .9;
    margin-bottom: 15px;
}
section.acompanhe .wrapper .text h2 span{
    font-weight: 800;
    font-size: 39.86px;
}
section.acompanhe .wrapper .text a{
    background-color: #1376a0;
    color: #fff;
    font-size: 20.83px;
    padding: 4px;
}
section.acompanhe .wrapper .group_itens{
    width: 750px;
}
section.acompanhe .wrapper .group_itens .item{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: var(--color_blue);
    gap: 20px;
}
section.acompanhe .wrapper .group_itens .item .image{
    overflow: hidden;
    display: inline-flex;
    width: auto;
    height: 230px;
    background-color: var(--color_text);
    margin-bottom: 5px;
}
section.acompanhe .wrapper .group_itens .item .text{
    width: 100%;
    flex-basis: 50%;
}
section.acompanhe .wrapper .group_itens .item h4{
    font-size: 20.83px;
    font-weight: 800;
}
section.acompanhe .wrapper .group_itens .item h5{
    font-size: 16.67px;
    margin-bottom: 25px;
}
section.acompanhe .wrapper .group_itens .item p{
    font-size: 17.5px;
    font-weight: 600;
}
@media(max-width: 768px){
    main{
        height: 550px;
    }
    main .swiper .swiper-slide {
        width: 100% !important;
    }
    main .swiper .swiper-slide .text{
        transform: translate(-50%, -50%);
        left: 50%;
        width: 100%;
        max-width: 90%;
        padding: 20px;
    }
    main .swiper .swiper-slide .text h1{
        text-wrap: wrap;
    }
    section.diferenciais .wrapper .item{
        flex-basis: 45%;
    }
    section.acompanhe .wrapper .text a{
        width: fit-content;
        font-size: 18px;
        text-align: center;
        display: inline-flex;
    }
    section.acompanhe .wrapper .text,
    section.acompanhe .wrapper .group_itens{
        width: 100%;
    }
    section.acompanhe .wrapper .group_itens .item .text{
        flex-basis: 100%;
    }

}