@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  background-color: #111727;
  font-family: 'Fira Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

header {
  width: 100%;
  height: 100%;
  /*border: 1px solid #fff;*/
  background-color: #111727;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

header .metadado_side {
  width: 20%;
  height: 7%;
  padding: 25px 0px 30px 100px;
  display: flex;  
  background-color: #111727;
}

header .metadado_side a img {
  width: 130px;
  height: 30px;
}

/*menu*/

header .menu_side {
  position: relative;
  width: 80%;
  height: 10%;
  /*border: 1px solid #fff;*/
  background-color: #111727;
  box-shadow: 5px 0px 2px #090f1f;
  color: #fff;
}

header .menu_side {
  z-index: 2;
}

header .menu_side nav {
  width: 95%;
  height: 80%;
  margin: auto;
  /*border: 1px solid #fff;*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 50px;
}

header .menu_side nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  list-style: none;
}

header .menu_side nav ul li{
  padding: 3px 50px;
}

header .menu_side nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  transition: .3s linear;  
}

header .menu_side nav ul li a:hover {
  color: rgb(220, 214, 150, .7);
}

/*search*/

header .menu_side nav .search {
  position: relative;
  width: 50%;
  padding: 1px 10px;
  border-radius: 20px;
  color: gray;
}

header .menu_side nav .search::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgb(184, 184, 184, .1);
  backdrop-filter: blur(5px);
  z-index: -1;
}

header .menu_side nav .search .bi {
  font-size: 13px;
  padding: 3px 0px 0px 10px;
}

header .menu_side nav .search input {
  background: none;
  outline: none;
  border: none;
  padding: 0px 10px;
  color: #fff;
  font-size: 12px;
  width: 350px;
}

header .menu_side nav .search .search_result {
  position: absolute;
  width: 100%;
  height: 320px;
  /*border: 1px solid #fff;*/
  margin-top: 10px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  overflow: auto;
}

header .menu_side nav .search .search_result::-webkit-scrollbar {
  display: none;
}

header .menu_side nav .search .search_result .card {
  width: 100%;
  min-height: 65px;
  /*border: 1px solid #fff;*/
  display: none;
  align-items: center;
  padding: 0px 5px;
  text-decoration: none;
  background: rgb(255, 255, 255, .3);
  margin-bottom: 7px;
}

header .menu_side nav .search .search_result .card img {
  width: 50px;
  height: 60px;
  border-radius: 5px;
}

header .menu_side nav .search .search_result .card .content {
  width: 80%;
  height: 100%;
  /*border: 1px solid #fff;*/
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: #111727;
  margin-left: 10px;
  margin-top: 15px; 
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 500px;
}

/*header .menu_side nav .search .search_result .card .content {
  width: 80%;
  height: 100%;
  /*border: 1px solid #fff;*/
  /*padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  justify-content: center;
  flex-direction: column;
}*/



header .menu_side nav .search .search_result .card .content .metadado {
  font-size: 11px;
  font-weight: 500;
  color: #111727;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


header .menu_side .content {
  width: 100%;
  height: 90%;
  margin: auto;
  /*border: 1px solid #fff;*/
}

/*header .menu_side .content embed {
  width: 100%;
  height: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
}*/

/* text */

header section {
  /*border: 1px solid #fff;*/
  width: 95%;
  height: 80%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

header section .content{
  /*border: 1px solid #fff;*/
  width: 700px;
  height: 80%;
  padding-left: 60px;
}

header section .content h1 {
  color: #fff;
  font-size: 45px;
  font-weight: 600;
}

header section .content h1 span {
  background: rgb(255, 255, 255);
  color: #111727;
  font-size: 45px;
  font-weight: 200;
  padding: 0px 5px 0px 5px;
}

header section .content h2 {
  color: #fff;
  font-weight: 400;
  font-size: 40px;
  margin-top: 5px;
}

header section .content .subtitle {
  color: gray;
  margin-top: 3px;
  font-size: 15px;
}

header section .content p {
  color: #fff;
  font-size: 20px;
  font-weight: 200;
  margin-top: 20px;
}

header section .content .btns {
  margin-top: 30px;
  display: flex;
  }

header section .content .btns button {
  background: #dcd696;
  border-radius: 5px;
  border: none;
  outline: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #111727;
  transition: all .3s ease-in-out;
  }

header section .content .btns button:hover {
 background: #fff;
 }

header section .content .btns button a {
  text-decoration: none;
  color: #111727;
  }

/* início cards*/

header .cards {
  /*border: 1px solid #fff;*/
  width: 95%;
  height: 33%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
}

header .cards::-webkit-scrollbar {
  height: 7px;
  background: rgb(225, 225, 225, .1);
  border-radius: 3px;
  visibility: hidden;
}

header .cards::-webkit-scrollbar-thumb {
  height: 7px;
  background: rgb(184, 184, 184, .1);
  border-radius: 3px;
  visibility: hidden;
}

header .cards:hover::-webkit-scrollbar {
  visibility: visible;
}

header .cards:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}

header .cards .card {
  position: relative;
  min-width: 175px;
  min-height: 225px;
  /*border: 1px solid #fff;*/
  margin: 0px 5px;
  border-radius: 10px;
}

header .cards .card  img {
  width: 175px;
  height: 225px;
  border-radius: 10px;
}

header .cards .card .content {
  position: absolute;
  width: 100%;
  height: 25%;
  border-radius: 0px 0px 10px 10px;
  /*background: red;*/
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  bottom: 0;
  z-index: 2;
}

header .cards .card .content::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 10px 10px;
  background: rgb(220, 214, 150, 0.5);
  backdrop-filter: blur(3px);
  z-index: -1;
}

header .cards .card .content a {
  color: #131312;
  font-size: 12px;
  text-shadow: 1px 1px 2px #fff;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 150px;
  text-decoration: none;
}

header .cards .card .content p {
  display: flex;
  color: #131312;
  font-size: 11px;
  margin-top: 4px;
  font-weight: 400;
  text-shadow: 1px 1px 2px #fff;
}

@media only screen and (max-width: 1190px) {
  header .cards {
    overflow-x: auto;
  }
}

@media only screen and (max-width: 641px) {
  header nav ul li {
    padding: 3px 7px;
  }
  header nav ul li a {
    font-size: 10px;
  }
}

@media only screen and (max-width: 541px) {
  header section .content {
    padding-left: 15px;
  }

  header nav {
    height: 14%;
    flex-wrap: wrap;
  }

  header nav .brand {
    width: 100%;
    height: 45%;
    justify-content: center;
  }

  header nav ul {
    width: 100%;
    height: 20%;
  }

  header nav.search {
    width: 100%;
    height: 30%;
    justify-content: center;
  }

  header section {
    height: 40%;
  }

  header .cards {
    width: 95%;
    height: 46%;
  }
}

@media only screen and (max-width: 359px) {
  header section .content h1 {
    font-size: 30px;
  }

  header section {
    height: 50%;
  }

  header .cards {
    height: 36%;
  }

  header .cards .card {
    min-width: 110px;
    min-height: 145px;
  }

  header .cards .card img {
    width: 110px;
    height: 145px;
  }
}