@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}

:root {
  --yellow: #f9d821;
  --gray: #555555;
  --light-gray: #b4b4b4;
  --dark-gray: #757575;
  --strong-yellow: #fbff00;
}

body {
  overflow-x: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 2px solid var(--strong-yellow);
  border-bottom: 2px solid var(--strong-yellow);
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  max-width: 95em;
  margin: 0 auto;
  overflow: hidden;
}

h2 {
  font-size: clamp(0.5em, 0.8em + 2vw, 1.5em);
}

h3 {
  font-size: clamp(0.35em, 0.5em + 2vw, 1.25em);
}

/* HEADER */
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 10vh;
}

header .logo {
  margin-top: 30px;
  width: 120px;
}

.nav-list {
  display: flex;
  list-style: none;
  position: relative;
}

.nav-list li {
  letter-spacing: 1.5px;
  margin-left: 20px;
  transition: 0.4s ease;
  margin-top: 10px;
  padding: 11px;
}

.nav-list li:hover > .sub-nav {
  display: block;
  transition: 0.5s ease;
}

.nav-list a {
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
  text-transform: uppercase;
  --b: 0.2em; /* the thickness of the line */
  --c: #ffe800; /* the color */

  color: #0000;
  padding-block: var(--b);
  background: linear-gradient(var(--c) 50%, #4b4b4b 0) 0%
      calc(100% - var(--_p, 0%)) / 100% 200%,
    linear-gradient(var(--c) 0 0) 0% var(--_p, 0%) / var(--_p, 0%) var(--b)
      no-repeat;
  -webkit-background-clip: text, padding-box;
  background-clip: text, padding-box;
  transition: 0.3s var(--_s, 0s) linear,
    background-size 0.3s calc(0.3s - var(--_s, 0s));
}

.nav-list a:hover {
  --_p: 100%;
  --_s: 0.3s;
}

.sub-nav {
  position: absolute;
  list-style: none;
  margin-left: 0;
  width: 200px;
  display: none;
}
.submenu-mobile {
  display: none;
}

.sub-nav li {
  width: 100%;
  left: 0;
  padding: 5px;
  margin: 10px;
}

.sub-nav li a {
  left: 50%;
  transform: translateX(-50%);
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: var(--light-gray);
  margin: 8px;
  transition: 0.4s;
}

.sm-icons {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.sm-icons i {
  color: #4b4b4b;
  font-size: 22px;
  transition: 0.3s ease;
}

.sm-icons i:hover {
  color: #ffe800;
}
/* HEADER */

/* MAIN */

/* MECANISMOS */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 60vh;
}

.section-content {
  display: flex;
  flex-direction: row;
  margin-top: 5em;
}

.left-mec {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.left-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(35% 0%, 100% 0%, 75% 100%, 0% 100%);
  animation: slideInLeft;
  animation-duration: 5s;
}

.left-2 img {
  height: 600px;
}

.section-content h1 {
  text-transform: uppercase;
  color: var(--gray);
  font-size: clamp(1.2em, 1.5em +3vw, 1.875em);
  font-weight: 900;
  text-align: center;
}

.section-content p {
  margin-top: 2em;
  font-weight: 400;
  max-width: 90%;
  line-height: 25px;
  color: var(--gray);
}

.right-mec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(35% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.right-mec img {
  width: 100%;
  animation: backInDown;
  animation-duration: 2s;
}
/* MECANISMOS */

/* OBJETIVOS E MISSÃO */
.lista-objetivos,
.sublista-objetivos {
  margin-top: 2em;
  font-weight: 400;
  max-width: 90%;
  line-height: 25px;
  color: var(--gray);
  list-style: disc;
}

.lista-objetivos li {
  list-style: disc;
  margin-left: 2em;
}

.sublista-objetivos li {
  list-style: disc;
}

.missao {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--gray);
  animation: backInRight;
  animation-duration: 5s;
}

.missao h1 {
  margin-bottom: 2em;
  font-size: 30px;
  font-weight: 900;
}

.grid-missao {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: space-around;
  align-items: center;
  gap: 2em;
  padding: 1.25em;
}

.box-missao {
  color: var(--gray);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 25em;
  height: 25em;
  padding: 0.5em;
  text-align: center;
  border: 2px solid var(--yellow);
  border-radius: 0 1.25em 0 1.25em;
  transition: 0.5s;
}

.box-missao h2 {
  font-weight: 900;
  margin-top: 1em;
}

.box-missao p {
  margin-top: 1em;
  font-size: 15px;
}

.box-missao:hover {
  scale: 1.1;
  border-radius: 1.25em 0 1.25em 0;
  box-shadow: 2.8px 2.8px 2.2px rgba(0, 0, 0, 0.02),
    6.7px 6.7px 5.3px rgba(0, 0, 0, 0.028),
    12.5px 12.5px 10px rgba(0, 0, 0, 0.035),
    22.3px 22.3px 17.9px rgba(0, 0, 0, 0.042),
    41.8px 41.8px 33.4px rgba(0, 0, 0, 0.05),
    100px 100px 80px rgba(0, 0, 0, 0.07);
}
/* OBJETIVOS E MISSÃO */

/* PROJETO LUMINOTÉCNICO */
.table-2 {
  margin-top: 2em;
}

.table-2 table {
  padding: 20px;
}

.table-2 thead {
  background-color: var(--yellow);
  font-size: 15px;
}

.table-2 th {
  padding: 0.2em;
}

.table-2 td {
  background-color: #d4d4d4;
  font-size: 13px;
  font-weight: 600;
  padding: 0.5em;
}

.right-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* FIM PROJETO LUMINOTÉCNICO */

/* METAS */
.metas {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5em;
  animation: backInRight;
  animation-duration: 2s;
}

.metas h1 {
  color: var(--gray);
  font-size: clamp(1.2em, 1.5em +3vw, 1.875em);
  font-weight: 900;
  margin-bottom: 2em;
}

.metas p {
  color: var(--gray);
  font-size: clamp(0.5em, 1.2em +3vw, 1.5em);
  font-weight: 700;
  font-style: italic;
  padding: 5px;
  text: center;
}

.grid-metas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: space-around;
  align-items: center;
  gap: 2em;
  padding: 1.25em;
}

