/* Reset */

html {
  scroll-behavior: smooth;
}

::selection {
  color: #fff;
  background: #0029f7;
}

::-moz-selection {
  color: #fff;
  background: #0029f7;
}

/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0029f7;
}

body,
h1,
h2,
h3,
p,
ul {
  padding: 0px;
  margin: 0px;
}

body {
  font-family: Georgia, serif;
  color: #252525;
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
}

@media (max-width: 739px) {
  .container {
    flex-direction: column;
    max-width: 360px;
  }
}

/* Button Top */

#topButton {
  position: fixed;
  display: none;
  z-index: 100;
  cursor: pointer;
  right: 20px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  background: #0029f7;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  outline: none;
}

#topButton img {
  margin: 20px auto;
}

#topButton:active {
  background: #0029f0;
}

/* Header */

.header {
  background-color: #0029f7;
  padding: 20px 0;
}

.header-nav {
  flex: 1;
  margin: 0 10px;
  align-self: center;
}

.header-nav a {
  box-shadow: inset 0 0 0 0 #fff;
  text-decoration: none;
  color: #fff;
  font-size: 1.125em;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.header-nav a:hover {
  box-shadow: inset 100px 0 0 0 #fff;
  color: #0029f7;
  border-radius: 3px;
}

.header-logo {
  padding: 0 10px;
}

.header-nav ul {
  float: right;
  display: flex;
  list-style: none;
}

.header-nav ul li a {
  padding: 10px;
}

@media (max-width: 739px) {
  .header {
    padding: 0px 0px 20px 0;
  }

  .header-logo {
    max-width: 120px;
  }

  .header-nav a {
    box-shadow: inset 0 0 0 0 #fff;
    border: 1px solid white;
    margin-left: 5px;
    border-radius: 5px;
    transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .header-nav a:hover {
    box-shadow: inset 100px 0 0 0 #fff;
    color: #0029f7;
  }
}

/* Home */

.home {
  animation: textDown 1s;
}

.home h2 {
  text-align: center;
  padding: 60px 0 20px 0;
  font-size: 2.5em;
}

.home h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: #000;
  border-radius: 10px;
  margin: 5px auto 0 auto;
}

.home-info {
  margin: 0 auto;
  margin-bottom: 5px;
}

.home-info h3 {
  width: 220px;
  background-color: #0029f7;
  border-radius: 10px;
  padding: 10px;
  color: #fff;
  position: relative;
  margin-left: 15px;
  top: -35px;
}

.home-button {
  width: 180px;
  padding: 15px 30px;
  margin: 0 auto;
  border-radius: 10px;
  background: #0029f7;
  color: white;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 1.225em;
}

.home-info::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: #000;
  border-radius: 10px;
  margin: -5px auto 5px auto;
}

@media (max-width: 739px) {
  .home {
    margin-top: -25px;
  }

  .home h2 {
    padding: 60px 0 30px 0;
    font-size: 2.25em;
  }

  .home h2::after {
    width: 120px;
  }

  .home-info img {
    max-height: 360px;
  }
}

/* About */

.about {
  margin: 60px 0;
}

.about-title {
  text-align: center;
  font-size: 2.5em;
}

.about-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  background: #000;
  border-radius: 10px;
  margin: 5px auto 5px auto;
}

.about-item {
  margin: 60px auto;
}

.about-img {
  width: 300px;
}

.about-info {
  max-width: 620px;
}

.about-info h2 {
  font-size: 2.5em;
}

.about-info h3 {
  font-size: 1.5em;
}

.about-info p {
  margin-top: 15px;
  font-size: 1.125em;
  line-height: 1.4em;
  max-width: 600px;
}

.about-img,
.about-info {
  margin: 0 10px;
}

.about-img img {
  border-radius: 10px;
  margin-bottom: 10px;
}

.about-img-02 img {
  max-width: 560px;
  border-radius: 10px;
  margin-top: 20px;
}

@media (max-width: 739px) {
  .about-info h2,
  .about-info h3,
  .about-info p {
    text-align: center;
  }

  .about-img {
    margin: 0 auto;
  }

  .about-img-02 {
    display: none;
  }

  .about {
    margin: 100px 0;
  }
}

/* Albums */

.album {
  animation: textDown 1s;
}

