*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--color-five);
}

:root{
    --color-one:#575757;
    --color-two:#2b2b2b;
    --color-three:#424242;
    --color-four:#949494;
    --color-five:#fff;
}

body{
    background-color: var(--color-one);
}
.dp-clm{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/*FOOTER*/
footer{
    background-color: var(--color-two);
    padding: 20px;
}
.website-navigation-footer-container{
    gap: 20px;
    max-width: 1300px;
    margin: auto;
    padding: 20px;
}
.website-header-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.footer-header{
    font-size: 38px;
    font-weight: bold;
    text-decoration: none;
}
.footer-header:hover{
    color: var(--color-three);
    transition: all 0.2s;
}
.website-navigation-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;

}
.selects{
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 12%;
}
select{
    height: 40px;
    width: 100%;
    background-color: var(--color-two);
    padding: 10px;
    font-size: 14px;
}
small{
    font-size: 15px;
}
.website-navigation-footer-list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
.website-navigation-footer-list > li{
    height: 0px;
    list-style-type: none;
}

.website-navigation-footer-list > li > a{
    text-decoration: none;
}
.website-navigation-footer-list > li > a:hover{
    color: var(--color-three);
    transition: all 0.2s;
}
/*HEADER*/
header{
    width: 100%;
    height: 140px;
    background-color: var(--color-two);
    color: var(--color-five);
}

.cont-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    height: 100%;
    max-width: 1300px;
    padding: 20px;
}

.cont-header > h1 > a{
    text-decoration: none;
    color: var(--color-five);
    font-size: 38px;
}

.cont-header > h1 >a:hover{
    color: var(--color-four);
    transition: all 0.2s;
}
/*SIDEBAR*/
main{
    display: flex;
    flex-direction: row;
    margin: auto;
    background-color: var(--color-three);
    max-width: 1300px;
    height: 100%;
    padding: 20px;
    gap: 20px;
}

.tool-list{
    width: 25%;
}

.tool-list > ul{
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tool-list > ul > li{
    list-style-type: none;
    width: 100%;
    font-size: 16px;
    height: 60px;
    padding: 10px;
}

.theme{
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--color-five);
    border-bottom: 1px solid var(--color-five);
    background-color: var(--color-one);
}

.tool-name{
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid var(--color-three);
    background-color: var(--color-two);
}

.tool-list > ul > li > a{
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    height: 100%;
    width: 100%;
    color: var(--color-five);
}

.tool-list > ul > li > a:hover{
    color: var(--color-four);
    transition: all 0.2s;
}
/*CONTENT*/
.tool-area{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.slogan-tool{
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.cont-tool{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    background-color: var(--color-one);
    padding: 20px;
}

.tool-function{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tool-function > h1{
    font-size: clamp(25px, 2.5vw, 32px);
}
/*TOOL*/
.calc{
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: var(--color-two);
    color: white;
    height: 100%;
    width: 100%;
    gap: 20px;
}

#input{
    background-color: var(--color-three);
    border: 1px solid white;
    padding: 10px;
    height: 50px;
    text-align: center;
    font-size: 16px;
}

input:focus {
    outline: none;
}

span{
    background-color: var(--color-three);
    color: white;
    border: 1px solid white;
    padding: 10px;
    text-align: center;
    height: 50px;
    font-size: 16px;
}

/*MORE TOOLS*/
.title-more-tools{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    background-color: var(--color-three);
    font-size: clamp(25px, 2.5vw, 25px);
    border-bottom: 1px solid var(--color-five);
}

.more-tools > ul > li{
    list-style-type: none;
    height: 50px;
}

.tool-more-tools{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    color: white;
    text-decoration: none;
    background-color: var(--color-two);
    border-bottom: 1px solid var(--color-one);
    padding: 10px;
}

.tool-more-tools:hover{
    color: var(--color-four);
    transition: all 0.2s;
}
/*MEDIA QUERIES*/
#toggleBtn{
    display: none;
    background-color: transparent;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 30px;
    border: none;
}

@media(max-width:750px){
        .tool-list{
        display: none;
    }
    #toggleBtn{
        display: block;
        cursor: pointer;
    }
    .ativo{
        display: block;
        width: 100vw;
        transition: all 0.2s;
    }
    .desativado{
        display: none;
        transition: all 0.2s;
    }
}

@media(max-width:600px){
    .tool-function > .buttons{
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .buttons > button{
        width: 100%;
    }
}
@media(max-width:800px){
    .website-header-container{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .website-navigation-footer{
        display: flex;   
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    .website-navigation-footer-list{
        width: 100%;
    }
    .website-navigation-footer-list > li{
        height: 30px;
        width: 100%;
        border-bottom: 1px solid var(--color-five);
    }
    .website-navigation-footer-list > li > a{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}
/**/