.banners {
    height: 730px;
    position: relative;
    
    .owl-stage {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .box-img {
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }
        
        img {
            height: 730px;
            width: 100%;
            object-fit: cover;
            z-index: 1;
        }
    }
    
    .box-info {
        position: absolute;
        z-index: 2;
        top: 0;
        width: 100%;
    
        .titulo {
            color: #FFF;
            font-size: 45px;
            font-style: normal;
            font-weight: 800;
            line-height: normal;
            letter-spacing: 4.95px;
            text-transform: uppercase;
            margin-bottom: 40px;
        }
    }

    .destaques {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    
        .destaque {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 25px;
            
            .box-icon img {
                max-width: 25px;
                max-height: 25px;
            }
            
            p {
                color: #FFF;
                font-size: 20px;
                font-style: normal;
                font-weight: 500;
                line-height: 27px;
                /* 135% */
                margin-bottom: 0;
                padding-left: 10px;
            }
        }
    }
    
    .btn-cta {
        background-color: #408ACB;
    }
}

.busca-emp {
    background: #F7FDFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.06);
    padding: 25px 0;
    margin-bottom: 50px;

    p {
        color: #3B3B3B;
        font-size: 26px;
        font-style: normal;
        font-weight: 500;
        margin-bottom: 0;
    }

    select {
        width: 100%;
        height: 42px;
        background-color: transparent;
        border: 0;
        border-radius: 0;
        border-bottom: solid 1px #4B4B4B;
        color: #4B4B4B;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px; /* 168.75% */
        padding-left: 25px;
    }
}

.sobre {
    padding-bottom: 60px;

    .box-img {
        height: 430px;
        
        img {
            object-fit: cover;
            max-width: 40%;
            height: 430px;
            z-index: 2;
            position: absolute;
            border-radius: 15px;
            left: 1.5rem;
        }
    }

    .box-sobre {
        width: 75%;
        height: calc(100% + 60px);
        border-radius: 15px;
        background: #F7FDFF;
        box-shadow: -6px 4px 12px 0px rgba(0, 0, 0, 0.08);
        padding: 30px 21% 30px 18%;
    }
}

@media (max-width: 1800px) {
    .sobre {
        .box-img {
            height: 400px;
            
            img {
                max-width: 40%;
                height: 400px;
                left: -2rem;
            }
        }

        .box-sobre {
            width: calc(75% + 3rem);
            height: calc(100% + 60px);
            padding: 30px 11% 30px 18%;
        }
    }
}
@media (max-width: 1700px) {
    .sobre {
        .box-img {
            height: 370px;
            
            img {
                max-width: 42%;
                height: 370px;
                left: -6rem;
            }
        }

        .box-sobre {
            width: calc(75% + 4rem);
            height: calc(100% + 60px);
            padding: 30px 10% 30px 16%;
        }
    }
}
@media (max-width: 1400px) {
    .sobre {
        padding-bottom: 40px;

        .box-img {
            height: 220px;
            
            img {
                object-fit: cover;
                max-width: 100%;
                height: 220px;
                z-index: 2;
                position: relative;
                left: 0;
            }
        }

        .box-sobre {
            width: calc(100% + 1.5rem);
            height: auto;
            padding: 90px 1.5rem 30px 1.5rem;
            position: relative;
            z-index: 1;
            margin-top: -60px;
        }
    }
}
@media (max-width: 992px) {
    .banners {
        height: 450px;

        .box-img {
            img {
                height: 450px;
            }
        }

        .box-info {
            .titulo {
                font-size: 24px;
                margin-bottom: 15px;
            }

        }

        .destaques {
            flex-wrap: wrap;
            
            .destaque {
                margin: 0 10px;
                margin-bottom: 10px;

                p {
                    font-size: 13px;
                }
            }
        }
    }
}

@media (max-width: 768px) {

}