.album-info p::selection,
.album-info h2::selection,
.album-info h3::selection {
  color: #0029f7;
  background: #fff;
}

.album-title {
  text-align: center;
  font-size: 2.5em;
}

.album-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  background: #000;
  border-radius: 10px;
  margin: 5px auto 5px auto;
}

.album-item {
  background-color: #0029f7;
  border-radius: 15px;
  padding: 60px;
  margin: 60px auto 100px auto;
}

.album-img img {
  border-radius: 15px;
}

.album-info {
  padding: 0px 20px;
  color: white;
}

.album-info h2 {
  font-size: 2em;
  margin-bottom: 5px;
  line-height: 1em;
}

.album-info h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #fff;
  border-radius: 10px;
}

.album-info p {
  font-size: 1.125em;
  margin-top: 20px;
  max-width: 360px;
  line-height: 1.4em;
}

.album-info a > img {
  margin-top: 20px;
}

@media (max-width: 739px) {
  .album-info h2 {
    text-align: center;
    margin: 20px 0;
  }

  .album-info h2::after {
    margin: 0 auto;
  }

  .album-info p,
  .album-info h3 {
    text-align: center;
  }

  .album-info a > img {
    margin: 20px auto 0px auto;
  }
}

/* History */

.history-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 30px;
}

.history-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  background: #000;
  border-radius: 10px;
  margin: 5px auto 5px auto;
}

.twitter-tweet {
  margin: 0 auto;
}

/* Social */

.social {
  margin: 60px auto;
  animation: textDown 1s;
}

.social-item h2::selection {
  color: #0029f7;
  background: #fff;
}

.social-title {
  text-align: center;
  font-size: 2.5em;
}

.social-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  background: #000;
  border-radius: 10px;
  margin: 5px auto 5px auto;
}

.social-item {
  width: 600px;
  height: 600px;
  background-color: #0029f7;
  border-radius: 15px;
  margin: 60px auto;
  flex-direction: column;
}

.social-item > h2 {
  text-align: center;
  margin-top: 30px;
  color: white;
  font-size: 2em;
}

.social-img {
  margin: 100px auto 0 auto;
  width: 60px;
  padding: 10px 0;
}

.social-img img {
  margin: 10px auto;
}

@media (max-width: 739px) {
  .social {
    margin: 100px 0;
  }
}

/* Footer */

.footer {
  background: #0029f7;
  padding: 40px 0;
}

.footer p::selection {
  color: #0029f7;
  background: #fff;
}

.footer p {
  font-size: 1.125em;
  line-height: 1.4em;
  margin: 0 10px;
  flex: 1;
  color: white;
}

.footer-img {
  margin: 0 10px;
}

@media (max-width: 739px) {
  .footer-img,
  .footer p {
    margin: 10px 0px;
  }

  .footer-img {
    margin: 0 auto;
  }

  .footer p {
    text-align: center;
    margin-bottom: 20px;
  }
}

/* DropDown Menu */

.dropdown {
  align-self: center;
  position: relative;
}

.dropdown-img {
  height: 20px;
  width: 20px;
  margin: 0 auto;
}

.dropbtn {
  display: none;
  background: #fff;
  width: 60px;
  height: 60px;
  border: 2px solid #0029f7;
  border-radius: 10px;
  margin-right: 60px;
}

.header .container {
  flex-direction: row;
  justify-content: space-between;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-top: -15px;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
  border-radius: 10px;
}
.dropdown-content a {
  color: #0029f0;
  padding: 20px 20px;
  text-decoration: none;
  display: block;
  transition: 0.5s;
  font-size: 1.25em;
  border-radius: 10px;
}

.dropdown-content a::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #0029f0;
  border-radius: 10px;
}

.show {
  display: block;
}

.vsgtransform {
  transform: rotate(90deg);
  transition: 300ms;
}

.reversevsg {
  transform: rotate(0deg);
  transition: 300ms;
}

@media (max-width: 739px) {
  .dropbtn {
    display: inline-block;
    align-self: center;
  }

  .header-nav {
    display: none;
  }
}

/* Animation */

@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}

@keyframes textDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.js-scroll {
  opacity: 0;
  transform: translate3d(-30px, 0, 0);
  transition: 0.3s;
}

.js-scroll.ativo {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
