

.box-home{
    border: 1px solid #ccc;
    border-radius: 10px;  
    background-color: #fff;
}

/* slideshow */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 310px;
    margin: auto;
    overflow: hidden;
}

.slideshow-container img {
    width: 100%;
    height: 280px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    box-shadow: 0px 0px 10px gray;
}

.slideshow-container img.active {
    opacity: 1;
}


/* Estilizando os indicadores */
.dot-container {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    position: absolute;
    bottom: 0px;
    align-items: center;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #999999;
    border-radius: 50%;
    display: inline-block;
    align-items: center;
    margin: 0 5px;
    cursor: pointer;
    box-shadow: 2.5px 2.5px 5px lightgray;
}

.dot.active {
    background-color: #555555;
}

/* ============================================================ */
/* */

h3{
    font-family: sans-serif;
    font-weight: bolder;
    padding: 0px 10px;
}


/* ============================================================ */
/* oportunidades-container */

.oportunidades-container{
    margin: 0px;
    width: 100%;
    height: auto;
    padding: 10px;
    overflow: hidden;
    overflow-x: auto;
    display: inline-flex;
}

.oportunidades-container .boxOpt{
    margin: 0px;
    margin-right: 20px;
    width: 150px;
    height: auto;
    padding: 0px;

    cursor: pointer;

}

.boxOpt img{
    margin: 0px;
    width: 150px;
    height: 150px;
    padding: 0px;

    border: none;
    border-radius: 10px;

    /*background-color: rgb(200, 0, 0);*/
}
.boxOpt p{
    width: 100%;
    height: 30px;
    padding: 0px ;
    padding-top: 5px;
    font-size: 15px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: inherit;
}




/* ============================================================ */
/* departamentos-container */

.departamentos-container{
    margin: 0px;
    width: 100%;
    height: auto;
    padding: 10px;
    text-align: center;
}

.departamentos-container .boxDept{
    margin: 0px 15px 15px 0px;
    width: calc(50% - 35px);
    height: 200px;
    padding: 0px;

    border: 2px solid rgb(200, 0, 0);
    border-radius: 10px;
    overflow: hidden;
    display: inline-flex;
    vertical-align: top;

    box-shadow: 5px 5px 10px lightgray;
    cursor: pointer;

}

.boxDept .title{
    margin: 0px;
    width: 55%;
    height: 100%;
    padding: 20px;
    text-align: left;

    background-color: rgb(200, 0, 0);
    color: #fff;
}
    .boxDept .title p{
        font-size: 20px;
        font-weight: bold;
    }
    .boxDept .title button{
        width: 35px;
        height: 35px;
        padding: 0px;
        border-radius: 5px;
        font-size: 20px;
        font-weight: bold;
        border: 3px solid #fff;
        background-color: rgb(200, 0, 0);

    }


.boxDept .image{
    margin: 0px;
    width: 45%;
    height: 100%;
    padding: 0px;
    background-color:#fff;
    text-align: center;
}
    .boxDept .image img{
        margin: 0px;
        /*width: auto;*/
        width: 100%;
        height: auto;
        max-height: 100%;
        padding: 0px;
    }