.grid-metas-images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: space-around;
  align-items: center;
  gap: 7em;
  padding: 1.25em;
}

.box-metas {
  color: var(--gray);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 25em;
  height: 25em;
  padding: 0.5em;
  text-align: center;
  border: 2px solid var(--gray);
  border-radius: 0 1.25em 0 1.25em;
  transition: 0.5s;
}

.box-metas h2 {
  font-weight: 900;
  margin-top: 1em;
}

.box-metas p {
  margin-top: 1em;
  font-size: 15px;
}

.box-metas:hover {
  scale: 1.1;
  border-radius: 1.25em 0 1.25em 0;
  border: 2px solid var(--yellow);
  box-shadow: 2.8px 2.8px 2.2px rgba(0, 0, 0, 0.02),
    6.7px 6.7px 5.3px rgba(0, 0, 0, 0.028),
    12.5px 12.5px 10px rgba(0, 0, 0, 0.035),
    22.3px 22.3px 17.9px rgba(0, 0, 0, 0.042),
    41.8px 41.8px 33.4px rgba(0, 0, 0, 0.05),
    100px 100px 80px rgba(0, 0, 0, 0.07);
}

.box-metas img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn-metas {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border: 2px solid var(--gray);
  background-color: white; /* cor do botão */
  color: var(--gray);
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

/* FIM METAS */

/* ACOMPANHE SUA SOLICITAÇÃO */
.btn-solicitacao {
  margin-top: 2em;
  transition: 0.5s;
  height: auto;
  border-radius: 10px;
}

.btn-solicitacao a {
  border: 1px solid var(--gray);
  font-size: 20px;
  margin-top: 10em;
  border-radius: 10px;
  font-weight: 600;
  padding: 10px;
  --b: 0.2em; /* the thickness of the line */
  --c: #ffe800; /* the color */

  color: #0000;
  padding-block: var(--b);
  background: linear-gradient(var(--c) 50%, #4b4b4b 0) 0%
      calc(100% - var(--_p, 0%)) / 100% 200%,
    linear-gradient(var(--c) 0 0) 0% var(--_p, 0%) / var(--_p, 0%) var(--b)
      no-repeat;
  -webkit-background-clip: text, padding-box;
  background-clip: text, padding-box;
  transition: 0.3s var(--_s, 0s) linear,
    background-size 0.3s calc(0.3s - var(--_s, 0s));
}

.btn-solicitacao a:hover {
  --_p: 100%;
  --_s: 0.3s;
}

.contato-solicitacao {
  font-size: 25px;
  font-weight: 600;
}
/* ACOMPANHE SUA SOLICITAÇÃO */

/* NOTÍCIAS */

/* NOTÍCIAS */

.section-content-noticias {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zoomIn;
  animation-duration: 2s;
}

.section-content-noticias h3 {
  color: var(--gray);
}

.section-content-noticias h1 {
  color: var(--gray);
  font-size: 30px;
  font-weight: 900;
  margin-top: 2em;
}

.section-content-noticias p {
  color: var(--gray);
  font-size: 15px;
}

.grid-noticias {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: space-around;
  align-items: center;
  gap: 2em;
  padding: 1.25em;
  margin: 3em;
}

.box-noticias {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 25em;
  height: 30em;
  padding: 0.5em;
  box-sizing: border-box;
  border-radius: 0 1.25em 0 1.25em;
  transition: 0.5s;
  gap: 1em;
  text-align: center;
}

.box-noticias:hover {
  scale: 1.1;
  border-radius: 1.25em 0 1.25em 0;
  border: 2px solid var(--yellow);
  box-shadow: 2.8px 2.8px 2.2px rgba(0, 0, 0, 0.02),
    6.7px 6.7px 5.3px rgba(0, 0, 0, 0.028),
    12.5px 12.5px 10px rgba(0, 0, 0, 0.035),
    22.3px 22.3px 17.9px rgba(0, 0, 0, 0.042),
    41.8px 41.8px 33.4px rgba(0, 0, 0, 0.05),
    100px 100px 80px rgba(0, 0, 0, 0.07);
}

.box-noticias img {
  max-width: 100%;
  max-height: 100%;
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 0 1.25em 0 1.25em;
  transition: 0.5s;
}

.box-noticias img:hover {
  border-radius: 1.25em 0 1.25em 0;
}

.box-noticias a {
  text-decoration: none;
}

/* NOTÍCIAS */

/* MAIN */

/* FOOTER */
footer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  text-align: center;
  align-items: center;
  margin: 10em 0 0 0;
  color: var(--gray);
}

footer h4 {
  font-weight: 900;
}

footer .footer-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 0.5em;
  gap: 1em;
}

