/* Style the tab */

body {
  display:block;
  font-family: Roboto, sans-serif;
  background-color: rgb(255, 255, 255);
  background-image: url("./assets/fundo.png");
  background-blend-mode: luminosity;
  height: 100%;
  color: #727272;
}

#fknavbar{
  width: 100%;
  background-color: #ffffff;
  top: 0px;
  position: fixed;
  box-shadow: 3px 3px 3px rgba(59, 59, 59, 0.212);
  padding: 10px;
  align-content: center;
  display: flex;
  justify-content: left;
  text-align: left;
  text-align: left;
  margin: auto;
  color: #1351b4;
  font-family: Helvetica, Arial, sans-serif;
  z-index: 500;
}

.nav_link{
  color: #1351b4;
  text-decoration: none;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  align-content: center;
  margin-right: 10px;
}

.nav_link:hover{
  text-decoration: underline;
}


#fknavbar span{
  font-weight: 800;
  margin-right: 5px;
  margin-top: -3px;
  align-content: center;
}

#fknavbar p{
  font-weight: 300;
  margin-right: 10px;
  align-content: center;
  color: #585858b6;
}

main {
  width: 80vw;
  margin: auto;
  font-family: Roboto, sans-serif;
  align-content: center;
  justify-content: center;
  /* background-color: rgba(255, 255, 255, 0.555); */
  background-color: rgba(4, 45, 63, 0.664);
  max-width: 900px;
  margin-top: 8vh;
  height: 90vh;
  border-radius: 10px;
}

header {
  display: block;
  justify-content: center;
  justify-items: center;
  text-align: center;
  /* margin-bottom: 50px; */
  background-color: rgb(255, 255, 255);
  padding: 35px;
  border-radius: 10px 10px 0px 0px;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.301);
  position: relative;
  top: 0px;
  height: 40%;
}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #09843C;
  display: flex;
  justify-content: center;
  /* box-shadow: 2px 2px 6px #8888889c; */
}

#logo {
  max-width: 80%;
}

h3{
  color: #967495;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: #53AF79;
  color: white;
  float: left;
  border: 0px;
  border-right-width: 2px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.507);
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.7s;
  width: calc(100%/3);
}

