main{
    height: 530px;
}
main .swiper {
    width: 100%;
    height: 100%;
}
main .swiper .swiper-slide{
    position: relative;
}
main .swiper .swiper-slide img{
    transform: scale(2) translateX(200px);
    transition: all 2s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
main .swiper .swiper-slide.swiper-slide-active .triangle{
    transform: translateX(0);
    clip-path: polygon(0 0, 100% 0, 0 130%);
}
main .swiper .swiper-slide .triangle{
    transform-origin: left;
    width: 67%;
    height: 100%;
    background-image: url('../img/home/vetor_triangle.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    clip-path: polygon(0 0, 50% 0, 0 130%);
    transform: translateX(-100%);
    transform-origin: left;
    pointer-events: none;
    transition: all 2s ease-in-out;

}
main .swiper .swiper-slide.swiper-slide-active .text{
    transform: translateX(50px) scale(1);
}
main .swiper .swiper-slide .text{
    text-align: left;
    position: absolute;
    top: 65px;
    transform: translateX(-100%) scale(0.3);
    z-index: 10;    
    width: 450px;
    padding-bottom: 30px;
    transition: all 2s ease-in-out;
} 
main .swiper .swiper-slide .text:before{
    content: "";
    position: absolute;
    width: 310px;
    height: 9px;
    background-color: #fff;
    transform: scaleX(5);
    transform-origin: right;
    left: 0;
    bottom: 0;
}
main .swiper .swiper-slide .text h1,
main .swiper .swiper-slide .text h2{
    text-shadow: 0px 0px 30px rgba(0,0,0,1);
    color: #fff;
    position: relative;
    width: fit-content;
    font-size: 45.83px;
    font-weight: 400;
    transition: opacity 2s ease-in-out;
}
main .swiper .swiper-slide.swiper-slide-active img{
    transform: scale(1) translateX(200px);
}
main .swiper .swiper-pagination-bullet{
    transform: translatex(-90px) !important;
    width: 23px !important;
    height: 23px !important;
    border: 2px solid #fff !important;
    background-color: transparent !important;
    margin: 15px 0 !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    opacity: 1 !important; /* Ensure the bullet is fully visible */
}
main .swiper .swiper-pagination-bullet-active{
    border: 2px solid #fff !important;
    background-color: #fff !important;
}
section.diferenciais{
    overflow: auto;
    padding: 35px 0;
    color: #fff;
    background-color: hsl(228, 100%, 8%);
}
section.diferenciais .introduction{
    margin-bottom: 17px;
}
section.diferenciais .introduction h2{
    font-size: 25px;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
section.diferenciais .introduction h2:before{
    margin-right: 7px;
    content: "|";
    left: 0;
}
section.diferenciais .introduction p{
    font-size: 18px;
    margin-left: 20px;
}
section.diferenciais .wrapper{
    min-height: 260px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
section.diferenciais .wrapper .item{
    width: 100%;
    padding: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all .3s ease-in-out;
}
section.diferenciais .wrapper .item:hover{
    background: rgb(0,45,104);
    background: linear-gradient(180deg, rgba(0,45,104,1) 35%, rgba(0,15,69,1) 100%);
}
section.diferenciais .wrapper .item:hover .text{
    transform: translateY(0) scale(1);
    height: auto;
    pointer-events: all;
}
section.diferenciais .wrapper .item .text{
    pointer-events: none;
    transform: translateY(100%) scale(0);
    height: 0;
    transition: all .3s ease-in-out;
}
section.diferenciais .wrapper .item img{
    transition: all .3s ease-in-out;
    transform: translateY(0) scale(1);
    width: 120px;
    height: auto;
}
section.diferenciais .wrapper .item:hover img{
    transform: translateY(-100%) scale(0);
    height: 0;
    width: 0;
}
section.diferenciais .wrapper .item h3{
    text-wrap: nowrap;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    height: 70px;
}
section.em_foco {
    background-image: url("../img/home/banner-em_foco.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
}
section.em_foco .wrapper{
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 100px;
}
section.em_foco .wrapper .text{
    width: 592px;
    margin-bottom: 34px;
}
section.em_foco h2.title-page{
    position: relative;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 45px;
    padding-left: 27px;
}
section.em_foco h2.title-page:after{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-color: var(--azul);
}
section.em_foco .wrapper .text .box{
    position: relative;
    background-color: var(--azul);
    color: #fff;
    padding: 20px;
    padding-left: 25px;
    min-height: 422px;
}
section.em_foco .wrapper .text .box h3{
    font-size: 25px;
    font-weight: 500;
}
section.em_foco .wrapper .text .box h5{
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 45px;
}
section.em_foco .wrapper .text .box .body {
    position: relative;
    padding-bottom: 55px;
}
section.em_foco .wrapper .text .box .body:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70%;
    height: 3px;
    background-color: #fff;
}
section.em_foco .wrapper .text .box .body p{
    font-size: 18px;
    line-height: 1.3;
}
section.em_foco .wrapper .text .box h4{
    position: absolute;
    right: 0;
    bottom: 0;
    color: var(--azul);
    margin: 35px 20px;
    background-color: #fff;
    padding: 4px 25px;
    font-size: 18.75px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}
section.em_foco .wrapper .text .box h4:hover{
    transform: scale(1.1);
}
section.em_foco .wrapper .image{
    display: inline-flex;
    margin-top: 75px;
    width: 381px;
    height: auto;
    border: 11px solid var(--azul);
}
section.em_foco .wrapper .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.lead{
    background-image: url("../img/leads/home.webp");
}
@media(max-width: 1100px){
    main{
        height: 400px;
    }
    main .swiper .swiper-slide .text{
        transform: translateX(-100%) scale(0.7);
        width: 100%;
    }
    main .swiper .swiper-slide.swiper-slide-active .text{
        transform: translateX(0px) scale(0.7);
        width: 100%;
    }
    main .swiper .swiper-slide img{
        transform: scale(2) translateX(0px);
    }
    main .swiper .swiper-slide.swiper-slide-active img{
        transform: scale(1) translateX(0px);
    }
    main .swiper .swiper-pagination-bullet{
        transform: translatex(0px) !important;
    }
    section.diferenciais .wrapper{
        flex-direction: column;
    }
    section.em_foco .wrapper{
        flex-direction: column-reverse;
        row-gap: 20px;
    }    
    section.em_foco h2.title-page{
        margin-bottom: 30px;
    }
    section.em_foco h2.title-page.desktop{
        display: none;
    }
    section.em_foco h2.title-page.mobile{
        display: flex !important;   
    }
    section.em_foco .wrapper .text .box{
        padding-bottom: 60px;
    }
    section.em_foco .wrapper .text .box h3{
        margin-bottom: 20px;
    }
    section.em_foco .wrapper .text .box h4{
        margin: 15px 20px;
    }
    section.em_foco .wrapper .text .box .body{
        padding-bottom: 20px;
    }
    section.em_foco .wrapper .text{
        width: 100%;
    }
    section.em_foco .wrapper .image{
        width: 100%;
        height: 350px;
        margin: 0;
    }
}