body {
  margin: 0;
  padding: 0;
  color: white;
  background: #393939;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  background-size: cover;
}

header {
  width: 100%;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  
  .header-menu {
    padding: 30px 0;
    background: radial-gradient(circle at center, transparent 0, transparent 25%, fade(#111, 75%) 100%);

    .header-menu-container {
      width: 900px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      justify-content: space-between;

      .header-menu-left {
        font-size: 24px;

        img {
          margin-right: 15px;
        }
      }
      .header-menu-right {
        img {
          margin-left: 15px;
        }
      }

      ul {
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        
        li {
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;
          align-items: center;

          a {
            color: unset;
            text-decoration: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            align-items: center;
            transition: all 150ms ease;

            &:hover {
              transform: scale(1.5);

              img {
                border-radius: 100%;
              }
            }

            &.whatsapp-icon:hover {
              transform: scale(1.25);
              text-shadow: 0 0 25px #FFFFFF;

              img {
                box-shadow: 0 0 50px 15px #FFFFFF;
              }
            }

            &.facebook-icon:hover {
              img {
                box-shadow: 0 0 50px 15px #4368de;
              }
            }

            &.instagram-icon:hover {
              img {
                box-shadow: 0 0 50px 15px #de4886;
              }
            }

            &.youtube-icon:hover {
              img {
                box-shadow: 0 0 50px 15px #d20000;
              }
            }

            &.spotify-icon:hover {
              img {
                box-shadow: 0 0 50px 15px #1fad4f;
              }
            }

            &.drive-icon:hover {
              img {
                box-shadow: 0 0 50px 15px #FFFFFF;
              }
            }
          }
        }
      }
      
      img {
        width: 35px;
      }
    }
  }

  .logo {
    position: absolute;
    left: 50%;
    top: 0;
    width: 300px;
    transform: translateX(-50%);
  }
}

.fundo {
  width: 100%;
}

footer {
  width: 100%;
  font-size: 14px;
  background: fade(#111, 25%);

  .footer-container {
    width: 900px;
    margin: 0 auto;
    color: white;
    text-align: center;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;

    span {
      display: inline-block;
    }
  }
}

@media screen and (max-width: 900px) {
  header {
    background: #111;
    position: relative;
    
    .header-menu {
      padding: 25px 0;
      background: unset;
  
      .header-menu-container {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
  
        .header-menu-left {
          font-size: 30px;
  
          img {
            margin-right: 16px;
            width: 40px;
          }
        }
        .header-menu-right {
          margin-top: 25px;

          img {
            margin-left: 15px;
            width: 40px;

            &.first {
              margin-left: 0;
            }
          }
        }
        
        img {
          width: 38px;
        }
      }
    }
  
    .logo {
      display: none;
    }
  }
  
  footer {
    background: unset;

    .footer-container {
      width: 100%;
      flex-direction: column;
      padding: 25px 0;
    }
  }
}