@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0px;
  padding: 0;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  transition: all 0.5s ease-in;
}

body {
  display: none;
}

.to-top {
  background-color: #fff;
  border: #42a7c3 1px solid;
  border-radius: 30px;
  padding: 10px;
  position: fixed;
  bottom: 2%;
  right: 1%;
  z-index: 10;
  cursor: pointer;
}

:root {
  --primary-color: 66, 167, 195;
  --secondary-color: 51, 51, 51;
}

/* Definindo que todos os links terão a cor padrão */
a {
  color: #333;
}

.primary-color {
  color: #42a7c3;
}

.secondary-color {
  color: #333;
}

/* Ocultando o icone de hamburguer para sites desktop */
#menu-icon {
  display: none;
}

.dropdown-menu {
  display: none;
}

/* ocultando o menu menor para sites mobile */
.dropdown-list {
  display: none;
}

/* ESTILO PARA TELAS GRANDES */
.container {
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
  padding: 0px;
}

header {
  width: 100%;
  background: rgb(226, 246, 252);
  background: linear-gradient(
    180deg,
    rgba(226, 246, 252, 1) 0%,
    rgba(255, 255, 255, 1) 80%
  );
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.logo {
  color: #42a7c3;
  font-size: 2.5rem;
  font-weight: bolder;
}

.menu {
  display: flex;
  justify-content: space-between;
  width: 35rem;
}

.menu li {
  font-size: large;
  font-weight: bold;
  color: #333;
}

.menu li a:hover {
  color: #42a7c3;
}
.menu li a img:hover {
  scale: 1.2;
}

/* CSS DO FOOTER */
footer {
  background: rgb(226, 246, 252);
  background: linear-gradient(
    0deg,
    rgba(226, 246, 252, 1) 0%,
    rgba(255, 255, 255, 1) 80%
  );
  width: 100%;
}

.footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 50px 0;
  color: #333;
}

.logo-footer {
  color: #42a7c3;
  font-size: 2rem;
  font-weight: bolder;
}

.about-us-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 60%;
}

.about-us-footer h3 {
  font-size: x-large;
  color: #42a7c3;
  text-shadow: 2px 1px 0px rgba(3, 3, 3, 0.2);
}

.members-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  border: none;
  width: 100%;
}

.members-footer img {
  max-width: 20%;
  aspect-ratio: 4/4;

  padding: 10px;
  border-radius: 50%;
}
.members-footer img:hover {
  opacity: 0.7;
}

.menu-footer {
  padding-top: 30px;
}

.menu-footer > ul > li {
  padding: 5px;
  font-weight: bold;
}
.menu-footer a:hover {
  text-decoration: underline;
}

/* CSS do Banner para paginas que usam o Banner */
.banner-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}
.banner-container img {
  border: 0px solid #333;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 200px;
}
.banner-caption {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #42a7c3;
  font-size: 1.2rem;
  padding: 20px;
  border-radius: 0px 0px 30px 30px;
  width: auto;
  color: #fff;
  text-align: center;
  font-weight: bold;
  white-space: wrap;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
}

/* Estilos para sites mobile onde o menu maior é oculto, o hamburguer aparece e
  é definido uma classe para exibir o menu menor que será chamada via js */

@media only screen and (max-width: 910px) {
  #menu-icon {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
  }
  #menu-icon:hover {
    cursor: pointer;
  }

  .menu-icon-rotate {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .menu {
    display: none;
  }

  .dropdown-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dropdown-list {
    background-color: #fffffffa;
    position: absolute;
    padding: 5px 0px;
    border-radius: 1px 1px 10px 10px;

    display: none;
    right: -5px;
    top: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    z-index: 100;
  }
  .dropdown-list-on {
    display: flex;
  }

  .dropdown-list li {
    width: 100%;
    font-weight: bolder;
  }

  .dropdown-list li a {
    display: block;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgb(var(--secondary-color));
    text-align: right;
  }
  .dropdown-list li a:hover {
    background-color: rgba(var(--primary-color), 0.8);
    color: azure;
  }

  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;

    color: #333;
  }

  .footer > * {
    margin-top: 20px;
  }
  .about-us-footer figure {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .members-footer img {
    min-width: 100px;
  }

  .menu-footer {
    display: none;
  }
  .project-footer {
    display: flex;
    align-items: center;
  }
  .group {
    margin-left: 4vw;
    padding-left: 2vw;
    border-left: solid 2px #42a7c3;
  }

  /* CSS do Banner para paginas que usam o Banner (mobile)- Lkz */
  .banner-caption {
    bottom: 0%;
    left: 50%;
    min-width: 100%;
    max-width: 400px;
    border-radius: 0px;
  }
}

@media only screen and (min-width: 1440px) {
  .header {
    justify-content: space-around;
  }
}
