/* Importando fontes */
@font-face {
  font-family: "poppins-regular";
  src: url("../../../Estilo/Fontes/Poppins/Poppins-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "poppins-medium";
  src: url("../../../Estilo/Fontes/Poppins/Poppins-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "poppins-semibold";
  src: url("../../../Estilo/Fontes/Poppins/Poppins-SemiBold.ttf")
    format("truetype");
}

@font-face {
  font-family: "poppins-bold";
  src: url("../../../Estilo/Fontes/Poppins/Poppins-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "poppins-italic";
  src: url("../../../Estilo/Fontes/Poppins/Poppins-Italic.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("../../../Estilo/Icones/icones-Socials/Icone-Mail.png") no-repeat;
  background-size: contain;
}

.whatsapp-subheader {
  width: 16px;
  height: 16px;

  background: url("../../../Estilo/Icones/icones-Socials/Icone-WhatsApp.png")
    no-repeat;
  background-size: contain;
}

.linkedin-subheader {
  width: 16px;
  height: 16px;

  background: url("../../../Estilo/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] Container-Curso -------------- */
.container-curso {
  display: flex;
  flex-direction: column;

  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
  height: auto;

  padding: 30px 5vw 30px 5vw;
  gap: 40px;

  cursor: default;
}

/* Margens para telas maiores que 1500px de largura */
@media screen and (min-width: 1500px) {
  .container-curso {
    padding: 30px 75px 30px 75px;
  }
}

/* Cabeçalho */
.cabecalho {
  display: flex;
  align-items: center;
  flex-direction: row;

  width: 100%;
  height: auto;
  background-color: #0064a9;

  padding: 30px 25px;
  gap: 25px;
  border-radius: 5px;
}

.icone img {
  width: 55px;
  height: 55px;
}

.descricao {
  display: flex;
  flex-direction: column;

  gap: 15px;
}

.titulo p {
  font-family: "poppins-semibold";
  font-size: 23px;
  color: #f9fbfd;
  text-align: left;
  line-height: 33px;
}

.titulo span {
  font-family: "poppins-medium";
  font-size: 26px;
  color: #ffae34;

  margin-right: 10px;
}

@media screen and (max-width: 600px) {
  .titulo p {
    font-size: 22px;
  }

  .titulo span {
    font-size: 23px;
  }
}

@media screen and (max-width: 400px) {
  .titulo p {
    font-size: 21px;
  }

  .titulo span {
    font-size: 22px;
  }
}

.tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: auto;

  gap: 10px;
}

.tags p {
  font-family: "poppins-italic";
  font-size: 12px;
  color: #f9fbfd;

  padding: 2px 8px;
  border: 1px solid #f9fbfd;
  border-radius: 3px;
}

@media screen and (max-width: 500px) {
  .container-curso {
    padding: 0px 0px 30px 0px;
  }

  /* Cabeçalho */
  .cabecalho {
    padding: 30px 5vw;
    border-radius: 0px;
  }
}

/* -------------- [Fim] Container-Curso -------------- */

/* -------------- [Início] Container-Textos -------------- */
.container-textos {
  display: flex;
  flex-direction: row;

  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
  height: auto;

  padding: 0px 5vw 30px 5vw;
  gap: 30px;
  cursor: default;
}

/* Margens para telas maiores que 1500px de largura */
@media screen and (min-width: 1500px) {
  .container-textos {
    padding: 0px 75px 30px 75px;
  }
}

.textos {
  display: flex;
  flex-direction: column;

  width: 65%;
  gap: 30px;
}

.descricao-breve p {
  font-family: "poppins-medium";
  font-size: 14px;
  color: #797979;
  text-align: justify;
  hyphens: auto;
}

.programa {
  display: flex;
  flex-direction: column;

  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.025);
  border: 1px solid #eaecee;
  border-radius: 5px;
  gap: 5px;

  padding: 15px 25px;
}

.titulo-programa p {
  font-family: "poppins-semibold";
  font-size: 14px;
  color: #ffae34;
  text-align: center;
}

.corpo-programa p {
  font-family: "poppins-regular";
  font-size: 14px;
  color: #797979;
  text-align: justify;
  hyphens: auto;
}

.corpo-programa p span {
  font-family: "poppins-semibold";
  font-size: 14px;
  color: #797979;
  text-align: justify;
  hyphens: auto;
}

.coluna-lateral {
  display: flex;
  flex-direction: column;

  width: 35%;
  height: auto;

  gap: 10px;
}

.caracteristicas {
  display: flex;
  flex-direction: column;

  width: 100%;
  height: auto;
}

.card {
  display: flex;
  flex-direction: row;
  align-items: center;

  padding: 20px 0px;
  gap: 10px;
}

.caracteristicas .card:nth-of-type(2) {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.caracteristicas .card:nth-of-type(3) {
  border-bottom: 1px solid #e0e0e0;
}

.icone-card img {
  width: 40px;
}

.textos-card {
  display: flex;
  flex-direction: column;
}

.titulo-card p {
  font-family: "poppins-semibold";
  font-size: 13px;
  color: #0064a9;
}

.descricao-card p {
  font-family: "poppins-medium";
  font-size: 16px;
  color: #797979;
}

.aviso {
  width: 100%;
  height: auto;

  border: 1px solid #0064a9;
  border-radius: 3px;

  padding: 10px;
}

.aviso p {
  font-family: "poppins-regular";
  font-size: 14px;
  color: #0064a9;
  text-align: justify;
  hyphens: auto;
}

.aviso p strong {
  font-family: "poppins-semibold";
}

@media screen and (max-width: 750px) and (min-width: 451px) {
  .container-textos {
    flex-direction: column-reverse;
  }

  .textos {
    width: 100%;
  }

  .coluna-lateral {
    flex-direction: column;
    width: 100%;

    gap: 30px;
  }

  .caracteristicas {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .card {
    width: calc((100% / 2));
    padding: 20px;
  }

  .caracteristicas .card:nth-of-type(1) {
    border-right: 1px solid #e0e0e0;
  }

  .caracteristicas .card:nth-of-type(2) {
    border-top: none;
    border-bottom: none;
  }

  .caracteristicas .card:nth-of-type(3) {
    border-bottom: none;
    border-top: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
  }

  .caracteristicas .card:nth-of-type(4) {
    border-top: 1px solid #e0e0e0;
  }
}

@media screen and (max-width: 450px) {
  .container-textos {
    flex-direction: column-reverse;
  }

  .textos {
    width: 100%;
  }

  .coluna-lateral {
    flex-direction: column;
    width: 100%;

    gap: 30px;
  }

  .caracteristicas {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .card {
    width: 100%;
    padding: 0px;
  }

  .caracteristicas .card:nth-of-type(1) {
    padding: 0px 0px 20px 0px;
  }

  .caracteristicas .card:nth-of-type(2),
  .caracteristicas .card:nth-of-type(3) {
    padding: 20px 0px;
  }

  .caracteristicas .card:nth-of-type(4) {
    padding: 20px 0px 0px 0px;
  }
}
/* -------------- [Fim] Container-Textos -------------- */

/* -------------- 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' -------------- */