footer .footer-icons a {
  font-size: 25px;
  justify-content: flex-start;
  transition: 0.4s ease;
  color: var(--gray);
}

footer .footer-icons a:hover {
  color: #fbff00;
}
/* FOOTER */

/* RESPONSIVIDADE */
@media (max-width: 1550px) {
  .nav-list a {
    font-size: 9.5px;
    font-weight: 800;
  }

  .container {
    max-width: 85em;
  }
}

@media (max-width: 1400px) {
  .right-mec {
    display: none;
  }

  .left-2 {
    display: none;
  }

  .left-mec {
    width: 100%;
  }

  .lista-objetivos {
    width: 80%;
  }

  .right-2 {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .section-content p {
    max-width: 80%;
  }
}

@media (max-width: 1450px) {
  .nav-list a {
    font-size: 9px;
    font-weight: 900;
  }

  .container {
    max-width: 83em;
  }
}

@media (max-width: 1360px) {
  .container {
    max-width: 80em;
  }

  header .logo {
    width: 150px;
  }

  .nav-list li {
    letter-spacing: 1.2px;
    margin-left: 10px;
    padding: 1px 8px;
  }

  .nav-list a {
    font-size: 8px;
    font-weight: 900;
  }
}

@media (max-width: 1250px) {
  .nav-list a {
    font-size: 8px;
    font-weight: 900;
  }

  .container {
    max-width: 90em;
  }
}

@media (max-width: 1120px) {
  .container {
    position: relative;
    overflow-x: hidden;
  }
  /* ÍCONES */
  .sm-icons {
    position: absolute;
    left: 40%;
    bottom: 10px;
    z-index: -1;
  }

  .sm-icons i {
    color: #b3b3b3;
    font-size: 25px;
  }
  /* ÍCONES */

  /* MOBILE / HEADER */
  .nav-list {
    position: absolute;
    top: 11vh;
    right: 0;
    width: 100vw;
    height: 90vh;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
  }

  .submenu-mobile {
    display: initial;
  }

  .nav-list li:hover > .sub-nav {
    display: none;
  }

  .nav-list .label-menu {
    display: none;
  }

  .nav-list li {
    margin-left: 0;
    opacity: 0;
    margin-top: 0;
  }

  .nav-list a {
    font-size: 10px;
    font-weight: 900;
    color: var(--light-gray);
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu div {
    background: #b3b3b3;
  }
  /* MOBILE / HEADER */

  /* FOOTER */

  footer {
    flex-direction: column;
  }

  .sm-icons {
    display: none;
  }

  /* FOOTER */
}

@media screen and (max-width: 550px) {
  .container {
    max-width: 22em;
    position: relative;
    overflow-x: hidden;
  }

  /* MOBILE / HEADER */
  .nav-list {
    width: 87vw;
  }

  .nav-list a {
    font-size: 10px;
    font-weight: 900;
  }

  .sub-nav {
    display: none;
  }

  .sub-nav li {
    margin-top: 12px;
    padding: 0;
  }

  header .logo {
    width: 100px;
    margin-top: 5px;
  }

  footer {
    margin-top: 4em;
  }
  /* MOBILE / HEADER */

  .box-missao {
    width: 20em;
    height: 20em;
    padding: 0.5em;
    text-align: center;
    border: 2px solid var(--yellow);
    border-radius: 0 1.25em 0 1.25em;
    transition: 0.5s;
  }

  .box-missao img {
    width: 90px;
  }

  .box-missao h2 {
    font-weight: 900;
    margin-top: 1em;
  }

  .box-missao p {
    margin-top: 1em;
    font-size: 12px;
  }

  .metas h1 {
    font-size: 20px;
  }

  .box-metas {
    width: 20em;
    height: 20em;
  }

  .box-metas h2 {
    font-weight: 900;
    margin-top: 1em;
  }

  .btn-solicitacao a {
    font-size: 15px;
  }

  /* NOTÍCIAS */
  .section-content-noticias {
    animation: none;
    animation-duration: none;
  }
  .section-content-noticias h1 {
    margin-top: 1em;
  }

  .box-noticias {
    width: 15em;
    height: 22em;
  }

  .box-noticias img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 0 1.25em 0 1.25em;
    transition: 0.5s;
  }

  .section-content-noticias h3 {
    font-size: 14px;
  }

  .section-content-noticias p {
    font-size: 12px;
  }
  /* END NOTÍCIAS */
}
/* RESPONSIVIDADE */

/* CLASSE ADICIONADA COM JS */
.nav-list.active {
  transform: translateX(0);
}

/* ANIMAÇÕES */
@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}
/* ANIMAÇÕES */
