/***** ESTILOS GERAIS *****/
@import url('https://fonts.googleapis.com/css2?family=Montserrat');
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-family: 'Montserrat', sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}


a {
	text-decoration: none;
}

ul {
  list-style: none;
}
/***** FIM ESTILOS GERAIS *****/

/***** NAVBAR *****/

.logo {
  font-size: 2.25rem;
  text-transform: uppercase;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 16px;
  color: #c5f8f3;
  background-color: rgba(4, 0, 38, 0.7);
  transition: all 0.5s ease-in-out;
  
}
.navbar.scrolled {
  background-color: #2162e3;
}

.nav-links {
  display: flex;
  align-items: center;
  font-size: 18px;
  
}

.nav-links a {
  color: #f5f5f5;
}

.nav-links a:hover {
  color: #c5f8f3;
}
.nav-links li {
  margin:  0 32px;
  
}
/***** FIM DO NAVBAR *****/

/***** HEADER *****/
header {
  width: 100vw;
  height: 100vh;
  background-image: url('../assets/sarah-lee-QURU8IY-RaI-unsplash.jpg');
  background-position: bottom;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.header-content {
  margin-bottom: 150px;
  color: #f5f5f5;
  text-align: center;
  padding: 48px;
}

.header-content h1 {
  font-size: 6vmin;
  margin-top: 48px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.header-content h2 {
  font-size: 7vmin;
  font-weight: 700;
  
  
}

.border-div {
  width: 150px;
  height: 4px;
  background-color: #4400f2;
  margin: 8px auto;
  border-radius: 5px;
}

.ctn {
  padding: 8px 16px;
  background-color: #4400f2;
  border-radius: 30px;
  color: #c5f8f3;
}

.ctn:hover {
  padding: 16px 32px;
  
}

/***** FIM DO HEADER *****/



/***** METAS *****/
#meta {
  
  text-align: center;
}
section {
  width: 80%;
  margin: 80px auto;
}
.title {
  text-align: center;
  font-size: 4vmin;
  color: #2162e3;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
.row {
  
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between; 
  margin-bottom: 32px;
  padding: 12px;
  
}
.row .column  {
  
  width: 80%;
  margin: 0 1rem;
}

.row .column  {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}
.metas .row {
  margin-top: 48px;
}

h4 {
  font-size: 1.125rem;
  color: #2162e3;
  margin: 24px auto;
}
.column p {
  font-size: 1rem;
  padding: 0 32px;
}

.column img {
  width: 320px;
}
/***** FIM DAS METAS *****/

/***** FOOTER *****/

.footer {
  width: 100%;
  min-height: 100px;
  padding: 16px 80px;
  margin: 0;
  background-color: #2162e3;
  text-align: center;
}
.footer p {
  font-size: 1rem;
  color: #c5f8f3;
  margin: 16px auto;
  padding: 16px auto;
}

/***** FIM DO FOOTER *****/

/*****MOBILE *****/

.hamburger {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 850px) {

  .hamburger {
    display: block;
  }
  .navbar {
    position: fixed;
    padding: 48px;
    background-color: #2162e3;
  }
 
  .logo {
    position: absolute;
    top: 32px;
    left: 32px;
  }

  section {
    margin-top: 48px;
    width: 100%;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: center;
    background-color: #2162e3;
    margin-top: -900px;
    transition: all 0.5s ease; 
  }
  .mobile-menu {
    margin-top: 0;
    border-bottom-right-radius: 30%;
  }
  .nav-links li {
    font-size: 20px;
    
    margin: 32px auto;
  }

  .nav-links li a {
    font-size: 20px;
    padding: 16px;
    margin: 32px auto;
  }

  .row {
    flex-direction:  column;
  }

  .row .column {
    margin: 16px auto;
  }

  .column img {
    max-width: 90%;
  }

  .column h2 {
    text-align: center;
  }
  .column p {
    padding: 0 16px;
  }

  .footer p {
    padding: 0;
    
  }
  p{
    font-size: 1.125rem;
  }
  #meta {
    text-align: left;
  }
  
}