@font-face {
    font-family: 'Thin';
    src: url('/fonts/SpartanMB-Thin.otf')
    format(opentype);
}@font-face {
    font-family: 'Semi-Bold';
    src: url('/fonts/SpartanMB-SemiBold.otf')
    format(opentype);
}@font-face {
    font-family: 'Regular';
    src: url('/fonts/SpartanMB-Regular.otf')
    format(opentype);
}@font-face {
    font-family: 'Medium';
    src: url('/fonts/SpartanMB-Medium.otf')
    format(opentype);
}@font-face {
    font-family: 'Light';
    src: url('/fonts/SpartanMB-Light.otf')
    format(opentype);
}@font-face {
    font-family: 'Extra-Light';
    src: url('/fonts/SpartanMB-ExtraLight.otf')
    format(opentype);
}@font-face {
    font-family: 'Extra-Bold';
    src: url('/fonts/SpartanMB-ExtraBold.otf')
    format(opentype);
}@font-face {
    font-family: 'Bold';
    src: url('/fonts/SpartanMB-Bold.otf')
    format(opentype);
}@font-face {
    font-family: 'Black';
    src: url('/fonts/SpartanMB-Black.otf')
    format(opentype);
}

:root{
    --verde-oficial: #00a859;
    --verde-escuro: #047741;
    --verde-alternativo: #00924e;
    --amarelo: #edcd00;
    --branco: #ffffff;
    --cor3: #5e45f8;
    --cor4: #ffffff;

    --fonte-thin: 'Thin';
    --fonte-semibold: 'Semi-Bold';
    --fonte-regular: 'Regular';
    --fonte-medium: 'Medium';  
    --fonte-light: 'Light';
    --fonte-extralight: 'Extra-Light';
    --fonte-extrabold: 'Extra-Bold';
    --fonte-bold: 'Bold';
    --fonte-black: 'Black';
}


/*------------------------------------------ HEAD ------------------------------------------*/
html{
    width: 100%;
    height: 100%;
    margin: 0;
}body{
    margin: 0;
    width: 100%;
    min-height: 100%;
    height: auto;
}*{
    font-family: var(--fonte-medium);

}#header{
    background-color: var(--branco);
    width: 100%;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 1%;
    }#content-header{    
        width: 60%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        }#link-home{
            display: flex;
            justify-content: center;
            align-items: center;  
            }#logo-camara{
                max-width: 300px;
                max-height: 200px;
                width: auto;
                height: auto;

}#title{
    margin: 2% auto 2% auto;
    width: 92%;
    padding: 0;
    }#title > h2 > a{
        text-decoration: none;
        margin: 0;
        padding: 0;
        font-family: var(--fonte-bold);
        font-style: italic;
        color: var(--verde-escuro);
        transition-duration: 0.5s;
        }#title > h2 > a:hover{
            color: var(--verde-oficial);
    }#title > h2{
        margin: 0;
        padding: 0;
        font-size: 0.8em;
        font-family: var(--fonte-bold);
        font-style: italic;
        color: var(--verde-escuro);

}#nav-bar{
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--verde-oficial);
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-bottom: solid 4px var(--amarelo);
    }#menu-bars{
        display: none;
    }#menu-title{
        display: none;
    }#nav-links{
        width: 70%;
        height: max-content;
        display: flex;
        flex-direction: row;
        justify-content: center;
        }#nav-links > a{
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            font-family: var(--fonte-bold);
            text-decoration: none;
            font-size: 0.8em;
            text-align: center;
            width: 100%;
            padding: 0.8% 0;
            transition-duration: 0.8s;
            }#nav-docs{
                margin: 0;
                }#i-nav-doc{
                    margin: 0 0 2% 2%;
                    transition-duration: 0.5s;
                    }#nav-docs:hover #i-nav-doc{
                        rotate: 180deg;
                }#doc-opt{
                    position: absolute;
                    display: none;
                    transition-duration: 0.5s;
                    width: 20%;
                    padding: 1% 1% 0 1%;
                    z-index: 10;
                    border-bottom-right-radius: 0.5em;
                    border-bottom-left-radius: 0.5em;
                    background-color: var(--verde-alternativo);
                    top: 100%;
                    }#doc-ul{
                        list-style: none;
                        padding: 0;
                        color: var(--branco);
                        }.ul-hr{
                            color: rgb(255, 255, 255, 80%);
                            margin: 0.5% 0 0.5% 0;
                            }.li-a{
                                display: block;
                                border-radius: 10px;
                                padding: 2%;
                                font-family: var(--fonte-semibold);
                                text-decoration: none;
                                color: var(--branco);
                                transition-duration: 0.5s;
                                }.doc-li:hover .li-a{
                                    background-color: var(--verde-escuro);
                                    color: white;
                    }#doc-opt > a{
                        text-decoration: none;
                        background-color: var(--verde-oficial);
                        margin-bottom: 5%;
                        padding: 2.5%;
                        border-radius: 0.4em;
                        color: var(--branco);
                        font-family: var(--fonte-regular);
                        font-style: italic;

            }#nav-docs:hover + #doc-opt, #doc-opt:hover{
                display: block;
            }#nav-links > a:hover{
                background-color: var(--verde-alternativo);
            }#nav-links > a:active{
                opacity: 70%;