.ultimo {
  border-right-width: 0px !important;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #8EC2C4;
  font-size: 1.10rem;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #967495;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 2px;
  min-height: 40vh;
  border-radius: 6px 6px 0px 0px;
  background-color: none;
  background-image: linear-gradient(to top, #efefef00,#8EC2C4, #967495);
  /* background-image: linear-gradient(to top, #22487d00,#22487D,#09843C); */
  /* box-shadow: 2px -12px 6px #8888889c; */
}

.innertab {
  background-color: #ffffffe5;
  padding: 20px;
  padding-bottom: 30px;
  min-height: 40vh;
}

.subtab {
  margin-top: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: none;
  display: block;
}

/* Style the buttons that are used to open the tab content */
.subtab button {
  background-color: #ECA53B;
  float: left;
  border: none;
  border-bottom: 3px solid #CE4054;
  margin-right: 2px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.subtab button:hover {
  background-color: #f0b864;
  border-bottom: 3px solid #e66476;
}

/* Create an active/current tablink class */
.subtab button.active {
  background-color: #fab143;
  border-bottom: 3px solid #fc5167;
}

/* Style the tab content */
.subtabcontent {
  display: none;
  padding: 6px 12px;
  background-color: none;
}

.video{
  text-align: center;
}


/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #8EC2C4;
  color: #38686b;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: solid rgba(255, 255, 255, 0.527);
  border-radius: 4px;
  border-width: 0px 0px 1px 0px;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion:hover {
  background-color: #c2e6e7;
  font-size: 1.15rem;
}

.accordion.active {
  background-color: rgb(110, 150, 151);
  font-size: 1rem;
  color: white;
}

.accordion.active:hover {
  background-color: #c2e6e7;
  font-size: 1rem;
  color: #557d80;
}


/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0px 20px 0px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion:after {
  content: '+'; /* Unicode character for "plus" sign (+) */
  font-size: 20px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.726);
  background-color: rgba(255, 255, 255, 0.116);
  border-radius: 100px;
  text-align: center;
  width: 30px;
  height: 30px;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "–"; /* Unicode character for "minus" sign (-) */
}

/* footer {
  background-image:url(./assets/footer.png);
  background-repeat: repeat;
  height: 200px;
  width: 500px;
} */

.small_link{
  font-size: smaller;
  font-style: italic;
}

ul {
  list-style: none;
  margin-top: -10px;
  padding: 0px;
}

/* ul li::before {
  content: "\2022";
  color:#5F468D;
  font-weight: bold;
  display: inline-block; 
  width: 2px;
  margin-right: 10px;
} */

li {
  margin-bottom: 15px;
  font-size: medium;
  background-color: rgba(255, 255, 255, 0.151);
  padding: 20px;
  display: block;
  border-radius: 6px;
  transition: background-color 0.6s ease-out;
}

li:hover{
  background-color: rgba(255, 255, 255, 0.425);
}

.link_description{
  margin-bottom: 5px;
}

.titulo_item{
  color: #a18c9d;
  font-size: larger;
  font-weight: bold;
  margin-bottom: 15px;
}

.link_extra{
  color: black;
}

.separador_lista {
  color: rgba(85, 92, 87, 0.404);
}

/* #gradient_bottom{
  background-color: #CDCCCC;
  background-image: linear-gradient(#EFEFEF,#EFEFEF,#ECA53B, #CE4054);
  background-repeat: repeat-y;
  opacity: 0.8;
  height: 10vh;
  bottom: 0%;
  width: 100%;
  position: fixed;
} */

#topo{
  background-color: #CDCCCC;
  background-image: url(./assets/header.png);
  background-repeat:repeat;
  background-size: cover;
  height: 10vh;
  width: 100%;
  z-index: -1;
  top: 0%;
  position: fixed;
}


#rodape{
  background-color: #CDCCCC;
  background-image: url(./assets/rodape.png);
  background-repeat:repeat;
  background-size: cover;
  height: 10vh;
  bottom: 0%;
  width: 100%;
  position: fixed;
  z-index: -1;
}

.main_menu{
  display: flex;
  flex-wrap: wrap;
  text-align: justify;
  /* justify-content: space-around; */
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  height: 60%;
}

.btn_menu{
  width: 200px;
  height: 200px;
  cursor: pointer;
  text-align: center;
  align-content: center;
  background-color: #e4e6ee;
  border: 1px solid rgba(170, 170, 170, 0);
  img{
    width: 100%;
    height: auto;
  };
  box-shadow: 2px 2px 3px 6px rgba(0, 0, 0, 0.082);
  transition: 0.5s;
}

.btn_menu:hover{
  width: 250px;
  height: 250px;
  border: 1px solid rgba(170, 170, 170, 0.144);
  box-shadow: 1px 1px 15px 15px rgba(174, 244, 247, 0.199);
  background-color: white;
}

.destaque{
  width: 250px;
  height: 250px;
  background-color: #ffffff;
  border: 1px solid #00695600;
  transition: 0.3s;
}

@media only screen and (max-width: 850px) {
  .tab {
    display: block;
  }

  #logo {
    max-width: 100%;
  }

  .tab button {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.507);
  }

  .subtab button {
    width: 100%;
  }
  
  .video_embed {
    width: 100%;
  }
}

@media only screen and (max-width: 750px) {
  main{
    width: 100%;
    margin-top: 40px;
    align-content: unset;
    justify-content: unset;
    height: 100%;
    min-height: 100vh;
    border-radius: unset;
  }

  header{
    width: 100%;
    border-radius: unset;
    height: fit-content;
    margin-bottom: 50px;
  }
  
  .main_menu{
    gap: 10px;
    height: fit-content;
  }

  .btn_menu{
    width: 60%;
    height: fit-content;
  }

  .destaque{
    width: 80%;
    height: fit-content;
  }
}