@charset "UTF-8";
@import "../_main/var.css";

.navbar{
    position: fixed;
}

.content-result-search{
    position: fixed !important;
}

/* slide */
#slide-main{
    width: 100%;
    height: var(--slide-altura);
}

#slide-main .carousel-item{
    width: 100%;
    height: 100%;
    background-size: cover;
}

#slide-main .carousel-item-content{
    top: 50%;
    left: 50%;
    position: absolute;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#slide-main .carousel-control-next,
#slide-main .carousel-control-prev {
    width: 5%;
    color: var(--slide-cor-controle);
    opacity: .5;
}

#slide-main .carousel-control-next:hover,
#slide-main .carousel-control-prev:hover {
    opacity: 1;
}

#slide-main .carousel-bg-img{
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    z-index: 0;
}
#slide-main .carousel-bg-img::before{
    content: '';
    background-color: rgba(0,0,0,.1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

#slide-main .carousel-bg-img .carousel-item-content > *{
    text-shadow: 0 0 20px rgba(0,0,0,0.4);
}

#slide-main .carousel-item-content > .title{
    font-size: clamp(1em, 1.9em + 1vw, 2em) !important;
    font-family: "Poppins", sans-serif !important;
}

#slide-main .carousel-item-content > .subtitle{
    font-size: clamp(.8em, .8em + 1vw, 1.8em) !important;
    font-family: "Poppins", sans-serif !important;
}

.beneficio{
    text-align: center;
}

.beneficio .icon-content > span{
    color: rgba(0, 0, 0, .8);
    filter: drop-shadow(0px 0px 6px rgba(0,0,0,.2));
}

.beneficio .text-content{
    color: var(--cor-padrao);
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
}

.beneficio .text-content > p{
    font-size: 1rem;
}

.content-section-services{
    /*height: calc(100vh - 40px);*/
    /*overflow-y: auto;*/
}

.section-services{
    min-height: calc(80vh - 40px);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 36px;
    border: 4px solid transparent;
    background-clip: padding-box, border-box !important;
    background-origin: padding-box, border-box !important;
    transition: transform .6s, box-shadow .6s;
}
.section-services:hover{
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    transform: scale(1.007);
}

@media (max-width: 576px) {
    .section-services{
        border-radius: 0;
        border: none;
    }
}

#service-1{
    /*background: linear-gradient(to right top, #194189 0%, #3B4980 25%, #8738A7 100%);
    color: #FFFFFF;*/
    background: linear-gradient(to bottom, #203025 0%, #151516 100%);
    color: #FFFFFF;
}
#service-1 .title-service{
    /*color: #C48CFC;*/
    color: #4cd265;
}

#service-2{
    background: linear-gradient(to bottom, #203025 0%, #151516 100%);
    color: #FFFFFF;
}
#service-2 .title-service{
    color: #4cd265;
}

#service-3{
    /*background: linear-gradient(to right, white, white), linear-gradient(to right, var(--cor-laranja), var(--cor-rosa));
    border: 4px solid transparent;*/
    background: linear-gradient(to bottom, #203025 0%, #151516 100%);
    color: #FFFFFF;
}
#service-3 .title-service{
    /*background: linear-gradient(to right, var(--cor-laranja), var(--cor-rosa));
    background-size: 100% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;*/
    color: #4cd265;
}

.section-services .title-service{
    font-weight: 800;
    cursor: pointer;
    text-align: center;
}

/*.section-services > .container-content{
    position: relative;
    min-height: calc(100vh - 40px);
}*/

.section-services .content-btn-action{
    /*position: absolute;*/
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.list-vantagens > div{
    margin-top: 5px;
}
.list-vantagens > div > .material-icons{
    margin-right: 5px;
}

.content-imgs-devices-websites{
    width: 100%;
    /*height: 80%;*/
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    /*display: -webkit-box;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    cursor: ew-resize;*/
}

.content-imgs-devices-websites *{
    user-select: none;
}

.content-imgs-devices-websites::-webkit-scrollbar {
    height: 20px;
}
.content-imgs-devices-websites::-webkit-scrollbar-button {
    width: 45%;
}
.content-imgs-devices-websites::-webkit-scrollbar-thumb {
    background: var(--cor-padrao);
    border-radius: 100px;
}
.content-imgs-devices-websites::-webkit-scrollbar-track {
    background: #e7e7e7;
    border-radius: 100px;
}

.content-imgs-devices-websites > div{
    min-width: 100%;
    text-align: center;

    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.content-imgs-devices-websites img{
    /*height: 80%;*/
    width: 100%;

    opacity: 0;
    transition: opacity 1s;
}
.content-imgs-devices-websites img.show-img{
    opacity: 1;
}

.title-device-website{
    font-size: 2.5rem;
    font-weight: 700;
    padding-bottom: 12px;
    color: #fff;
    text-align: center;
}