/*------------------------------------------ FOOT ------------------------------------------*/
}#footer{
    background-color: var(--verde-escuro);
    margin-bottom: 0;
    color: var(--branco);
    padding: 2% 10% 2% 10%;
    width: 100%;
    height: max-content;
     border-bottom: solid 3px var(--amarelo);
    }#content-foot{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 3%;
        }#foot1{
            width: 30%;
            }#content-foot1{
                text-align: start;
                width: 100%;
            }#content-foot1 > h1{
                font-family: var(--fonte-bold);
            }#atendimento, #dados{
                font-family: var(--fonte-semibold);
                font-size: 1.1em;
                }#loc{
                    font-size: 1.3em;
                    font-family: var(--fonte-extrabold);
                    color: var(--branco);
                    text-decoration: none;
                    transition-duration: 0.5s;
                }#num-cam{
                    text-decoration: none;
                    color: var(--branco);
                    transition-duration: 0.5s;
                    }#loc:hover{
                        opacity: 0.5;
                    }#num-cam:hover{
                        opacity: 0.5;
                }#send-email{
                    background-color: var(--amarelo);
                    padding: 2%;
                    text-decoration: none;
                    color: var(--verde-escuro);
                    font-family: var(--fonte-bold);
                    font-size: 1em;
                    transition-duration: 0.5s;
                    border-radius: 0.5em;
                    }#send-email > i{
                        margin-right: 5%;
                    }#send-email:hover {
                        border: none;
                        box-shadow: 5px 5px rgb(0, 0, 0, 20%);
                        color: var(--verde-oficial);
                    }#logo-foot > img{
                        background-color: var(--branco);
                        border: solid 3px var(--amarelo);
                        border-radius: 1em;
                        padding: 2%;
                        max-width: 300px;
                        max-height: 200px;
                        width: auto;
                        height: auto;
                
        }#foot2{
            text-align: start;
            width: 30%;
            }#foot2 > h1{
                font-family: var(--fonte-bold);
            }.lk-foot2{
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: start;
                height: fit-content;
                font-family: var(--fonte-semibold);
                transition-duration: 0.5s;
                padding: 1%;
                margin-bottom: 2%;
                background-color: var(--verde-alternativo);
                border-radius: 20px;
                text-decoration: none;
                color: var(--branco);
                }.p-lk-foot2{
                    width: 90%;
                    height: fit-content;
                    font-size: 1.2em;
                    padding: 0;
                    margin: 1% 0 0 0;
                }.lk-foot2-i{
                    width: 10%;
                }.lk-foot2:hover{
                    color: var(--amarelo);
                    transform: scale(1.03);
                }.lk-foot2 > i:hover{
                    color: var(--verde-oficial);
                
        }#foot3{
            text-align: start;
            width: 30%;
            }#ms-div-container{
                display: flex;
                width: 100%;
                }.ms-div{
                    width: 50%;
                }.ms-div > h2{
                    font-size: 1.3em;
                    font-family: var(--fonte-bold);
                    margin: 5% 0 5% 0;
            }#foot3 > h1{
                font-family: var(--fonte-bold);
            }.lk-foot3{
                font-family: var(--fonte-regular);
                font-size: 1em;
                transition-duration: 0.5s;
                text-decoration: underline;
                color: var(--branco);
                }.lk-foot3:hover{
                    color: var(--verde-oficial);

            
    }#foot4{
        background-color: var(--branco);
        font-size: smaller;
        width: 100%;
        height: 5%;
        text-align: center;
        }#copyright{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: max-content;
            padding: 0;
            margin: 0;
            }.copy-div{
                width: 50%;
            }#copy-txt{
                font-family: var(--fonte-semibold);
                padding: 0.4% 0 0.3% 0;
            }#copy-brand{
                width: 100%;
                overflow: hidden;
                background: RGB(255, 188, 25);
                background: linear-gradient(50deg,rgba(255, 188, 25, 1) 0%, rgba(176, 126, 0, 1) 3%, rgba(122, 84, 1, 1) 7%, rgba(87, 61, 0, 1) 10%, rgba(66, 47, 1, 1) 14%, rgba(0, 0, 0, 1) 35%);
                }#copy-brand > img{
                    color: var(--branco);
                    padding: 0.5%;
                    max-width: 28%;
                    width: auto;
                    height: auto;
                }


