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, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}

/* FIM DO RESET */

/* INICIO DO HEADER/NAVBAR */
body {
	background-color: rgb(13, 19, 33);
	width: 100%;
  }
  
  .header {
	height: 45px;
	background-color: #0f3460;
  }
  
  h1, h2,
  p {
	color: white;
  }
  
body,
ul,
li {
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  max-width: 100%;
  text-decoration: none;
  color: white;
}
.logo{
  max-height: 50;
  background-color: beige;
  border-radius: 30%;
}
.logoImg {
  max-height: 50px;
}
#compiuter{
  max-height: 40px;
}
.header {
  height: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + h1 {
  padding-top: 90px;
}

#menu {
  display: flex;
}

#menu li {
  margin-left: 15px;
}

#menu li a {
  font-weight: bold;
  display: block;
  padding: 10px 20px;
  background-color: rgb(15, 52, 96);
  color: white;
}
#menu li a:hover {
  transition: 200ms;
  background-color: #0d1321;
}

#btn-mobile {
  display: none;
}

button {
  color: white;
}

#nav {
  padding-right: 25px;
}

@media (max-width: 600px) {
  #menu li a,
  #menu li {
    margin: 0px;
  }

  #btn-mobile {
    display: block;
  }
  #menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0px;
    background-color: #0f3460;
    transition: 0.5s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
  }

  #menu > li{
	max-width: 100vw;
  }

  #menu > li > a {
	display: flex;
	justify-content: flex-end;
  }
  #nav.active #menu {
    height: calc(41.2px * 4);
    visibility: visible;
    overflow-y: auto;
  }
  #menu a {
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  }
  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
  }
  #hamburger {
    color: darkgrey;
    display: block;
    border-top: 2px solid;
    width: 20px;
  }
  #hamburger::after,
  #hamburger::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }
  #nav.active #hamburger {
    border-top-color: transparent;
  }
  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }
  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
}

/* FIM DO HEADER NAVBAR */
p, a, h1, h2, h3, td {
  color: azure;
  font-family: 'Montserrat', sans-serif;
	text-align: left;
}
.linha {
	height: 2px;
  width: 100%;
	border-bottom: 2px solid rgba(240, 255, 255, 0.1);
}
article, section {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.h1titulo {
  color: azure;
	font-size: 30px;
	margin: 15px;
	font-family: 'Montserrat', sans-serif;
	font-weight: lighter;
  text-align: center;
}
p, td {
	padding: 8px 10px;
	font-size: 1.2rem;
	max-width: 95%;
}
#video {
  margin: 10px 0;
}

table {
  margin: 10px 0;
}
tr {
  border-bottom: 1px solid rgba(240, 255, 255, 0.1);
}
td {
  font-size: 1rem;
}
.colEsq {
  max-width: 75vw;
  border-right: 1px solid rgba(240, 255, 255, 0.1);
}
.colDir {
  width: 25%;
}


/* FOOTER */
footer {
  margin-top: auto;
  padding-top: 10px;
  text-align: center;
  bottom: 0;
  width: 100%;
}
#blocoBaixo {
	display: flex;
	background-color: #0f3460;
	padding-top: 30px;
	padding-bottom: 32px;
	justify-content: space-evenly;
	box-shadow: 0px 1px 6px black;
	margin-top: 15px;
}

#blocoBaixo > * {
	max-width: 10%;
}
/* FIM DO FOOTER */
