/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 22 de set. de 2022, 20:07:57
    Author     : Lima
*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*CABEÇALHO*/
ul{
    margin: 0px;
    padding: 0px;
}
a{
    color: #006600;
    text-decoration: none;
    font-family: Times;
    font-weight: bold;
}
a:hover{
    background: rgba(0,0,0,0.05);
}
#header{
    position: relative;
    box-sizing: border-box;
    height: 16vh; /*80px*/
    width: 90vw;
    padding: 1rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;/*#009966;*/
    border-radius: 0px 0px 10px 10px;
    /*background-image: url("img/casinhaSerra.jpeg");
    background-image: linear-gradient(292deg, lightgray, transparent);*/
    box-shadow: 0px 0px 2px #b8bbb7;
}
#logo{
    position: absolute;
    top: 0vh;
    left: 1vw;
    width: 254px;   /*250px;*/
    height: 102px;   /*70px;*/
}
#frmBuscarHead{
    height: 70px;
    padding: 20px;
    z-index: 999;
}
#frmBuscarHead #buscarHead{
    border-radius: 10px;
    height: 40px;
    font-weight: bold;
    /*background-color: #eee;*/
    background-image: url(img/icons8-pesquisar-64.png);
    background-position: 98% 0;
    background-repeat: no-repeat;
    background-size: 35px;
    cursor: pointer;
    box-shadow: 5px 5px 5px #aaa;
    padding: 5px 10px;;
    border: none;
}

#buscarHead img{
    opacity: .2;
}
#btnBuscarHead{
    display: none;
    margin-left: -4px;
    margin-top: 30px;
    background-color: white;
    /*width: 44px;
    height: 40px;
    background-image: url(../img/icons8-pesquisar-64.png);
    background-position: 3px 0px;
    background-repeat: no-repeat;*/
    font-weight: bold;
    border: none;
    cursor: pointer;
}
#btnBuscarHead img{
    width: 40px;
    height: 25px;
}

#menu{
    /*display: flex;*/
    display: block;
    position: absolute;
    list-style: none;
    width: 380px;
    top: 15vh;
    right: 0px;
    background: #d8d8c6;
    transition: 0.6s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
}
#menu a{
    display: block;
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    transition: all .5s ease;
}
#menu a:hover{
    background-color: green;
    color: white;
    padding: 20px;
    box-shadow: 0 0 10px black;
}
#btn-mobile{
    /*display: none;*/
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
}
#btn-mobile:hover{
    background: green;
    color: white;
    border-radius: 4px;
}
#nav.active #menu{
    height: calc(100vh - 15vh);
    visibility: visible;
    overflow-y: auto;
    margin-right: 5px;
}
#hamburger{
    border-top: 2px solid;
    width: 20px;
}
#hamburger::after,
#hamburger::before{
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
}
#nav.active #hamburger{
    border-top-color: transparent;
}
#nav.active #hamburger::before{
    transform: rotate(135deg);
}
#nav.active #hamburger::after{
    transform: rotate(-135deg);
    top: -7px;
}
.img-icons-menu-home{
    vertical-align: middle;
    margin-right: 15px;
    height: 48px;
    width: 48px;
    border-radius: 40%;
    padding: 4px;
    opacity: .4;
}

/*FIM DO CABEÇALHO*/
/* RODAPÉ */
#rodape{
    position: relative;
    text-align: right;
    /*background-color: red;
    float: bottom;*/
    display: flex;
    width: 90vw;
    height: 150px;
    margin: 0px auto;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0px 0px 2px #b8bbb7;
}
#rodape img{
    position: absolute;
    width: 254px;
    height: 86px;
    top: 22px;
    right: 12px;
}