/*----------------------------------- Media Query -------------------------------*/

@media (min-width: 0px) and (max-width: 576px) {

    html{
        width: 100%;
        height: 100%;
        margin: 0;

    }body{
        margin: 0;
        width: 100%;
        height: 100%;
    
    }#header{
        height: min-content;
        padding: 2%;
        }#logo-camara{
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto; 
    
    }#nav-bar{
        display: block;
        position: relative;
        background-color: var(--verde-escuro);
        width: 100%;
        height: min-content;
        padding: 1%;
        }#bt-menu-bars{
            display: flex;
            justify-content: end;
            align-items: center;
            width: 100%;
            cursor: pointer;
            }#menu-title{
                display: block;
                margin: 1% 0 0% 2%;
                color: var(--branco);
                font-size: 1.2em;
                font-family: var(--fonte-bold);
            }#menu-bars{
                transition-duration: 0.5s;
                display: block;
                padding: 3%;
                color: var(--branco);
        }#nav-links{
            display: none;
            width: 100%;
            }#nav-links > a{
                padding: 3%;
                border: solid 1px var(--verde-alternativo);
                }#nav-docs{
                    margin: 0;
                    }#i-nav-doc{
                        rotate: 180deg;
                        margin: 0 0 2% 2%;
                    }#doc-opt{
                        position: static;
                        display: block;
                        width: 100%;
                        }#doc-ul{
                            list-style: none;
                            }.ul-hr{
                                margin: 1%;
                            }.doc-li{
                                background-color: var(--verde-alternativo);
                                }.li-a{
                                    display: block;
                                    padding: 0.5% 5%;
                                    }.doc-li:hover .li-a{
                                        background-color: var(--verde-alternativo);
                                        color: white;
                }#nav-links > a:hover{
                    background-color: var(--verde-escuro);


    }#footer{
        padding: 5% 0 5% 0;
        width: 100%;
        }#content-foot{
            display: block;
            width: 100%;
            margin: 0;
            }#foot1{
                width: 100%;
                margin: auto;
                }#content-foot1{
                    text-align: center;
                    margin: auto;
                    width: 100%;
                    }#content-foot1 > h1{
                        font-family: var(--fonte-bold);
                        font-size: 2em;
                        margin: 0;
                    }#dados{
                        width: 100%;
                        }#loc{
                            font-size: 1em;
                        }#logo-foot > img{
                            max-width: 250px;
                            max-height: 150px;
                            width: auto;
                            height: auto;
                    }#atendimento{
                        margin: 0;
                        

            }#foot2{
                display: block;
                width: 90%;
                margin: 0 auto 10% auto;
                text-align: center;
                }#foot2 > h1{
                    margin: 0;
                }#foot2-lks{
                    display: flex;
                    justify-content: space-between;
                    margin: auto;
                    width: 100%;
                    padding: 0 0%;
                    }.lk-foot2{
                        margin: 0;
                        padding: 3%;
                        background-color: var(--verde-escuro);
                    }.lk-foot2-i{
                        width: auto;
                        max-width: 100%;
                }#foot2 > h1{
                    font-size: 2em;
                }.p-lk-foot2{
                    display: none;
                }.lk-foot2:hover{
                    color: var(--branco);
                    transform: scale(1);
            }#foot3{
                display: none;  

            }#foot4{
                width: 100%;
                text-align: start;
                padding: 0;     
                }#copyright{
                    width: 100%;
                    text-align: center;
                    padding: 0;
                    margin: 0;
                    }#copy-txt{
                        padding: 1%;
                        font-size: 0.8em;
                        width: 100%;
                    }#copy-brand > img{
                        padding: 3% 5%;
                        max-width: 70%;
                        width: auto;
                        height: auto;
                    }
                
}