*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 1.2rem;
    list-style: none;

}

body.dark {
    background-color:black;
    color: white;
    
}

header.darks{
    background-color: green;
    color: white;

}


.logo{
    transition:900ms;
    
}

.logo:hover{
    transform: rotate3d(0, 1, 0, 360deg);
}

header{
    position: fixed;
    background-color: #044dbd;
    width: 100%;
    height: 60px;    
    border-bottom: 3px black solid;
    display: flex;
    align-items: center;
    justify-content: center;    
    perspective: 800px;
    top: 0;

}



li a{
    color: white;
    text-decoration: none;
   
}


.logo{
    height: 100%;
    width: 30%;
    display: flex;
    justify-content: center;
        
}

img{
    height: 100%;
    width: auto;
}


menu{
    
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    box-sizing: border-box;
}

menu ul{
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: all ease-in-out 300ms;
    font-size: inherit;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    position: relative;
    gap: 50px;
    
}  


menu ul li a{
border-radius: 10px;
transition: all 0.3s ease;
padding: 3px 10px;

}

menu ul li a.actived{
    background-color: rgb(194, 194, 194);
    color: #044dbd;
    
}



.botao-tema {
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.checkbox {
    cursor: pointer;
    position: absolute;
    opacity: 0;
}

.tema {
    border-radius: 25px;
    height: 30px;
    width: 59px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(0, 0, 0);
    gap: 5px;
    padding: 4px;
    transform: scale(1);
    position: relative;
    
}

.tema .claro-escuro {
    cursor: pointer;
    height: 25px;   
    width: 25px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    transform: translateX(0px);
    transition: transform 0.2s linear;
}

.checkbox:checked + .tema .claro-escuro {
    transform: translateX(26px);
}


.wpp{
    
    width:20%;
    height: 10%;
    position: fixed;
    z-index: 9999998;
    bottom: 25px; 
    right: 50px;

}

.whatsapp{
    height: auto;
    width: 100%;
}

footer{
    height: 30vh;
    width: 100%;
    justify-content: right;
    box-shadow: 3px, 5px, 20px, 5px;
    bottom: 0px;
    
   
}

.contato{
    display: flex;
    height: 30vh;
    width: 100%;
    margin-bottom: 10px;
}

.endereco{
    margin-left: 20px;
    margin-right: 20px;
    height: 100%;
    width: 50%;

}

.r-social{
    margin-left: 20px;
    margin-right: 20px;
    border-left: 2px solid black;
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    
    align-items: center;
}

.icon{
    height: 50%;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-around

}

.r-social img{
    scale: 0.6;
}

.container_final{
    color: white;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #044dbd; 
    height: 45px;
    width: 100%;
    border-top: 2px solid black;
    bottom: 0px;
    
}



