@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}
/* Scrollbar customizada */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: #40aa0b;
}

/* Cabecalho */
header{
  background: rgba(0, 0, 0, .75);
  height: 4rem;
  width: 100vw;
  color: white;
  position: fixed;
}
header>div{
  height: 100%;
  max-width: 75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
header img{
  height: 40px;
}
header ul{
  list-style: none;
}
header li{
  display: inline-block;
  font-weight: bold;
  padding: 0.7em 1.25em;
  font-size: .875em;
}

/* Banner */
#banner{
  height: 32rem;
  background: url("https://cotemig.com.br/static/banner/desktopimagefull-1650984096573.png");
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
#banner>div{
  width: 75rem;
}
#banner h2{
  font-size: 2.4rem;
  font-weight: 900;
}
#banner p{
  margin: 1em 0 0;
  font-size: 18px;
  line-height: 26px;
}
#banner>div>div{
  width: 28%;
  padding: 1em;
  text-align: center;
  margin-top: 3em;
  font-size: .875em;
  font-weight: 700;
  border-radius: 8px;
  background: #40aa0b;
  cursor: pointer;
}

/* Conteúdo principal */
main{
  max-width: 75rem;
  margin: auto;
}

section>h2{
  font-size: 2.5em;
  padding: 1em 0.5em 0;
  font-weight: 900;
  text-align: center;
  color: #111;
}
section>p{
  font-size: 18px;
  display: block;
  margin: 10px auto 48px;
  max-width: 700px;
  padding: 0 1em;
  line-height: 26px;
  text-align: center;
  color: #424242;
}

/* Cursos */
#cursos{
  display: flex;
  justify-content: space-between;
}
#cursos>div{
  display: flex;
  flex-direction: column;
  width: 18rem;
  border-radius: .75rem;
  overflow: hidden;
}
.horizonltal_curso{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.horizonltal_curso>img{
  height: 40px;
  border-radius: 10px;
  margin: 0 10px;
}

.img_curso{
  height: 11rem;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  color: white;
  margin-bottom: 0.2em;
  font-size: 1.375em;
  font-weight: 900;
  text-align: left;
}
#img_curso1{
  background: url("https://cotemig.com.br/static/courseType/desktopimage-1643903692865.jpg");
  background-size: cover;
  background-position: center;
}

#img_curso2{
  background: url("https://cotemig.com.br/static/courseType/desktopimage-1621255560657.jpg");
  background-size: cover;
  background-position: center;
}

#img_curso3{
  background: url("https://cotemig.com.br/static/courseType/desktopimage-1621252590289.jpg");
  background-size: cover;
  background-position: center;
}

#img_curso4{
  background: url("https://cotemig.com.br/assets/img/banner/automacao-residencial-1140.jpg");
  background-size: cover;
  background-position: center;
}

