html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html, body {
    line-height: 1;
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    box-sizing: border-box;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
header {
    background: #4c2508;
    border-radius: 0 0 60px 60px;
    padding: 10px 30px;
    text-align: center;
    position: fixed;
    width: 100%;
    z-index: 999;
    box-sizing: border-box;
}
main{
    box-sizing: border-box;
}
.slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 0; /* muda de -1 para 0 */
}

/* camada temporária criada pelo jQuery */
.slideshow .fade-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 2;
  transition: opacity 1s ease-in-out;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ff6602;
    padding: 20px;
    z-index: 999;
    box-sizing: border-box;
}
footer .container{
    width: 1024px;
    margin: 0 auto;
}
footer .container ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
footer .container li{
    
}
footer .container li a{
    color:#4c2508;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
      font-optical-sizing: auto;
      font-weight: <weight>;
      font-style: normal;
}
footer .container li a img{
    width: 38px;
    margin: 0 5px 0 0;
}


@media only screen and (max-width: 600px) {
    header h1 img{
        width: 80%;
    }
    footer {
        padding: 20px 0;
    }
    footer .container ul {
        display: flex;
        flex-direction: column;
    }
    footer .container {
        width: 90%;
    }
    footer .container li {
        margin: 0 0 10px 0;
    }
    footer .container li a {
        font-size: 17px;
    }
}