*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
  scroll-behavior: smooth;
}

/*Cabeçalhos das páginas*/
.header-container{
  height: 110px;
  width: auto;
  box-sizing: border-box;
  text-align: right;
  display: flex;
  background-color: #002752;
}
.header-logo{
  width: 20%;
}

.img-content {
  height: auto;
}

.header-main{
  box-sizing: border-box;
  text-align: center;
  font-family: "Tilt Neon", cursive;
  width: 80%;

}
.header-title{
  text-transform: uppercase;
  color: #fefef0;
  font-size: 50px;
  text-shadow: #0f0f0f 4px 3px 3px;

}
.header-subtitle{
  color: #fefef0;
  font-size: 16px;
  text-shadow: #0f0f0f 1px 1px 1px;

}
.header-contact{
  width: 20%;
  background-color: #002752;
  color: #fefef0;
  text-align: center;
  float: right;
  padding: 1%;
  height: auto;
}

.img-link{
  width: 30px;
  height: auto;
}

/*Main - comandos do Main*/
.main-container {
  /*width: 100%;*/
  max-width: none;
  grid-auto-rows: minmax(100px, auto);
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  grid-template-areas: "main-section main-center main-menu";
  flex: 1 0 auto;
  gap: 5px;
  font-family: "Comfortaa", cursive;
  padding: 1% 0 1% 0;

}
.main-section {
  color: #002752;
  background-color: #b8daff;
  border: 1px solid transparent;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/
  gap: 10px;
  grid-area: main-section;
  padding-bottom: 1%;
  width: 100%;
}
.apresentation {
  margin: 1%;
  width: 75%;
}
.apresentation li {
  padding-top: 1%;
  list-style-type: none;
}
.formation {
  padding-top: 1%;
}
.formation h3 {
  font-size: 20px;
}
.formation h4 {
  font-size: 17px;
}
.graduation {
  padding-top: 1%;
  margin: 2%;
}
.freeCourses {
  padding-top: 2%;
  margin: 1%;
}
.contentCourses {
  margin: 1%;
}
.contentCourses li {
  list-style-type: none;
  margin: 2%;
}
/*Main - coluna do centro*/
.main-center{
background-color: #b8daff;
border: 1px solid transparent;
border-radius: 10px;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px;
grid-area: main-center;
padding-bottom: 0.2rem;
padding-top: 0.2rem;
/*width: 100%;*/
text-align: center;
}

.input-data {
  border: 2px solid #0f62cf;
  border-radius: 10px;
  font-size: 30px;
  width: 25%;
  text-align: center;
}
.title-left {
  color: #002752;
  text-align: center;
}

.mumuv-ol{
  /*list-style-type: disc;*/
  margin-left: 5%;
}

.grid-output {
  display: grid;
  grid-direction: row;
  grid-template-rows: auto;
  /*border: 3px solid #008ffb;*/
  border-radius: 10px;
  padding: 2%;
}

/*Menu Lateral Direito*/
.main-menu {
  background-color: #0f62cf;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: "Sono", sans-serif;
  color: white;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  grid-area: main-menu;
}
.list-menu {
  color: #fffff0;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 3px;
  text-align: center;
  transition: 0.5ms;
  cursor: pointer;
}
.list-menu a {
  text-decoration: none;
  color: #fffff0;
}
.list-menu:hover {
  /*color: #39F3d7;*/
  border-color: #b8daff;
  background-color: #002752;
}
.list-menu a:hover {
  color: #fffff0;
}

footer {
  font-family: Arial;
  font-size: 14px;
  color: #39f3d7;
  text-shadow: #0f0f0f 1px 1px 1px;
  text-align: center;
  background-color: #313131;
  padding: 3px;
  text-transform: uppercase;
}
/*.nav-footer {*/
/*  box-sizing: border-box;*/
/*  text-align: center;*/
/*}*/
/*.nav-footer li {*/
/*  display: inline-block;*/
/*  color: #fffff0;*/
/*}*/
.nav-footer a {
  letter-spacing: 2px;
  transition: color 0.2s linear;
}
.nav-footer a:link {
  text-decoration: none;
  color: #fefef0;
}
.nav-footer a:visited {
  color: #fefef0;
}
.nav-footer a:hover {
  color: #0dfaf5;
}

