/* 700 */
/* 400 */
@import url("https://fonts.googleapis.com/css2?family=Inter&family=Ubuntu:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter&family=Ubuntu:wght@700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  background-color: #0D0D0D;
  width: 100%;
  min-height: 10vh;
  padding: 10px;
}

nav {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0px 5px;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo {
  height: 50px;
}

.logo-item h1 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  color: white;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu-item a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #F9F4F5;
  transition: 1s;
}

.menu-item a:hover {
  color: #085CA6;
}

.menu-burger {
  display: none;
}

.burger-item {
  margin-bottom: 5px;
  background-color: #F9F4F5;
  width: 30px;
  height: 2px;
  cursor: pointer;
}

#burger {
  padding: 10px;
  text-align: center;
  background-color: #0D0D0D;
  padding-top: 10px;
  display: none;
}
#burger #menu-burger-links {
  list-style: none;
}
#burger #menu-burger-links .menu-item {
  padding: 5px;
}

.background-black {
  min-height: 100vh;
  background-color: rgba(13, 13, 13, 0.7882352941);
}

.homepage {
  width: 100%;
  height: 100%;
  background-image: url(../imagens/background-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.content-homepage {
  height: 100%;
  margin: auto;
  padding: 250px 150px;
}

.content-homepage h1 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 80px;
  color: #F9F4F5;
  padding-bottom: 20px;
}

.detail-text {
  color: #085CA6;
}

.content-homepage p {
  max-width: 500px;
  margin-left: 10px;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #F9F4F5;
  padding-bottom: 25px;
}

.content-homepage button {
  height: 45px;
  width: 140px;
  border: none;
  border-radius: 15px;
  background-color: #085CA6;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.377);
}

button > a {
  color: #F9F4F5;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

/* -----------------------------------------------------*/
.about-us {
  display: flex;
  min-height: 100vh;
  padding-left: 20px;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.4862745098);
}

.text-content-main {
  text-align: justify;
  max-width: 550px;
}

.text-content-main h2 {
  font-size: 28px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  padding-bottom: 35px;
  color: #085CA6;
  margin-top: 30px;
}

.text-content-main p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--color--fonts);
  text-indent: 2em;
  line-height: 1.5em;
}

.about-us img {
  height: 80vh;
  margin-top: 60px;
}

/* -----------------------------------------------------*/
.about-content {
  min-height: 120vh;
}

.box-content {
  background-color: #085CA6;
  border: 2px solid #0D0D0D;
  max-width: 95%;
  margin: auto;
  padding: 15px 20px;
  border-radius: 30px;
  min-height: 110vh;
}

.box-content h1 {
  font-size: 55px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  min-width: 40%;
  margin: 60px 10px 50px 50px;
}

.content-boxs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.box-content-item {
  background-color: #F9F4F5;
  border: 2px solid #0D0D0D;
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 500px;
  min-height: 200px;
  border-radius: 25px;
  margin: auto;
  padding: 20px;
}

.content-item-text h2 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
}

.content-item-text p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  padding-top: 5px;
  line-height: 1.5em;
}

.box-content-item img {
  height: 110px;
}

/* -----------------------------------------------------*/
.contact {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.question-information {
  display: flex;
  flex-direction: column;
  padding-top: 10%;
  padding-left: 50px;
  gap: 20px;
}

.question-information h2 {
  font-family: "Ubuntu", sans-serif;
  color: #085CA6;
  font-weight: 700;
  line-height: 70px;
  font-size: 30px;
}

.detail-information {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 60%;
  text-align: justify;
}

.detail-information p {
  line-height: 1.5em;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.forms {
  height: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  padding-top: 10%;
}

.contact-form input {
  margin: 10px 80px;
  max-width: 500px;
  height: 35px;
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 5px;
  border: 0.6px solid #0D0D0D;
  background-color: #F9F4F5;
}

.contact-form input:focus {
  border: 0.5px solid #08A6A6;
  box-shadow: 0 0 4px #08A6A6;
}

.contact-form label {
  margin: 0px 80px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: "Inter", sans-serif;
}

#message {
  height: 150px;
}

.btn-submit {
  max-width: 500px;
  margin: 10px 80px;
  border: none;
  height: 35px;
  border-radius: 5px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background-color: #0D0D0D;
  color: #F9F4F5;
  cursor: pointer;
}

footer {
  height: 10vh;
}
footer .line-detail {
  height: 1.2px;
  background-color: #e9e9e9;
  width: 85%;
  margin: auto;
}
footer img {
  height: 200px;
}
footer .references {
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
footer .references img {
  opacity: 0.5;
  transition: 2s;
}
footer .references img:hover {
  opacity: 1;
}
footer .references ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .references ul h3 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  color: #085CA6;
}
footer .references ul li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #0D0D0D;
}
footer .references ul li a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #0D0D0D;
  transition: 1s;
}
footer .references ul li a:hover {
  color: #e9e9e9;
}

