* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.bg-nav {
  background-color: #124482 !important;
}

/* INICIO HEADER */
.nav {
  background-color: #124482;
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 9;
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
    background-color: #fff!important;
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #fff !important;
  font-size: 18px;
  transition: all 0.9s;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #98b142 !important;
}
/* FIM HEADER */

/* INICIO MAIN */

.main {
  width: 100%;
  height: calc(100vh - 80px);

  background-repeat: no-repeat;

  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("img/sobre.webp") no-repeat;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content:center;

}

.main h1 {
  color: #ffffff;
  font-size: 50px;
}

.main p {
  font-size: 24px;
  font-style: italic;
  color: #1e96fc;
  margin-top: 10px;
  margin-bottom: 35px;
}

.call-to-action {
  cursor: pointer;
  background-color: #98b142;
  border: 0;
  padding: 14px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.9s;
}

.call-to-action-header {
  cursor: pointer;
  background-color: #98b142;
  color: #fff;
  border: 0;
  padding: 8px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.9s;
}

.call-to-action-header:hover {
  transform: scale(1.1);
}

.call-to-action:hover {
  transform: scale(1.1);
}

.main a {
  text-decoration: none;
  color: #181818;
}
/* FIM MAIN */

/* INICIO PROJECTS */

.main-site {
  padding-top: 80px;
  padding-bottom: 80px;
}

.action {
  background-color: #124482;
  border: 0;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 18px;
  color: #ffffff;
  margin-top: 18px;
  cursor: pointer;
  margin-top: 70px;
}

footer {

  background-color: #0d1426;
  padding: 70px 0;

}

footer a {
  text-decoration: none;
  color: #ffffff;
}

.whatsapp-link {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
}

@media (max-width: 1050px) {
  .main h1 {
    font-size: 45px;
  }

  .main p {
    font-size: 18px;
  }

  .main {
    background-size: cover;
  }

  .about {
    flex-direction: column;
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .about div {
    max-width: 80%;
  }

  .about div h2 {
    font-size: 45px;
  }

  .about img {
    width: 80%;
    margin-top: 30px;
  }

  .projects img {
    width: 27.5%;
  }

  
}

@media (max-width: 700px) {
    .main-site {
        padding-top: 30px;
        padding-bottom: 30px;
      }
      
      .main {
          width: 100%;
          height: 250px;
        
          background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
            url("img/sobre.webp") no-repeat;
          background-size: cover;
        
          display: flex;
          align-items: center;
          justify-content:center;
        
        }
        
        .main h1 {
            font-size: 20px;
            
          }
}
