/* Importando fontes */
@font-face {
  font-family: "poppins-regular";
  src: url("Fontes/Poppins/Poppins-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "poppins-medium";
  src: url("Fontes/Poppins/Poppins-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "poppins-semibold";
  src: url("Fontes/Poppins/Poppins-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "poppins-bold";
  src: url("Fontes/Poppins/Poppins-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "poppins-italic";
  src: url("Fontes/Poppins/Poppins-Italic.ttf") format("truetype");
}

@font-face {
  font-family: "manuscrito";
  src: url("Fontes//ylee_mhim/font.ttf") format("truetype");
}

/* Scroll */
html ::-webkit-scrollbar {
  width: 10px;
}
html ::-webkit-scrollbar-thumb {
  border-radius: 50px;
  border: 2px solid #f9fbfd;
  background: #adadad;
}
html ::-webkit-scrollbar-track {
  background: #f9fbfd;
}

/* Resetando as configurações padrões da página */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Cor de fundo da página */
body {
  display: flex;
  flex-direction: column;
  background-color: #0064a9;
}

/* -------------- HEADER -------------- */

header {
  display: flex;
  flex-direction: column;

  width: 100%;
  height: auto;
}

/* -------------- INÍCIO SUB-HEADER -------------- */

/* Estilização da área que possui o E-mail, Whatsapp e Linkedin */
.sub-header {
  width: 100%;
  background-color: #0064a9;
}

.subheader-infos {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  width: 100%;
  height: auto;

  /* Centralizando a página */
  margin: 0 auto;
  max-width: 1500px;

  padding: 15px 5vw 15px 5vw;

  text-decoration: none;
}

/* Margens para telas maiores que 1500px de largura */
@media screen and (min-width: 1500px) {
  .subheader-infos {
    padding: 15px 75px 15px 75px;
  }
}

.info-social p {
  font-family: "poppins-regular";
  font-size: 13.3px;
  color: #f9fbfd;
}

.infos-esquerda a,
.infos-direita a {
  display: flex;
  flex-direction: row;
  align-items: center;

  text-decoration: none;

  gap: 5px;
}

.infos-esquerda a:hover,
.infos-direita a:hover {
  scale: 1.02;
  transition: all 0.2s;
  cursor: pointer;
}

.socials {
  display: flex;
  flex-direction: row;

  gap: 25px;
}

.gtranslate_wrapper {
  display: flex;
  flex-direction: row;

  gap: 5px;
}

/* Ajustando o sub-header para telas menores */
@media screen and (max-width: 800px) {
  .info-social p {
    display: none;
  }

  .infos-esquerda a {
    gap: 10px;
  }

  .infos-direita a {
    gap: 0;
  }

  .socials {
    gap: 5px;
  }
}

.email-subheader {
  width: 16px;
  height: 16px;

  background: url("Icones/icones-Socials/Icone-Mail.png") no-repeat;
  background-size: contain;
}

.whatsapp-subheader {
  width: 16px;
  height: 16px;

  background: url("Icones/icones-Socials/Icone-WhatsApp.png") no-repeat;
  background-size: contain;
}

.linkedin-subheader {
  width: 16px;
  height: 16px;

  background: url("Icones/icones-Socials/Icone-LinkedIn-Branco.png") no-repeat;
  background-size: contain;
}

/* -------------- FIM SUB-HEADER -------------- */

/* -------------- INÍCIO HEADER-PRINCIPAL -------------- */
.header-principal {
  width: 100%;
  border-bottom: 1px solid #e3e8ed;
  background-color: #ffffff;
}

nav {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  /* Centralizando a página */
  margin: 0 auto;
  max-width: 1500px;

  height: 100px;

  padding: 30px 5vw 30px 5vw;
}

/* Margens para telas maiores que 1500px de largura */
@media screen and (min-width: 1500px) {
  nav {
    padding: 30px 75px 30px 75px;
  }
}

/* Estilo do logo */
.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 35vw;
  height: auto;

  max-width: 150px;
  min-width: 75px;
}

nav ul {
  display: flex;
  align-items: center;

  gap: 25px;
}

nav ul li {
  list-style-type: none;
}

nav ul li:hover {
  scale: 1.02;
  transition: all 0.2s;

  cursor: pointer;
}

/* Itens do menu */
nav ul li a {
  text-decoration: none;

  font-family: "poppins-medium";
  font-size: 14px;
  color: #797979;
}

nav ul li a:hover {
  color: #0064a9;
  transition: all 0.2s;

  cursor: pointer;
}

/* Ícone do menu */
.menu-icon {
  display: none;
  cursor: pointer;
}

.menu-icon i {
  color: #797979;
  font-size: 20px;
}

.menu-icon i:hover {
  color: #0064a9;
  transition: all 0.2s;
}

/* Estilo do header para telas menores */
@media (max-width: 1000px) {
  nav ul {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    flex-direction: column;
    text-align: center;
    background: #ffffff;
    gap: 0;
    overflow: hidden;
    z-index: 10;
    max-height: 0;
    transition: max-height 0.5s ease-out;
    border-bottom: 1px solid #e3e8ed;
  }
  nav ul li {
    padding: 15px 0;
  }
  .menu-icon {
    display: block;
  }
}

/* -------------- FIM HEADER-PRINCIPAL -------------- */

/* -------------- MAIN -------------- */
main {
  display: flex;
  flex-direction: column;

  width: 100%;
  height: auto;
  z-index: 1; /* Garante que o conteúdo fique abaixo do 'footer' */

  background-color: #f9fbfd;
}

/* -------------- INÍCIO 'BANNER-PRINCIPAL' -------------- */
.banner-principal {
  width: 100%;
  height: 25vh;
  min-height: 150px;
  max-height: 450px;
}

.banner-principal img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}
/* -------------- FIM 'BANNER-PRINCIPAL' -------------- */

.titulo {
  display: flex;
  flex-direction: row;

  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
  height: auto;

  padding: 50px 5vw 12px 5vw;
}

@media screen and (min-width: 1500px) {
  .titulo {
    padding: 50px 75px 12px 75px;
  }
}

@media screen and (max-width: 800px) {
  .titulo {
    padding: 30px 5vw 12px 5vw;
  }
}

.titulo p {
  font-family: "poppins-semibold";
  font-size: 26px;
  color: #0064a9;
  text-align: left;

  cursor: default;
}

.titulo span {
  font-family: "poppins-medium";
  font-size: 30px;
  color: #ffae34;

  margin-right: 10px;
}

/* -------------- [INÍCIO] Conteúdo inicial -------------- */
.conteudo-inicial {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;

  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
  height: auto;

  padding: 0px 5vw 0px 5vw;
}

.paragrafo-principal {
  display: flex;
  flex-direction: column;

  width: 60%;
  height: 100%;
  gap: 10px;

  cursor: default;
}

.paragrafo-principal p {
  font-family: "poppins-medium";
  font-size: 14px;
  color: #797979;
  text-align: justify;
}

.imagem-principal {
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;

  width: 40%;
  height: auto;

  border-radius: 5px;
}

.imagem-principal img {
  width: auto;
  max-width: 100%;

  height: auto;
  max-height: 280px;
}

@media screen and (max-width: 950px) {
  .conteudo-inicial {
    flex-direction: column;
  }

  .paragrafo-principal {
    width: 100%;
  }

  .imagem-principal {
    width: 100%;
  }

  .imagem-principal img {
    height: auto;
    max-height: 300px;

    width: auto;
    max-width: 100%;
  }
}
/* -------------- [FIM] Conteúdo inicial -------------- */

/* -------------- [INÍCIO] Retângulo - Política de qualidade -------------- */
.politica-qualidade {
  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
  height: auto;

  margin-top: 40px;
  padding: 0px 5vw 0px 5vw;
}

.container {
  display: flex;
  flex-direction: column;

  background-color: #0064a9;
  border-radius: 8px;

  padding: 40px;
  gap: 30px;
}

.objetivo {
  display: flex;
  flex-direction: row;

  width: 100%;
  height: auto;

  gap: 40px;
}

.imagem-objetivo {
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;

  width: 25%;
  height: auto;
}

.imagem-objetivo img {
  display: flex;
  align-items: center;
  justify-content: center;

  width: auto;
  max-width: 100%;

  height: auto;
  max-height: 220px;
}

.textos-objetivo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: default;

  width: 75%;
}

.titulo-objetivo {
  font-family: "poppins-semibold";
  font-size: 22px;
  color: #ffae34;

  margin-bottom: 7px;
}

.fa-medal {
  font-size: 18px;
}

.subtitulo-objetivo {
  font-family: "poppins-semibold";
  font-size: 16px;
  color: #f9fbfd;

  margin-bottom: 2px;
}

.corpo-objetivo {
  display: flex;
  flex-direction: column;
  text-align: justify;

  font-family: "poppins-regular";
  font-size: 14px;
  color: #f9fbfd;
  hyphens: auto;

  gap: 5px;
  padding-left: 10px;
  border-left: 1px solid #e0e0e0;
}

.corpo-objetivo p {
  text-align: justify;
  hyphens: auto;
}

@media screen and (max-width: 950px) and (min-width: 501px) {
  .objetivo {
    display: flex;
    flex-direction: column;

    align-items: center;
  }

  .textos-objetivo {
    width: 100%;
  }

  .imagem-objetivo {
    width: 100%;
    padding: 0px 0px 0px 0px;
  }

  .imagem-objetivo img {
    max-height: 270px;
  }
}

@media screen and (max-width: 500px) {
  .politica-qualidade {
    background-color: #0064a9;
    padding: 0px;
  }

  .container {
    display: flex;
    flex-direction: column;

    padding: 40px 5vw 40px 5vw;
    gap: 30px;
  }

  .objetivo {
    display: flex;
    flex-direction: column;

    align-items: center;
  }

  .textos-objetivo {
    width: 100%;
  }

  .imagem-objetivo {
    width: 100%;
    padding: 0px 0px 0px 0px;
  }

  .imagem-objetivo img {
    max-height: 270px;
  }
}

@media screen and (max-width: 340px) {
  .titulo-objetivo {
    text-align: center;
  }

  .corpo-objetivo {
    padding-left: 0px;
    border-left: none;
  }
}

/* MVV */
.mvv {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;

  width: 100%;
  height: auto;

  cursor: default;
}

.card-mvv {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;

  justify-content: center;
  width: calc(100% / 3);
  height: 100%;
  padding: 0px 25px;
}

.icone-mvv img {
  width: 55px;
  height: auto;
}

.textos-mvv {
  display: flex;
  text-align: center;
  flex-direction: column;
}

.titulo-mvv p {
  font-family: "poppins-semibold";
  font-size: 16px;
  color: #ffffff;

  margin-bottom: 3px;
}

.descricao-mvv p {
  text-align: center;
  hyphens: auto;

  font-family: "poppins-regular";
  font-size: 14px;
  color: #e3e8ed;
}

.mvv .card-mvv:nth-of-type(2) {
  border-right: 1px solid #3181b6;
  border-left: 1px solid #3181b6;
}

@media screen and (max-width: 800px) and (min-width: 560px) {
  .card-mvv {
    width: calc(100% / 2);
  }

  .mvv .card-mvv:nth-of-type(2) {
    border-right: none;
  }

  .mvv .card-mvv:nth-of-type(3) {
    margin-top: 50px;
  }
}

@media screen and (max-width: 560px) {
  .card-mvv {
    width: 100%;
  }

  .mvv .card-mvv:nth-of-type(2) {
    border-top: 1px solid #3181b6;
    border-bottom: 1px solid #3181b6;
    border-right: none;
    border-left: none;
  }

  .mvv .card-mvv:nth-of-type(1) {
    padding-bottom: 25px;
  }

  .mvv .card-mvv:nth-of-type(2) {
    padding-bottom: 25px;
    padding-top: 25px;
  }

  .mvv .card-mvv:nth-of-type(3) {
    padding-top: 25px;
  }
}
/* -------------- [FIM] Retângulo - Política de qualidade -------------- */

/* -------------- [INÍCIO] Depoimentos -------------- */
.depoimentos {
  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
  height: auto;

  margin-top: 40px;
  padding: 0px 5vw 0px 5vw;
}

.depoimentos-itens {
  display: flex;
  flex-direction: column;

  width: 100%;
  height: auto;
}

.titulo-depoimentos {
  display: flex;
  justify-content: center;
  align-items: center;
}

.titulo-depoimentos p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  font-family: "poppins-semibold";
  font-size: 16px;
  color: #797979;

  margin-bottom: 20px;

  cursor: default;
}

