:root {
  --font-family: "Nunito", sans-serif;
}
* {
  font-family: var(--font-family);
  box-sizing: border-box;
}
html {
  scroll-snap-type: y mandatory;
}
body {
  margin: 0;
  max-width: 100vw;
  scroll-snap-type: y mandatory;
  transition: background-color 0.5s ease-out;
}

header {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  height: 100vh;
  scroll-snap-align: start;
  background: radial-gradient(circle, #bc4ed8 5%, transparent 75%);
}
.hd1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1vh 10vw;
  border-bottom: 2px solid var(--line-gray);
  height: 10vh;
}
.hd1 img {
  width: 170px;
}
.hd1 a {
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 12px;
  border-radius: 25px;
  text-decoration: none;
}
.hd1 a:hover {
  transform: scale(1.1);
  transition: all 0.36s;
  background-color: #fff;
  color: #bc4ed8;
  font-weight: 600;
}

.hd2 {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 100%;
  height: 100%;
  padding: 3vh 15vw;
}
.hd2 > img {
  max-width: 800px;
  width: 45vw;
  margin: auto;
}

.hd2d1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.hd2d1 > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
  gap: 15px;
  position: relative;
  width: fit-content;
}
.hd2d1 img {
  width: 5vw;
  max-width: 80px;
  min-width: 50px;
}
.hd2d1 h3 {
  margin-block: 0;
  color: #fff;
  font-size: clamp(0.875rem, 0.5625rem + 1vw, 1.125rem);
  font-weight: 600;
}
.hd2d1 > div > div::before {
  content: "";
  width: 50%;
  border-top: 3px solid #bc4ed8;
  position: absolute;
  top: 0;
}
#h3-1 {
  margin-top: 1vh;
}

.a-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  width: fit-content;
  background-color: #bc4ed835;
  padding: 2vh 1vw;
  border-top: 3px solid #bc4ed8;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.5625rem + 1vw, 1.125rem);
}
.a-btn:hover {
  background-color: #bc4ed865;
  transition: all 0.36s;
  transform: scale(1.1);
  border-color: #fff;
}

/* SECTIONs */
section {
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  height: 100dvh;
  padding: 0 20vw;
  margin: auto;
  flex-direction: column;
  background: radial-gradient(circle, #6d419d 5%, transparent 75%);
}
section h2 {
  font-size: clamp(2rem, 0.75rem + 4vw, 3rem);
  color: #fff;
  font-weight: 800;
  line-height: 50px;
  margin-block: 0;
}
.sd1 {
  display: flex;
  flex-direction: column;
}
.sd1 > div {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
}
.d1 {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-right: 6vw;
  gap: 3vh;
}
section h3 {
  font-size: clamp(1rem, 0.6875rem + 1vw, 1.25rem);
  color: #fff;
  margin-block: 0;
  font-weight: 600;
  max-width: 400px;
  border-left: 3px solid #bc4ed8;
  padding-left: 1vw;
}
.a-btn.one {
  padding: 1.5vh 3vw;
  border-top: none;
  border-left: 3px solid #bc4ed8;
}
.a-btn.one:hover {
  border-color: #fff;
}
section img {
  width: 13vw;
  height: 12.2vw;
  background-color: #bc4ed835;
  position: relative;
  border-right: 0.8vw solid #bc4ed865;
}
section img:hover {
  transform: scale(1.1);
  transition: all 0.36s;
  background-color: #bc4ed865;
}

/* criar media query */
@media screen and (max-width: 1080px) {
  .hd1 img {
    width: auto;
    height: 4vh;
  }
  .hd1 a {
    padding: 2px 12px;
  }
  .hd2 {
    padding: 2vh 10vw;
  }
  .hd2 > img {
    width: 100%;
    max-width: 650px;
  }
  .a-btn {
    padding: 1.5vh 1vw;
  }
  section {
    padding: 0 10vw;
  }
  section img {
    width: 16vw;
    height: 15.2vw;
  }
}
@media screen and (max-width: 600px) {
  .hd2d1 > div > div {
    display: none;
  }
  .sd1 h2 {
    text-align: center;
  }
  .sd1 > div {
    flex-direction: column;
    align-items: center;
  }
  .d1 {
    align-items: center;
    margin-right: 0;
  }
  .d1 h3 {
    margin: auto;
    width: fit-content;
  }
  section img {
    width: 35vw;
    height: 33.5vw;
    border-right: 1.5vw solid #bc4ed865;
    margin-top: 40px;
  }
}