/*Buttons*/
.button {
  border-width: 2px;
  border-radius: 5px;
  border: 1px solid #f0f0f1;
  padding: 0.350rem 0.65rem;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  line-height: 1.5;
  user-select: none;
  transition: 0.5ms all;
  cursor: pointer;
  font-size: 14px;
}
.button:active {
  transform: scale(0.98);
  /*box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.35);*/
}
.button-primary {
  background-color: #0d6efd;
  color: #f0f0f0;
  transition: 0.5ms;
  cursor: pointer;
}
.button-danger {
  background-color: #a70a12;
  color: #f0f0f0;
  transition: 0.5ms;
  cursor: pointer;
}
.button-return {
  background-color: #222f94;
  color: #f0f0f1;
}


/*Responsability*/
@media(max-width: 720px){
  .header-container {
    height: 100px;
  }
  .header-title{
    font-size: 45px;
  }
  .header-subtitle{
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .header-container {
    height: 90px;
  }
  .header-title{
    font-size: 40px;
  }
  .header-subtitle{
    font-size: 13px;
  }
  .img-link{
    width: 20px;
    height: auto;
  }

  /*!*Main - contenúdo principal*!*/
  .main-container {
    /*display: grid;*/
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "main-section main-menu";
    flex: 1 0 auto;
    gap: 2px;
  }

  .main-section {
    border: 1px solid transparent;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    grid-area: main-section;
    padding-bottom: 1%;
    width: 100%;
  }

  #name-title {
    font-size: 18px;
  }

  .main-list {
    font-size: 14px;
  }
  .formation h3 {
    font-size: 15px;
  }
  .formation h4 {
    font-size: 13px;
  }
  #formation-title {
    font-size: 16px;
  }

  .contentCourses {
    font-size: 12px;
  }

  #courses-title {
    font-size: 14px;
  }

  /*Menu Lateral Direito*/
  .main-menu {
    min-width: 160px;
    grid-area: main-menu;
  }
  .title-menu h3{
    font-size: 12px;
  }
  .list-menu{
    font-size: 10px;
  }

  /*  footer */
  footer{
    font-size: 10px;
  }
}

@media(max-width: 560px){
  .header-container {
    height: 80px;
  }
  .header-title{
    font-size: 35px;
  }
  .header-subtitle{
    font-size: 12px;
  }
  .img-link{
    width: 20px;
    height: auto;
  }
}

@media (max-width: 488px) {
  .header-container {
    height: 70px;
  }
  .header-title{
    font-size: 30px;
  }
  .header-subtitle{
    font-size: 9px;
  }
  .img-link{
    width: 17px;
    height: auto;
  }
  /*!*Main - contenúdo principal*!*/
  .main-container {
    /*display: grid;*/
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "main-section main-menu";
    flex: 1 0 auto;
    gap: 1px;
  }
  .main-section {
    border: 1px solid transparent;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    grid-area: main-section;
    padding-bottom: 1%;
    width: 100%;
  }
  .formation h3 {
    font-size: 12px;
  }
  .formation h4 {
    font-size: 10px;
  }
  #name-title{
    font-size: 13px;
  }
  .main-list{
    font-size: 11px;
  }
  #formation-title{
    font-size: 12px;
  }
  .contentCourses{
    font-size: 10px;
  }
  #courses-title{
    font-size: 10px;
  }
  /*Menu Lateral Direito*/
  .main-menu {
    min-width: 120px;
    grid-area: main-menu;
  }
  .title-menu h3{
    font-size: 11px;
  }
  .list-menu{
    font-size: 9px;
  }
}
/* fim do arquivo */
