/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&family=Source+Code+Pro:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ICONS */
@import url('https://css.gg/css');

/* GENERAL STYLES */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

/* HEADER STYLES */
.header {
  width: 100vw;
  height: 90vh;
}

/* NAVBAR STYLES */
.navbar {
  background-color: #fff;
  width: 100%;
  height: 17.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.navbar-fixed {
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.logo {
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  height: 100%;
  object-fit: cover;
}

.logo h1 {
  font-size: 3rem;
  background: #7048e8;
  background: linear-gradient(to right, #7048e8 0%, #b197fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu-nav {
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  padding-left: 12.8rem;
}

.menu-nav a {
  color: #5f3dc4;
  font-size: 2rem;
  font-weight: 400;
  text-decoration: none;
}

.menu-nav a:hover {
  color: #845ef7;
}

.menu-nav a:active {
  color: #5f3dc4;
}

.menu-nav-mobile .opcoes {
  display: none;
  position: absolute;
  top: 99.5%;
  right: 0;
  background-color: #fff;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.menu-nav-mobile .opcoes a {
  color: #5f3dc4;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 2.4rem 2.4rem;
  text-decoration: none;
  display: block;
}

.menu-nav-mobile .opcoes a:hover,
.menu-nav-mobile .opcoes a:active,
.menu-nav-mobile .opcoes a:focus {
  background-color: #b197fc;
}

.menu-nav-mobile .opcoes.show {
  display: block;
}

/* HERO STYLES */
.hero {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-conteudo {
  color: #f8f9fa;
  width: 50%;
  height: 100%;
  background-color: #b197fc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conteudo {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}

.conteudo h2 {
  font-size: 3.6rem;
}

.conteudo p {
  font-size: 2rem;
  font-weight: 200;
}

.conteudo button {
  color: #f8f9fa;
  font-size: 1.6rem;
  font-weight: 600;
  background-color: #5f3dc4;
  border: none;
  padding: 1.6rem 2rem;
  border-radius: 1.2rem;
  box-shadow: 0px 7.5px 10px -3px rgb(103, 65, 217, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
}

.conteudo button:active {
  scale: 0.95;
  box-shadow: 0px 5px 7.5px -1.5px rgb(103, 65, 217, 0.5);
  transition: all 0.1s;
}

.btns {
  align-self: start;
  display: flex;
  gap: 2.4rem;
}

.hero-img {
  width: 50%;
  height: 100%;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INTEGRANTES STYLES */
.integrantes {
  width: 100vw;
  height: 10vh;
}

.lista-integrantes {
  color: #868e96;
  font-size: 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}

.lista-integrantes li {
  list-style-type: none;
  font-weight: 200;
}

.lista-integrantes li:hover {
  color: #845ef7;
}