.wrapper-depoimentos {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
}

.carousel-depoimentos {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;

  width: 100%;
  gap: 20px;
}

.card-depoimentos {
  list-style: none;
  width: calc((100% / 3) - 14px);
  padding: 30px;

  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.025);
  border: 1px solid #eaecee;
  border-radius: 5px;

  cursor: default;
}

@media screen and (max-width: 950px) and (min-width: 601px) {
  .card-depoimentos {
    width: calc((100% / 2) - 10px);
  }
}

@media screen and (max-width: 600px) {
  .card-depoimentos {
    width: 100%;
  }
}

.titulo-card-depoimentos p {
  text-align: left;

  font-family: "poppins-medium";
  font-size: 15px;
  color: #0064a9;

  margin-top: 15px;
}

.cargo-card-depoimentos p {
  text-align: left;

  font-family: "poppins-italic";
  font-size: 13px;
  color: #797979;
}

.resumo-card-depoimentos p {
  text-align: justify;

  font-family: "poppins-medium";
  font-size: 13px;
  color: #797979;

  hyphens: auto;
}
/* -------------- [FIM] Depoimentos -------------- */

/* -------------- [INICIO] Parceiros -------------- */
.parceiros {
  display: flex;
  flex-direction: row;

  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
  height: auto;

  padding: 0px 5vw 0px 5vw;
  margin-top: 40px;
  margin-bottom: 40px;
}

