@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --laranja: #FA9E32;
    --fonte: "Raleway";
    --cinza: #666666;
    --cinza-claro: #c0c0c0;
    --preto: #333333;
}


*{
	margin: 0px;
	padding: 0px;
	font-family: "Raleway";
}

html, body {
    height: 100%;
    margin: 0;
}

::-webkit-scrollbar {
    width: 5px;
}


::-webkit-scrollbar-track {
    background: #f1f1f1; 
}


::-webkit-scrollbar-thumb {
    background: #888; 
}


::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

/* ===================== MAIN ======================= */

body {
	background-color: #f7f7f7;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

main .menu{
	max-width: 1000px;
    width: 100%;
    display: flex;
	flex-direction: column;
	margin: 40px auto; 
	width: 100%; 
	max-width: 1000px;
}

#menu-titulo{
	font-weight: 500;
	color: #606060;
	margin-bottom: 100px;
}

.categorias{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 2px;
}

#menu-imagens{
	width: 150px;
	height: 120px;
	text-align: center;
	display: flex;
	justify-content: center;
	text-decoration: none;
	color: #606060;
	transition: color 0.1s ease;
}

#menu-imagens:hover{
	color: orange;
}

.menu-links{
	display: flex;
	flex-direction: column;
	margin: 5px 0px 5px 0px;
}
/* ===================== FIM DO MAIN ======================= */
/* ===================== FOOTER ======================= */

footer {
    background-color: #FFFFFF;
    text-align: center;
    padding: 20px; 
}

.quem-somos {
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto; 
	text-align: left;
}

.titulo-footers {
    font-weight: 250;
    color: #606060;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 25px;
}

#titulo-footer {
    font-size: 40px;
}

.conteudo-footer {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto; 
	text-align: left;
}

.conteudo {
    width: 390px;
    margin-bottom: 20px; 
}

.conteudo-titulo {
    font-weight: bolder;
    font-size: 20px;
    margin-bottom: 10px;
}

.conteudo-texto {
    font-size: 14px;
}

.conteudo a{
	text-decoration: none;
	color: var(--cinza);
}

.conteudo a:hover{
	text-decoration: underline;
}
	