@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

@font-face {
  font-family: "Android";
  src: url("/fontes/idroid.otf") format("opentype");
}

:root {
  --mycolor0: #ffffff;
  --mycolor1: #60d67e;
  --mycolor2: #6aac7a;
  --mycolor3: #65816c;
  --mycolor4: #4a574d;
  --mycolor5: #1a3321;
  --mycolor6: #000000;

  --font-padrao: Arial, verdana, Helvetica, Sans-serif;
  --font-destaque: "Bebas Neue", Arial;
  --font-android: "Android", Arial;
}

* {
  margin: 0px;
  padding: 0px;
}

body {
  background-color: var(--mycolor2);
  font-family: var(--font-padrao);
}

a.externo::after {
  content: "\00A0\1F517";
}

header {
  background-image: linear-gradient(
    to bottom,
    var(--mycolor2),
    var(--mycolor5)
  );
  background-color: var(--mycolor4);
  font-family: var(--font-destaque);
  min-height: 150px;
  text-align: center;
  padding-top: 30px;
}

header > h1 {
  color: var(--mycolor0);
  font-family: var(--font-destaque);
  margin-bottom: 20px;
  font-size: 3em;
}

header > p {
  color: var(--mycolor0);
  font-family: var(--font-padrao);
  font-size: 0.8em;
  max-width: 500px;
  margin: auto;
  padding: 10px;
  padding-bottom: 20px;
}

nav {
  background-color: var(--mycolor5);
  padding: 10px;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
}

nav > a {
  color: var(--mycolor0);
  padding: 10px;
  text-decoration: none;
  transition-duration: 0.3s;
}

nav > a:hover {
  background-color: var(--mycolor2);
  color: var(--mycolor5);
  font-weight: bold;
  border-radius: 5px;
}

main {
  background-color: var(--mycolor0);
  min-width: 300px;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 10px;
  padding: 0px 20px 5px 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.589);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

main img {
  width: 100%;
}

main h1 {
  color: var(--mycolor5);
  font-family: var(--font-android);
  padding: 20px 0px 20px 0px;
  font-size: 3em;
  margin: auto;
  text-align: center;
}

main h2 {
  color: var(--mycolor5);
  font-family: var(--font-destaque);
  font-size: 2em;
  text-indent: 8px;
  background-image: linear-gradient(to right, var(--mycolor2), transparent);
  padding: 10px;
}

main p {
  margin: 15px 0px 15px 0px;
  text-align: justify;
  text-indent: 20px;
  font-size: 1em;
  line-height: 1.8em; /*espaçamento entre linhas*/
}

main strong {
  color: var(--mycolor4);
  font-weight: bold;
}

main a {
  color: var(--mycolor4);
  text-decoration: none;
  font-weight: bold;
}

main a:hover {
  text-decoration: underline;
  color: var(--mycolor5);
}

div.video {
  background-color: var(--mycolor1);
  margin: 0px -20px 30px -20px;
  padding: 20px;
  padding-bottom: 59.2%;
  position: relative;
}

div.video > iframe {
  position: absolute;
  top: 5%;
  left: 3%;
  width: 94%;
  height: 90%;
}

aside {
  background-color: var(--mycolor2);
  padding: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.589);
}

aside > h3 {
  background-color: var(--mycolor5);
  color: var(--mycolor0);
  padding: 10px;
  margin: -10px -10px 0px -10px;
  font-size: 1em;
}

aside > ul {
  list-style-type: "\00A0\00A0\00A0\00A0\2714\00A0\00A0";
  list-style-position: inside;
  line-height: 1.5em;
}

aside > ul > li > abbr {
  text-decoration: none;
}

aside > ul > li > abbr:hover {
  color: var(--mycolor5);
  font-weight: bold;
}

footer {
  background-color: var(--mycolor6);
  color: var(--mycolor0);
  text-align: center;
  font-size: 0.7em;
  padding: 10px 10px 10px 10px;
}

footer a {
  color: var(--mycolor0);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  color: var(--mycolor1);
}
