/* Google Fonts Typography*/
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@400;700&family=Open+Sans:wght@400;700&display=swap");

/* CSS Global variables */
:root {
  --text-dark: #1F1534;
  --text-light: #F9F9F9;
  --text-span: #89C5CC;
  --text-paragraph: #7d7987;
  --bg-button: #69B99D;
}

/* HTML5 display-role reset for browsers */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body config global */
body {
  
    font-family: "Open Sans", sans-serif;
  
    background: linear-gradient(90deg, rgb(227, 255, 248, 0) 82.08%, rgb(227, 255, 248, 0.38) 100%);
  
    min-height: 100vh;
  }
  
  .page {
    width: 1000px;
    margin: 0 auto;
    padding-top: 65px;
  }

  /* NavBar */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    margin-bottom: 55px;
  }

  nav a:hover {
    opacity: .5;
    transform: all .2s;
  }
  
  ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 48px;
  }
  
  a {
    color: var(--text-dark);
    text-decoration: none;
  }
  
  ul li a {
      opacity: 0.5;
  }
  
  ul li a:hover {
    font-weight: bold;
    opacity: 1;
  }
  
  h1,
  ul {
    font-family: "Mulish", sans-serif;
  }

  /* Main */
  main {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Section */
  
  h1 {
    font-size: 49px;
    line-height: 56px;
    color: var(--text-dark);
  
    font-weight: normal;
  
    width: 490px;
  }
  
  h1 span {
    font-weight: bold;
    color: var(--text-span);
  }
  
  section p {
    font-size: 14px;
    line-height: 28px;
    color: var(--text-paragraph);
    margin: 40px 0;
  }
  
  /* Button */
  button {
    color: var(--text-light);
    font-family: "Open Sans", sans-serif;
    background: var(--bg-button);
    border: 0;
    padding: 16px 32px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
      opacity: 0.8;
      transform: all .2s;
  }
  
 /* Footer */ 
  footer {
    font-size: 14px;
    line-height: 28px;
  
    text-align: center;
  
    margin-top: 80px;
  }
  
  footer a {
    font-weight: bold;
  }
  
footer a:hover {
  opacity: .8;
  transform: all .2s;
}

  /* Id imagem balls */
  #balls {
      position: fixed;
      bottom: 0;
      right: 0;
  }
  