.content-programing-page {
  padding-top: 100px;
}
.content-programing-page article {
  padding: 30px 250px;
  width: 100%;
}
.content-programing-page article h1, .content-programing-page article h2 {
  font-size: 2em;
  font-weight: 700;
  color: #085CA6;
  font-family: "Ubuntu", sans-serif;
  padding-bottom: 20px;
}
.content-programing-page article p {
  font-size: 18px;
  font-weight: 400;
  color: #0D0D0D;
  font-family: "Inter", sans-serif;
  line-height: 1.5em;
  text-align: justify;
  padding: 20px 0px;
  text-indent: 3em;
}
.content-programing-page article img {
  max-width: 100%;
  padding: 30px 0px;
}
.content-programing-page article ul > li {
  font-size: 18px;
  font-weight: 400;
  color: #0D0D0D;
  font-family: "Inter", sans-serif;
  text-align: justify;
  padding: 15px 10px;
  margin-left: 30px;
}
.content-programing-page article table {
  border: 1px solid #0D0D0D;
  width: 90%;
  margin: 30px auto;
  height: 60px;
  font-size: 18px;
  font-weight: 400;
  color: #0D0D0D;
  font-family: "Inter", sans-serif;
  border-collapse: collapse;
}
.content-programing-page article table th, .content-programing-page article table td {
  border: 1px solid black;
  text-align: center;
  padding: 5px;
}

html {
  user-select: none;
}

@media (max-width: 774px) {
  nav {
    margin: 0;
  }

  .logo-item h1 {
    font-size: 16px;
  }

  .menu {
    display: none;
  }

  .menu-burger {
    display: block;
  }

  .content-homepage {
    padding: 200px 10px 50px 10px;
  }

  .content-homepage h1 {
    font-size: 45px;
  }

  .content-homepage p {
    max-width: 320px;
    font-size: 15px;
    text-align: justify;
    padding-right: 20px;
    margin-right: 10px;
    line-height: 1.5em;
  }

  .text-content-main h2 {
    font-size: 24px;
    margin-top: 50px;
    padding-left: 20px;
  }

  .text-content-main p {
    padding: 0px 30px;
    font-size: 14px;
  }

  .about-us img {
    max-height: 275px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  /*--------------------------------------------------*/
  .box-content-item {
    flex-wrap: wrap;
    margin: 10px;
  }

  .box-content h1 {
    font-size: 30px;
    width: 100%;
    margin: 30px 10px;
  }

  .box-content-item img {
    height: 100px;
    margin: 5% 25%;
  }

  .content-boxs {
    grid-template-columns: 1fr;
  }

  .content-item-text h2 {
    font-size: 18px;
  }

  .content-item-text p {
    font-size: 14px;
  }

  /*--------------------------------------------------*/
  .contact {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .question-information {
    padding-left: 30px;
  }

  .detail-information {
    width: 80%;
  }

  .detail-information p {
    font-size: 14px;
    text-align: left;
  }

  .forms {
    padding-bottom: 30px;
  }

  .question-information h2 {
    font-size: 24px;
  }

  .contact-form {
    margin: 0px 10px;
    padding-top: 10%;
  }

  .contact-form label {
    margin: 0px 20px;
  }

  .contact-form input {
    margin: 10px 20px;
  }

  .btn-submit {
    margin: 5px 20px;
  }

  .content-programing-page article {
    padding: 20px 15px;
  }
  .content-programing-page article h1, .content-programing-page article h2 {
    font-size: 20px;
  }
  .content-programing-page article p {
    font-size: 15px;
  }
  .content-programing-page article ul > li {
    font-size: 15px;
  }
  .content-programing-page table {
    max-width: 100%;
    text-align: center;
  }
  .content-programing-page table th {
    font-size: 15px;
  }
  .content-programing-page table td {
    font-size: 15px;
  }

  .references img {
    display: none;
  }
  .references h3 {
    font-size: 16px;
  }
  .references li a {
    font-size: 15px;
  }
}

/*# sourceMappingURL=style.css.map */
