/* HEADER ------------------------------------------------------------------------------------------------------*/
body header{
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.159);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 250px;
    z-index: 100;
    transition: all 200ms ease-in-out;
}
body header.sticky {
    top: 0;
    background-color: rgba(0, 0, 0, 0.788) !important;
    border-bottom: 1px solid rgb(49, 49, 49);
}
header img{
    width: 100px;
}
header .header_nav{
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.header_nav a{
    position: relative;
    font-size: 14px;
    text-decoration: none;
    color: white;
    opacity: 0.6;
    transition: all 200ms ease-in-out;
}
.header_nav a:hover{
    opacity: 1;
}
.header_nav a.active{
    color: var(--site-primary);
    opacity: 1;
    font-weight: 600;
}
.header_nav a span{
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background-color: white;
    display: none;
}
.header_nav a.active span{
    background-color: var(--site-primary);
    display: block;
}
header .btn_entrar{
    width: 110px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.164);
    border: 2px solid white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
header .btn_entrar.hide{
    display: none;
}
.btn_entrar:hover{
    background-color: var(--site-primary);
}
.btn_entrar h5{
    color: white;
    font-weight: 300;
}
header .btn_topo{
    display: block;
    width: 110px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.164);
    border: 2px solid white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 5px;
    text-decoration: none;
    transition: all 200ms ease-in-out;
}
header .btn_topo.hide{
    display: none;
}
.btn_topo:hover{
    background-color: var(--site-primary);
}
.btn_topo h5{
    color: white;
    font-weight: 300;
}
.btn_topo i{
    color: white;
}

/* FEEDBACK ----------------------------------------------------------------------------------------------------*/
#feedback{
    position: fixed;
    left: -360px;
    top: 37vh;
    width: 410px;
    height: 160px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    background-color: var(--site-secound);
    border-start-end-radius: 10px;
    border-end-end-radius: 10px;
    filter: contrast(.5);
    transition: all 300ms ease-in-out;
}
#feedback:hover{
    filter: contrast(1);
    left: 0;
}
#feedback .feed_left_box{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.feed_left_box h6{
    color: white;
    font-size: 14px;
    font-weight: 300;
}
.feed_left_box .feed_left_icons{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.feed_left_icons .feed_icon{
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.feed_icon i{
    color: white;
    font-size: 36px;
    transition: all 200ms ease-in-out;
}
.feed_icon h6{
    color: white;
    font-size: 12px;
    font-weight: 300;
}
.feed_icon:hover > i{
    color: yellow;
}
#feedback .feed_button{
    width: 50px;
    min-width: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-left: 1px solid white;
    cursor: pointer;
}
.feed_button h5{
    transform: rotateZ(-90deg);
    margin-top: 35px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    pointer-events: none;
}
.feed_button i{
    color: white;
    font-size: 25px;
    pointer-events: none;
}

/* DIREITOS ----------------------------------------------------------------------------------------------------*/
#direitos{
    width: 100vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    background-color: transparent;
    z-index: 100;
}
#direitos p{ 
    color: rgb(142, 142, 142);
    font-size: 11px;
}

/* HOME --------------------------------------------------------------------------------------------------------*/
body .section_home{
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url("../img/background_index3.png");
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section_home .home_left{
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 250px;
}
.home_left h2{
    font-size: 50px;
    color: white;
    font-weight: 300;
    letter-spacing: -5px;
    line-height: 50px;
    cursor: default;
    filter: drop-shadow(0 0 5px #151515);
}

.home_left #txt_animado{  /* TEXTO DINÂMICO */
    position: relative;
}
.home_left #txt_animado::before{
    content: "";
    font-size: 72px;
    color: var(--site-primary);
    font-weight: 800;
    letter-spacing: -5px;
    line-height: 72px;
    cursor: default;
    filter: drop-shadow(0 0 5px #151515);
    animation: palavras 30s infinite;
    opacity: 0;
}
@keyframes palavras{
    0%{
        opacity: 0;
    }
    5%{
        opacity: 1;
    }
    10%{
        opacity: 0;
    }
    15%{
        opacity: 1;
    }
    20%{
        opacity: 0;
    }
    25%{
        opacity: 1;
    }
    30%{
        opacity: 0;
    }
    35%{
        opacity: 1;
    }
    40%{
        opacity: 0;
    }
    45%{
        opacity: 1;
    }
    95%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
    0%,10%{
        content: "TRIAGEM";
    }
    11%,20%{
        content: "CONTROLE";
    }
    21%,30%{
        content: "SUPORTE";
    }
    31%,40%{
        content: "COMPETÊNCIA";
    }
    41%,100%{
        content: "LOG10 TRIAGEM";
    }
}

.home_left p{
    font-family: 'Kalam', sans-serif;
    color: white;
    width: 50%;
    cursor: default;
    filter: drop-shadow(0 0 10px #151515);
}
.home_left h5{
    color: var(--site-primary);
    font-weight: 300;
    cursor: default;
    filter: drop-shadow(0 0 10px #151515);
}
.section_home .home_right{
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    padding-right: 250px;
}
.home_right .qrcode_div{
    position: relative;
    width: 110px;
    min-width: 110px;
    height: 110px;
    min-height: 110px;
    border: 1px solid white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.qrcode_div .btn_qrcode{
    position: absolute;
    top: 40;
    width: 90%;
    height: 35px;
    background-color: var(--site-primary);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 300ms ease-in-out;
    display: none;
}
.btn_qrcode i{
    color: white;
}
.btn_qrcode h6{
    color: white;
}
.qrcode_div #qrcode_image{
    transition: all 200ms ease-in-out;
}
.qrcode_div:hover > #qrcode_image{
    opacity: 0.3;
}
.qrcode_div:hover > .btn_qrcode{
    display: block;
    display: flex;
}
.home_right p{
    width: 110px;
    text-align: center;
    color: white;
    font-size: 12px;
    margin-top: 5px;
    cursor: default;
}
.home_right .map_div{
    position: relative;
    width: 110px;
    min-width: 110px;
    height: 90px;
    min-height: 90px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}
.map_div .fa-map-location-dot{
    position: absolute;
    top: 20px;
    color: white;
    font-size: 40px;
    transition: all 300ms linear;
}
.map_div p{
    position: absolute;
    bottom: 3px;
    text-align: center;
    color: white;
    font-size: 12px;
}
.map_div #truck{
    position: absolute;
    top: 25px;
    left: 0;
    font-size: 25px;
    color: white;
    opacity: 0;
    transition: all 300ms linear;
}
.map_div:hover > .fa-map-location-dot{
    right: 20px;
    font-size: 30px;
    color: var(--site-primary);
}
.map_div:hover > #truck{
    left: 20px;
    opacity: 1;
}

