/* Main Container */
.navegacao {
  background-color: rgba(2, 2, 2, 0);
}
.main-container {
  margin-top: 0px;
  position: relative;
  background-image: url("../img/mainbg.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
  border-bottom: 2px solid #de9900;
}

.main-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* FIM Main Container */
/* FIM Main Container */
/* FIM Main Container */
/* FIM Main Container */

/* Titulo Pagina */
.pag-atual {
  left: 45px;
  font-size: 56px !important;
  bottom: 88px;
  position: absolute;
  color: #fff;
  z-index: 2;
  text-shadow: 4px 4px 4px #131212;
}
body {
  background-color: rgba(7, 7, 7, 0.8);
}
body:before {
  content: " ";
  background-image: url("../img/bgfleet.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  display: block;
  object-fit: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.35;
}

body h2 {
  margin-bottom: 20px;
  color: #de9900;
  font-size: 30px;
  text-align: center;
  text-shadow: 3px 3px 3px #131212;
}

.seletores {
  width: 95%;
  margin: auto;
  margin-bottom: 40px !important;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 20px;
}

.seletores > button {
  flex: 1;
  padding: 10px 20px;
  max-width: 200px;
  background-color: #de9900;
  border: 2px solid #de9900 !important;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  text-shadow: 2px 2px 2px #131212;
}

.seletores > button:hover {
  background-color: #ffcc00;
}

.desativado {
  background-color: rgba(222, 153, 0, 0) !important;
  border: 2px solid #de9900 !important;
}

.desativado:hover {
  background-color: rgba(222, 152, 0, 0.301) !important;
  border: 2px solid #de9900 !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#cargo,
#pax {
  
  opacity: 0;
  display: none;
}

#cargo.active,
#pax.active {
  animation: fadeIn 1s ease-in-out;
  opacity: 1;
  display: flex;
}

#cargo {
  display: none;
  width: 95%;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 40px auto 40px auto;
 
}

#pax {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: auto;
}

.plane {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 30px;
  max-width: 28%;
  width: 100%;
  background: linear-gradient(135deg, #232323 0%, #353535 100%);
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  z-index: 0;
}

.plane:hover {
  transform: scale(1.05);
  box-shadow: 0px 20px 30px -5px rgba(0, 0, 0, 0.4);
}

.plane img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.plane img:hover {
  transform: scale(1.03);
}

.plane p {
  color: #fff;
  width: 80%;
  font-size: 20px;
  padding-bottom: 10px;
  text-align: center;
  text-shadow: 2px 2px 2px #131212;
  border-bottom: 2px solid #de9900;
}

.plane span {
  color: #fff;
  font-size: 14px;
  padding: 2px;
}

@media only screen and (max-width: 780px) {
  .seletores {
    flex-direction: column;
    gap: 10px;
  }

  .seletores > button {
    max-width: 100%;
    font-size: 16px;
  }

  #pax {
    gap: 10px;
  }

  #cargo {
    gap: 10px;
  }

  .plane {
    max-width: 100%;
    padding-bottom: 20px;
  }
}