.logos-parceiros {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  width: 100%;
}

.logos-parceiros img {
  width: calc(100% / 5);
  height: 115px;
  padding: 0px 20px;

  object-fit: contain; /* Mantém a proporção */
}

@media screen and (max-width: 1200px) and (min-width: 950px) {
  .logos-parceiros img {
    width: calc(100% / 4);
  }
}

@media screen and (max-width: 950px) and (min-width: 700px) {
  .logos-parceiros img {
    width: calc(100% / 3);
  }
}

@media screen and (max-width: 700px) and (min-width: 350px) {
  .logos-parceiros img {
    width: calc(100% / 2);
  }

  .logos-parceiros img {
    padding: 5px 20px;
  }
}

@media screen and (max-width: 350px) {
  .logos-parceiros img {
    width: 100%;
  }

  .logos-parceiros img {
    padding: 5px 20px;
  }
}

/* -------------- [FIM] Parceiros -------------- */

/* -------------- FOOTER -------------- */
footer {
  display: flex;
  flex-direction: column;

  width: 100%;
  height: auto;
}

/* -------------- INÍCIO 'FOOTER-PRINCIPAL' -------------- */
.footer-principal {
  width: 100%;
  border-top: 1px solid #e3e8ed;
  background-color: #ffffff;
}

