/* Add your custom css styles */

#cover-layout{
    background: #000;
    opacity: 0.8;
    position: absolute;
    top: 0;
    display: none;
    width : 100%;
    height: 300%;
    z-index: 99999;
}

/* inicio modal */
.modal-screen{
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
}
.modal-screen .modal{
    display: block;
    height: auto;
    width: 500px;
    margin: 5% calc(50% - (500px/2));
    text-align: center;
    font-weight: 500;
}
.modal-screen .modal .modal-content{
    margin-top: 100px;
}
.modal-screen .modal .modal-header{
    border: none;
    /*background-color: #efefef;*/
    padding: 0;
}

.modal-screen .modal .modal-body{
    height: auto !important;
    min-height: 100px;
    overflow-y:hidden !important;
    font-size: 1.4rem;
    /*background-color: #efefef;*/
}
.modal-screen .modal .modal-footer{
    padding: 0.2rem 1rem 0.5rem;
}
.modal-screen .modal .modal-footer .btn{
    padding: 8px 14px;
}


.modal-screen .modal .btn-custom.close{
    opacity: 1;
    position: relative;
    top: 5px;
    right: 5px;
    padding: 8px 9px 8px 10px;
    z-index: 1;
}
.modal-screen .modal .btn-custom.close:hover{
    color: #fff;
}
/* fim modal */

/* inicio slideBanner's */
.slider{
    width:100%;
	min-height:600px;
    height:100%;
	margin:0 auto;
    position: absolute;
    overflow: hidden;
	z-index: 99999;
    display:block;
    top:10%;
}
.slides-container{
    /*height: 100%;*/
    /*font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;*/

    /*height: calc(100vh - 2rem);*/
    height:100%;
    width: 100%;
    display: flex;
    /*overflow: scroll;*/
    scroll-behavior: smooth;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
	overflow-y: hidden;
    text-align: center;
}
.slides-container li{
    /*width:100%;
    height: 100%;
    position: absolute;
    transition: all 1s;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
	
	overflow-x: hidden;
	overflow-y: scroll;*/
}
.slide {
    width: 100%;
    height: 100%;
    flex: 1 0 100%;
}
.slider span{
    height: 50px;
    position: absolute;
    top:50%;
    margin:-25px 0 0 0;
    background-color: rgba(0, 0, 0, 0.4);
    color:#fff;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}
.title{
    top:80% !important;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    cursor: auto !important;
    padding: 0 20px;
}
#prev{
    position: fixed; /* Mantém o ícone fixo na tela */
    left:0;
    transform: translateY(-50%); /* Centraliza verticalmente */
    z-index: 1000; /* Garante que o ícone fique acima de outros elementos */
    border-radius: 0 10px 10px 0;
}
#next{
    position: fixed; /* Mantém o ícone fixo na tela */
    right:0;
    transform: translateY(-50%); /* Centraliza verticalmente */
    z-index: 1000; /* Garante que o ícone fique acima de outros elementos */
    border-radius:10px 0 0 10px;
}
#prev svg,#next svg{
    width:100%;
    fill: #fff;
}
#prev:hover,
#next:hover{
    background-color: rgba(0, 0, 0, 0.8);
}

.close{
    float: right;
    width: 30px;
    height: 30px;
    line-height: 25px;
    font-size: 25px;
    border-radius: 6px; /*50%;*/
    color: #fff;
    background-color:#f00;
    text-align: center;
    position: absolute;
    z-index: 99999;
    top:2%;
    right:2%;
    padding: 2px 0 0 0;
    opacity: 1;
    display: none;
}
.close:hover{
    color: #fff;
    opacity: 1;
}
/* fim slideBanner's */

@media screen and (max-width: 600px) {
    .modal-screen .modal {
        width: 95%;
        margin: 5% calc(50% - (100%/2));
    }
}