@charset "UTF-8";

input#caixa-pesquisa{
    cursor: text;
    background-color: var(--fundo-verde);
    padding: 10px;
    border-radius: 5px;
    width: 500px;
}

.container{
    display: flex;
    flex-flow: row nowrap;
}

aside.filtros{
    margin-top: 20px;
    border: 1px solid black;
    padding: 20px;
    border-radius: 5px;
    background-color: var(--verde-principal);
    color: white;
}


.filtros-grupo label {
    display: block; 
    margin: 5px 0; 
}

aside.filtros > h2{
    margin-bottom: 10px;
    font-family: "Edu NSW ACT Cursive", cursive;
}

aside.filtros > .limpar-filtro{
    background-color: red;
    color: white;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 5px;
}

aside.filtros > .limpar-filtro:hover{
    background-color: white;
    color: red;
}

aside.filtros > section > h3{
    margin-bottom: 10px;
}

aside.filtros > div{
    width: 250px;
    margin-bottom: 30px;
    background-color: var(--fundo-claro);
    padding: 10px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.418);
    border: 1px solid black;
    border-radius: 5px;
    color: black;
}

aside.filtros > div > label, input{
    cursor: pointer;
    accent-color: green;
}

section#tutoriais{
    width: 80%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

article.tutorial{
    display: none;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background-color: var(--fundo-verde);
    padding: 10px;
    border: 1px solid black;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.418);
    border-radius: 5px;
    margin: 20px;
    height: 480px;
}

article.tutorial > h3{
    font-family: "Edu NSW ACT Cursive", cursive;
    margin-bottom: 5px;
    text-align: center;
}

div#buttons{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

div#buttons > .link-video{
    padding: 10px;
    background-color: var(--verde-principal);
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

div#buttons > .link-video:hover{
    background-color: var(--fundo-claro);
    color: var(--verde-principal);
}

div#buttons > .youtube{
    margin-left: 10px;
    background-color: red;
    border: 1px solid black;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

div#buttons > .youtube:hover{
    background-color: white;
    color: red;
}
