@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  background-image:
    url("assets/osso.svg"),
    linear-gradient(
      150deg,
      rgb(100, 180, 255) 0%,
      rgb(139, 218, 255) 100%
    );
  background-repeat: repeat, no-repeat;
  background-size:
    150px auto,
    cover;
  background-position:
    0 0,
    0 0;
  background-attachment: fixed;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #292b2e;
}

body::-webkit-scrollbar-thumb {
  background-color: #171a1d;
  border-radius: 10px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #00003b;
  border-bottom: #000024 solid 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 50px;
  z-index: 1000;
}

.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar .logo img {
  width: 80px;
  height: auto;
  margin-top: 8px;
}

.navbar #menu-icon {
  font-size: 36px;
  color: #fc8205;
  cursor: pointer;
  display: none;
  margin-left: auto;
}

.navbar ul {
  display: flex;
}

.navbar ul li {
  list-style: none;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  margin-right: 25px;
  transition: color 0.3s ease;
}

.navbar ul li:hover a {
  color: #fc8205;
}

.navbar ul li:last-child a {
  margin: 0;
}

.hire-btn {
  background: #fc8205;
  color: #00003b;
  padding: 6px 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.4s ease;
  box-shadow: #00003b 0px 2px 8px;
}

.hire-btn:hover {
  background: #da6d00;
  color: #00003b;
}

.main {
  height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.main h4 {
  font-size: 32px;
  color: #000024;
  font-weight: 600;
  margin-top: 20px;
}

.main p.title {
  font-size: 70px;
  font-weight: 900;
  color: #fc8205;
  margin-top: 8px;
}

.main p.subtitle {
  font-size: 20px;
  color: #00003b;
}

.main img {
  width: 35%;
  height: auto;
}

footer {
  position: relative;
  background: rgba(2, 0, 36, 1);
  padding: 80px 50px 40px;
  margin-top: 100px;
}

footer .start {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  background-color: #fc8205;
  color: #00003b;
  padding: 30px 25px;
  border-radius: 15px;
  width: 70%;
  top: -16%;
  left: 15%;
}

footer .start p {
  font-size: 13px;
  width: 35%;
  color: #00003b;
}

footer .start button {
  background: #00003b;
  border: 1px solid #00003b;
  color: #fff;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.4s ease;
  box-shadow: #00003b 0px 2px 10px;
}

footer .start button:hover {
  color: #090979;
  background-color: #da6d00;
  border-color: #da6d00;
}

footer .cols {
  display: flex;
  align-items: start;
}

footer .cols .about-col {
  flex: 3;
}

footer .cols .about-col h3 {
  color: #fc8205;
  margin-bottom: 20px;
}

footer .cols .about-col p {
  color: #ccc;
  font-size: 13px;
}

footer .cols .links-col {
  flex: 3;
}

footer .cols .links-col h4,
footer .cols .news-col h4 {
  color: #fff;
  margin-bottom: 20px;
}

footer .cols .links-col a {
  display: block;
  text-decoration: none;
  color: #7b7b7b;
  font-size: 14px;
  line-height: 26px;
  transition: color 0.3s ease;
}

footer .cols .links-col a:hover {
  color: #fc8205;
}

footer .cols .news-col {
  flex: 3;
}

footer .cols .news-col p {
  color: #7b7b7b;
  font-size: 15px;
}

footer .cols .news-col form {
  width: 100%;
  margin-top: 20px;
  position: relative;
}

footer .direitos {
  margin-top: 30px;
  text-align: center;
  color: #7b7b7b;
  font-size: 12px;
}

/* Media Queries */
@media screen and (max-width: 1100px) {
  footer {
    margin-top: 150px;
  }
  footer .start {
    width: 90%;
    left: 5%;
    top: -20%;
  }
  footer .cols {
    flex-wrap: wrap;
  }
  footer .cols .about-col,
  footer .cols .links-col,
  footer .cols .news-col {
    flex-basis: 50%;
    margin-bottom: 30px;
  }
}


@media screen and (max-width: 780px) {
  .navbar button {
    display: none;
  }
  .main h4 {
    font-size: 24px;
  }
  .main p.title {
    font-size: 50px;
  }
  .main p.subtitle {
    font-size: 14px;
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 700px) {
  .navbar {
    justify-content: space-between;
    padding: 0 20px;
    height: 60px;
  }

  .navbar ul li a {
    font-size: 16px;
    display: block;
    margin: 0;
  }

  .navbar #menu-icon {
    color: #fc8205;
    display: block;
  }

  .navbar ul {
    position: absolute;
    top: 60px; 
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: #00003b;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid #fc8205;
  }

  .navbar ul li a {
    margin: 0;
  }

  .navbar ul.active {
    display: flex;
  }

  .main {
    margin-top: 120px;
    height: 570px;
  }

  .main img {
    width: 80%;
  }

  footer .cols {
    flex-direction: column;
    align-items: flex-start;
  }

  footer .cols .about-col,
  footer .cols .links-col,
  footer .cols .news-col {
    flex-basis: 100%;
    width: 100%;
  }

  footer .cols .about-col h3, 
  footer .cols .links-col h4, 
  footer .cols .news-col h4 {
    margin-bottom: 15px;
    font-size: 20px;
  }

  footer .start {
    top: -8%;
  }

  footer .start p {
    display: none;
  }
}
