/*
    Folha de estilo do site one page HTML5 e CSS3
    @ author Prof Jose de Assis ***
    joseassis.com.br
*/

/* Importação Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');

/* CSS resset */
* {
    margin: 0;
    border: 0;
    padding: 0;
}

body {
    /* font-family: "Funnel Display", sans-serif; */
    font-family: "Playwrite NO", cursive;
    font-size: 1em;
}

/* Layout */
.container {
    margin: 0 auto;    
    background-color: #dcdcdc;    
}

.flex {
    display: flex;
    justify-content: space-between;
    background-color: #a9a9a9;
}

/* topo do site - botao TOPO PAGINA */ 
#topo {
    position: fixed;
    right: 10px;
    bottom: 10px;
}

/* Smartphone Portrait >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* cabecalho */
header {
    height: 60px;
}
#logo img {
    width: 68px;
    height: 68px;
}
#check {
    display: none;
}
label {
    font-size: 3em;
    padding-right: 15px;   
}
nav ul {
    list-style: none;    
    background-color: #343538;
    height: 100vh;
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    transition: 0.5s;
}
#check:checked ~ ul {
    right: 0%;
}

nav ul li {
    padding: 20px;
    border-bottom: 1px solid #a9a9a9;
}
nav ul li a {
    text-decoration: none;
    color: #fff;
}

/* Smartphone Landscape >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
@media (min-width: 576px) {
    /* body { */
    /* background-color: #00ffff; */
    /* } */    

    /* Layout */
    .container {
        max-width: 540px;
    }
} 
/* Tablet Portrait >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
@media (min-width: 768px) {
    /* body {  */
    /* background-color: #ffff00;  */
    /* }  */

    /* Layout */
    .container {
        max-width: 720px;
    }    
}
/* Tablet Landscape >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
@media (min-width: 992px) {
    /* body{ */
    /* background-color: #ff6600; */
    /* } */

    /* Layout */
    .container {
        max-width: 960px;
    }    
}
/* PC computador >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
@media (min-width: 1200px) {
    /* body{ */
    /* background-color: #ff0000; */
    /* } */

    /* Layout */
    .container {
        max-width: 1140px;
    }    

    /* cabecalho */
    header {
        height: 120px;        
    }
    #logo img {
        width: 89px;
        height: 89px;
        margin-top: 30px;
    }
    label {
        display: none;
    }
    nav ul {
        position: static;
        height: auto;
        background-color: transparent;
        margin-top: 50px;
    }
    nav ul li {
        float: left;
        border: 0px;
    }
    nav ul li a {
        color: #343538;
    }
    nav ul li a:hover {
        color: #c00000;
    }

}