.footer-principal-itens {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  height: auto;

  /* Centralizando a página */
  margin: 0 auto;
  max-width: 1500px;
  width: 100%;

  padding: 30px 5vw 30px 5vw;
}

/* Margens para telas maiores que 1500px de largura */
@media screen and (min-width: 1500px) {
  .footer-principal-itens {
    padding: 30px 75px 30px 75px;
  }
}

.infos-esquerda-footer {
  display: flex;
  flex-direction: row;
}

.logo-projetec-footer img {
  width: auto;
  height: 25px;

  cursor: pointer;
}

.sessoes-footer {
  display: flex;
  flex-direction: column;
}

.infos-direita-footer {
  display: flex;
  flex-direction: row;

  gap: 10px;
}

.infos-direita-footer a img {
  width: auto;
  height: 19px;

  cursor: pointer;
}

.infos-direita-footer a img:hover {
  scale: 1.05;
  transition: all 0.2s;
}

.sessoes-footer {
  margin: 0 0 0 20px;
}

.sessoes-footer a {
  font-family: "poppins-medium";
  font-size: 14px;
  color: #797979;
  line-height: 25px;

  text-decoration: none;

  cursor: pointer;
}

.sessoes-footer a:hover {
  scale: 1.02;
  color: #0064a9;

  transition: all 0.2s;
}

@media screen and (max-width: 500px) {
  .infos-esquerda-footer {
    flex-direction: column;
  }

  .sessoes-footer {
    margin: 10px 0 0 0;
  }
}

@media screen and (max-width: 250px) {
  .footer-principal {
    flex-direction: column;
    justify-content: left;
  }

  .infos-esquerda-footer {
    flex-direction: column;
  }

  .sessoes-footer {
    margin: 10px 0 10px 0;
  }
}
/* -------------- FIM 'FOOTER-PRINCIPAL' -------------- */

/* -------------- INÍCIO 'SUB-FOOTER' -------------- */

.sub-footer {
  width: 100%;
  background-color: #0064a9;
}

.subfooter-itens {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  /* Centralizando a página */
  margin: 0 auto;
  max-width: 1500px;

  padding: 15px 5vw 15px 5vw;
}

/* Margens para telas maiores que 1500px de largura */
@media screen and (min-width: 1500px) {
  .subfooter-itens {
    padding: 15px 75px 15px 75px;
  }
}

.sub-footer-esquerdo {
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: "poppins-regular";
  color: #ffffff;
  font-size: 12px;

  cursor: default;
}

.sub-footer-direito a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  font-family: "poppins-regular";
  font-size: 11px;
  text-decoration: none;
  color: #8bccf8;

  gap: 5px;

  cursor: pointer;
}

.sub-footer-direito a:hover {
  scale: 1.02;
  transition: all 0.2s;
}

.sub-footer-direito a img {
  width: 11px;
  height: 11px;
}

@media screen and (max-width: 600px) {
  .subfooter-itens {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .sub-footer-direito a {
    margin-top: 5px;
  }
}

/* -------------- FIM 'SUB-FOOTER' -------------- */

@media screen and (min-width: 1500px) {
  .conteudo-inicial,
  .depoimentos,
  .parceiros,
  .politica-qualidade {
    padding: 0px 75px 0px 75px;
  }
}