.section_home .login_panel{
    width: 400px;
    height: 100%;
    background-color: white;
    position: absolute;
    top: 0;
    right: -450px;
    border-start-start-radius: 20px;
    border-end-start-radius: 20px;
    border-left: 4px solid var(--site-primary);
    transition: all 300ms ease-in-out;
    z-index: 999;
    display: flex;
    flex-direction: column;
}
.section_home .login_panel.active{
    right: 0;
}
.login_panel #close_login_panel{
    position: absolute;
    top: 100px;
    left: -23px;
    font-size: 30px;
    color: rgb(255, 58, 58);
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
#close_login_panel i{
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
#close_login_panel:hover{
    transform: rotateZ(90deg);
}
#close_login_panel:hover i{
    opacity: 1;
}
.login_panel .parteA{
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.parteA h1{
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -3px;
}
.parteA .input_box{
    width: 80%;
    height: auto;
}
.input_box h5{
    font-size: 11px;
    color: rgb(78, 78, 78);
}
.input_box input{
    width: 100%;
    height: 35px;
    border: 2px solid gray;
    border-radius: 15px;
    padding-left: 10px;
    margin-top: 2px;
    font-size: 12px;
    outline: 0;
}
.input_box input:focus{
    border: 2px solid var(--site-secound);
}
.parteA .input_box:has(input:focus) h5{
    color: var(--site-secound);
}
.parteA .btn_login_acesso{
    width: 80%;
    height: 35px;
    border: 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(90deg, var(--site-secound), #00DB30);
    opacity: 0.8;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.parteA .btn_login_acesso:hover{
    opacity: 1;
}
.parteA .recover_password{
    font-size: 12px;
    color: var(--site-secound);
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.recover_password:hover{
    text-decoration: underline;
    color: var(--site-primary);
}

.login_panel .parteB{
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.parteB .btn_area_motorista{
    width: 80%;
    height: 35px;
    border: 2px solid rgb(78, 78, 78);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    opacity: 0.8;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.btn_area_motorista h5{
    font-size: 12px;
}
.btn_area_motorista:hover{
    opacity: 1;
}
.parteB .redes_sociais{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.redes_sociais h5{
    font-size: 11px;
    color: rgb(78, 78, 78);
    margin-bottom: 10px;
    pointer-events: none;
}
.redes_sociais .icones_redes{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.icones_redes img{
    width: 30px;
    margin-bottom: 20px;
}








/* ABOUT --------------------------------------------------------------------------------------------------------*/
body .section_about{
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: row;
}
.section_about .about_left{
    width: 40%;
    height: 100%;
    position: relative;
}
.about_left #bar1{
    position: absolute;
    top: 0;
    left: 100px;
    width: 40px;
    height: 100%;
    background-color: #007E1C;
}
.about_left #bar2{
    position: absolute;
    top: 0;
    left: 160px;
    width: 30px;
    height: 100%;
    background-color: rgba(0, 126, 27, 0.8);
}
.about_left #bar3{
    position: absolute;
    top: 0;
    left: 205px;
    width: 20px;
    height: 100%;
    background-color: rgba(0, 126, 27, 0.5);
}
.about_left #bar4{
    position: absolute;
    top: 0;
    left: 235px;
    width: 10px;
    height: 100%;
    background-color: rgba(0, 126, 27, 0.3);
}
.about_left img{
    position: absolute;
    z-index: 10;
    top: 28%;
    left: 90px;
    width: 400px;
}

.section_about .about_right{
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.about_right h1{
    font-size: 40px;
    font-weight: bold;
    color: #007E1C;
}
.about_right h2{
    color: #4D4D4D;
}
.about_right p{
    width: 80%;
}
.about_right .info{
    width: auto;
    height: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.info span{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #007E1C;
}
.info h5{
    color: #505050;
    font-weight: 400;
}
.about_right .btn_pre_agendamento{
    width: 300px;
    height: 50px;
    position: relative;
}
.btn_pre_agendamento .detalhe_direita{
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    border: 1px solid #007E1C;
    border-start-end-radius: 8px;
    border-end-end-radius: 8px;
}
.btn_pre_agendamento .botao{
    width: 290px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 5px;
    left: 0;
    background-color: #005d14;
    border-start-start-radius: 8px;
    border-end-start-radius: 8px;
    transition: all 200ms ease-in-out;
    cursor: pointer;
}
.botao:hover{
    background-color: #007E1C;;
}
.botao h5{
    color: white;
    font-weight: 400;
}








/* WE PLACE -----------------------------------------------------------------------------------------------------*/
body .section_we_place{
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url("../img/we_place.png");
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
}
.section_we_place h1{
    font-size: 40px;
    font-weight: bold;
    color: #007E1C;
}
.section_we_place h2{
    color: #4D4D4D;
}
.section_we_place p{
    width: 80%;
    text-align: center;
    margin-top: 20px;
}
.section_we_place .cards{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.cards .card{
    width: 300px;
    height: 300px;
    background-color: white;
    padding: 20px;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 0 10px #828282;
    transition: all 200ms ease-in-out;
}
.card .card_top{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card_top img{
    width: 60px;
}
.card_top h1{
    font-size: 36px;
    color: #4D4D4D;
}
.card .card_body{
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
}
.card_body h2{
    font-size: 24px;
}
.card_body p{
    text-align: left
}

.cards .card:nth-child(1){
    border-start-start-radius: 40px;
    border-end-start-radius: 40px;
}
.cards .card:nth-child(3){
    border-start-end-radius: 40px;  
    border-end-end-radius: 40px;
}

.cards .card:hover .card_top h1{
    color: #007E1C;
}
.cards .card:hover{
    border: 2px solid #007E1C;
    box-shadow: 0 0 10px #18a336;
}

.section_we_place .cards:has(.card:hover) .card:not(:hover){
    opacity: 0.5;
}






/* SERVICES -----------------------------------------------------------------------------------------------------*/
body .section_services{
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url("../img/services.png");
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
}
.section_services h1{
    font-size: 40px;
    font-weight: bold;
    color: #007E1C;
}
.section_services h2{
    color: #4D4D4D;
    font-weight: 400;
}
.section_services .div_serv_cards{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.div_serv_cards .serv_Card{
    width: 180px;
    height: 200px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 10px #828282;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}
.serv_Card i{
    color: #007E1C;
    transition: all 300ms ease-in-out;
}
.serv_Card h4{
    font-size: 12px;
    transition: all 300ms ease-in-out;
}
.serv_Card p{
    font-size: 12px;
    color: #151515;
    transition: all 300ms ease-in-out;
}

.serv_Card:hover{
    background-color: #007E1C;
}
.serv_Card:hover i,
.serv_Card:hover h4,
.serv_Card:hover p{
    color: white;
}

.section_services h3{
    color: #007E1C;
    font-family: 'Kalam', sans-serif;
    font-weight: 400;
    font-size: 24px;
}






/* CONTACT ------------------------------------------------------------------------------------------------------*/
body .section_contact{
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: url("../img/we_place.png");
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
}
.section_contact .cont_left{
    width: 30%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #959595;
    border-start-start-radius: 20px;
    border-end-start-radius: 20px;
    box-shadow: 0 0 10px #828282;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}
.cont_left p{
    font-weight: 400;
    text-align: center;
}
.cont_left .cont_btn{
    position: relative;
    width: 300px;
    height: 35px;
    border-radius: 4px;
    background-color: #005d14;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0 20px;
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.cont_btn a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.cont_btn h5{
    font-weight: 400;
}
.cont_btn i{
    font-size: 24px;
}
.cont_btn:hover{
    opacity: 1;
}

.section_contact .cont_right{
    width: 30%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #959595;
    border-start-end-radius: 20px;
    border-end-end-radius: 20px;
    box-shadow: 0 0 10px #828282;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}
.cont_right h4{
    color: #007E1C;
}
.cont_right input{
    width: 300px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #151515;
    padding-left: 10px;
    font-size: 11px;
    text-transform: uppercase;
}
.cont_right textarea{
    width: 300px;
    height: 100px;
    border-radius: 4px;
    border: 1px solid #151515;
    padding-left: 10px;
    font-size: 14px;
    text-transform: uppercase;
    resize: none;
    padding: 10px;
}
.cont_right .btn_enviar_form{
    width: 300px;
    height: 35px;
    background-color: #007E1C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.8;
    border-radius: 4px;
    transition: all 200ms ease-in-out;
}
.btn_enviar_form h5{
    color: white;
    font-weight: 400;
}
.btn_enviar_form:hover{
    opacity: 1;
}