@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #001224;
}

::-webkit-scrollbar-thumb {
  background: #4070f4;
  border-radius: 10px;
}

:root {
  --card-height: 300px;
  --card-width: calc(var(--card-height) / 1.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins';
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 85px;
  background: #000611;
  color: white;
  padding: 18px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 999;
}

.sidebar:hover {
  width: 250px;
}

.sidebar:hover .logo_closed {
  display: none;
}

.sidebar:hover .logo_open {
  display: flex;
  opacity: 1;
  transition: 0.4s ease-in-out;
}

.logo_items {
  gap: 8px;
  transition: 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav_image {
  display: flex;
  width: 50px;
  justify-content: center;
  transition: 0.4s ease-in-out;
}

.logo_closed {
  width: 50px;
  transition: 0.4s ease-in-out;
}

.logo_open {
  opacity: 0;
  display: none;
  width: 150px;
  transition: 0.4s ease-in-out;
}

.menu_container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 30px;
  overflow-y: auto;
  transition: 1s ease-in-out;
}

.menu_container::-webkit-scrollbar {
  display: none;
}

.flex {
  display: flex;
  align-items: center;
}

.item {
  list-style: none;
}

.link {
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 7.5px;
  color: white;
}

.link:hover {
  color: #fff;
  background: linear-gradient(180deg, #13326E, #264FAB, #4077FF);
  animation: animacao_link 0.1s ease-in-out;
}

@keyframes animacao_link {
  0% {
    background: linear-gradient(180deg, #13316e7a, #264eab73, #4076ff6e);
  }

  100% {
    background: linear-gradient(180deg, #13326E, #264FAB, #4077FF);
  }

}

.link span {
  white-space: nowrap;

}

.link i {
  height: 60px;
  min-width: 50px;
  display: flex;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

body {
  margin-left: 85px;
  background-color:#0A2149;
}

main {
  background: linear-gradient(to bottom, #184CA5, #113777, #0B2550, #091D3F, #0A2148, #0A2148);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


#BANNER_GALERIA {
  display: flex;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(360deg, #001f3f, #00356d);
  box-shadow: 3px 3px 25px black;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

#texto_galeria {
  font-size: 18px;
  color: white;
  width: 70%;
  margin-top: 50px;
  text-align: center;
}

#card_select {
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 15px #007bff;
}

#label_select_ano {
  color: black;
  font-size: 20px;
}

#ano {
  background-color: white;
  border: none;
  font-size: 20px;
  color: #00356d;
  font-weight: bold;
}

/* select_ano */

.tipo_imagem {
  color: white;
  font-size: 25px;
  margin-bottom: 10px;
}







#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: white;
  color: #002c56;
  border: none;
  border-radius: 50%;
  font-size: 35px;
  cursor: pointer;
  opacity: 0.8;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
  padding-bottom: 3px;
  border: 1px solid #002c56;
}

#backToTop:hover {
  opacity: 1;
  transform: scale(1.1) rotate(-90deg);
}






















.carrossel-container {
  margin: 40px auto;
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 90%;
  max-height: 750px;
}

.carrossel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 1px 1px 50px #0d72ff;
  border: 3px solid #0d72ff;
}

.carrossel .imagens {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carrossel .slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 28px;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 2;
}

.seta.esquerda {
  left: 0;
}

.seta.direita {
  right: 0;
}


footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-color: #0A2148;
  padding: 20px;
  margin-top: 80px;
}

footer ul {
  list-style-type: none;
  display: flex;
  gap: 50px;
}

footer ul a {
  text-decoration: none;
  color: white;
}

footer ul a:hover {
  color: #4070f4;
  transition: 0.3s ease-in-out;
}

.footer-linha {
  border: none;
  height: 2px;
  background-color: rgb(0, 166, 255);
  margin: 10px auto;
  width: 70%;
}

@media screen and (max-width:1024px) {
  footer ul {
    flex-direction: column;
    gap: 15px;
  }
}