/* 🔥 IMPORTAÇÃO OTIMIZADA */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Calistoga&display=swap');

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}




* {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}


body {
  overflow-x: hidden;
}


/* =========  HEADER =========   */




.header {
  background: #014AAD;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 16px; /* 🔥 controla melhor lateral */
  width: 100%;
  overflow-x: hidden; /* 🔥 evita estourar */
}




a {
  text-decoration: none;
  color: inherit;
}

.nav__link {
  padding: .5rem;
  font-size: 1.1rem;
  color: #fff;
  transition: 0.3s;
}

.nav__link:hover {
  color: #ffd700;
}







/* LOGO */
.header__logo {
  max-height: 100px;
  margin-left: 2%;
}

/* NAV */
.nav__menu {
  display: flex;
  gap: .5rem;
}





/* MOBILE */
.nav__toggle {
  display: none;
}

@media (max-width: 800px) {

  .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;  /* 🔥 tamanho fixo */
    height: 44px;
    padding: 0;   /* 🔥 remove excesso */
    border: none;
    background: none;
    cursor: pointer;
  }

  .nav__menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 100px;
    right: 0;
    background: #014AAD;
    opacity: 0.9;
    height: 0;
    transition: .6s;
    z-index: 1000;
    visibility: hidden;
    overflow-y: hidden;
    padding-top: 1rem;
  }

  #nav.active .nav__menu {
    height: calc(100vh - 70px);
    visibility: visible;
    overflow-y: auto;
  }

  .nav__item {
    padding-top: 1.5rem;
    text-align: center;
  }

  .nav__link {
    font-size: 1.5em;
  }

  .nav__hamburger {
    display: block;
    width: 28px; /* 🔥 menor e mais seguro */
    border-top: 3px solid white;
  }

  .nav__hamburger::before,
  .nav__hamburger::after {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    margin-top: 5px;
    transition: .3s;
    position: relative;
  }

  #nav.active .nav__hamburger {
    border-top-color: transparent;
  }

  #nav.active .nav__hamburger::before {
    transform: rotate(135deg);
  }

  #nav.active .nav__hamburger::after {
    transform: rotate(-135deg);
    top: -9px;
  }
}


/*========== FIM HEADER ==========*/


/*=========  HERO / BANNER ========= */

.hero-banner {
  background: #E6E8FA;
  color: #014AAD;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-weight: bold;
  text-align: center;
}

.hero-banner__content {
  max-width: 800px;
}

.hero-banner__subtitle {
  color: #474a51;
  font-size: 2rem;
}

.hero-banner__title {
  font-size: 2.5rem;
}

/* RESPONSIVO */
@media (max-width: 500px) {
  .hero-banner__subtitle {
    font-size: 1.5rem;
  }

  .hero-banner__title {
    font-size: 1.8rem;
  }
}

/* ========  FIM  HERO /   BANNER ======== */


/*=========== SECTION CURSOS =======*/

/* GRID PRINCIPAL */
.courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas fixas */
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.course-card {
  padding: 15px;
  border-radius: 8px;
  box-shadow: 10px 10px 20px rgba(0, 0, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
  background: #fff;
}

.course-card:hover {
  box-shadow: 10px 10px 20px rgba(0, 0, 255, 0.3);
}

/* IMAGEM */
.course-card__image {
  border-radius: 6px;
  width: 100%;
}

/* BOTÃO */
.course-card__button {
  margin-top: 10px;
  border-radius: 10px;
  background-color: #004AAD;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 10px 20px;
  text-align: center;
  transition: 0.3s;
}

.course-card__button:hover {
  color: #ffd700;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .courses__grid {
    grid-template-columns: repeat(2, 1fr); /* 2 por linha */
  }
}

@media (max-width: 600px) {
  .courses__grid {
    grid-template-columns: 1fr; /* 1 por linha */
  }
}

/*=========== FIM SECTION CURSOS =======*/



/* ======     ABOUT    ====== */

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  color: #474a51;
}

/* TEXTO */
.about__content {
  flex: 1;
}

.about__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #004AAD;
}

.about__text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about__highlight {
  font-size: 1.2rem;
  font-weight: bold;
  color: #004AAD;
}

/* IMAGEM */
.about__image-wrapper {
  flex: 1;
}

.about__image {
  width: 100%;
  border-radius: 10px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
  }
}



/* ====== FIM  ABOUT ====== */


/* ====== SECTION QUALIDADES ====== */

.qualidades {
  background-color: white;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.qualidades-info {
  max-width: 1100px;
  width: 100%;
}

/* TÍTULO */
.qualidades-info h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #004AAD;
}

/* TEXTO */
.qualidades-info p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #474a51;
}

/* DESTAQUE */
.qualidades-info strong {
  color: #004AAD;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .qualidades-info h2 {
    font-size: 2rem;
  }

  .qualidades-info p {
    font-size: 1rem;
    text-align: left;
  }
}

/* ====== FIM QUALIDADES ====== */




/* ====== SECTION PÚBLICO ====== */

.publico {
  background: #fff;
  padding: 60px 20px;
}

/* TÍTULO */
.info-treinamento h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #004AAD;
  margin-bottom: 40px;
}

/* CARD */
.publico-item {
  max-width: 1100px;
  margin: 0 auto 30px auto;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 25px;
  border-radius: 15px;
  background: #014AAD;
  box-shadow: 10px 10px 20px rgba(0, 0, 255, 0.2);
  color: #fff;
}

/* IMAGEM */
.figura {
  flex: 1;
  display: flex;
  justify-content: center;
}

.imagemPublico {
  max-width: 250px;
  border-radius: 10px;
}

/* TEXTO */
.publico-item div:last-child {
  flex: 2;
}

.publico-item h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.publico-item p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .publico-item {
    flex-direction: column;
    text-align: center;
  }

  .imagemPublico {
    max-width: 200px;
  }
}

@media (max-width: 500px) {
  .info-treinamento h2 {
    font-size: 1.8rem;
  }

  .publico-item h2 {
    font-size: 1.5rem;
  }

  .publico-item p {
    font-size: 1rem;
  }
}

/* ====== FIM PÚBLICO ====== */



/* ====== SECTION CERTIFICADO ====== */

.certificado {
  background: #e8f1f2;
  padding: 60px 20px;
}

/* CONTAINER */
.certificado {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* TEXTO */
.certificado-info {
  flex: 1;
  max-width: 500px;
}

.certificado-info h2 {
  font-size: 2.5rem;
  color: #004AAD;
  margin-bottom: 20px;
}

.certificado-info ul {
  list-style: none;
  padding: 0;
}

.certificado-info li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #474a51;
  display: flex;
  align-items: flex-start;
}

/* BOLINHA */
.certificado-info li::before {
  content: "✔";
  color: #004AAD;
  font-weight: bold;
  margin-right: 10px;
}

/* IMAGEM */
.certificado_imagem {
  flex: 1;
  display: flex;
  justify-content: center;
}

.certificadoVencedor {
  max-width: 100%;
  border-radius: 10px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .certificado {
    flex-direction: column;
    text-align: center;
  }

  .certificado-info li {
    justify-content: center;
  }
}

/* ====== FIM CERTIFICADO ====== */




/* ====== SECTION HOTMART ====== */

.hotmart {
  background: #ffffff;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* TEXTO */
.hotmart-info {
  flex: 1;
  max-width: 500px;
}

.hotmart-info h2 {
  font-size: 2.5rem;
  color: #004AAD;
  margin-bottom: 20px;
}

/* LISTA */
.hotmart-info ul {
  list-style: none;
  padding: 0;
}

.hotmart-info li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #474a51;
  display: flex;
  align-items: flex-start;
}

/* ÍCONE CHECK */
.hotmart-info li::before {
  content: "✔";
  color: #004AAD;
  font-weight: bold;
  margin-right: 10px;
}

/* IMAGEM */
.hotmart_imagem {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hotmartVencedor {
  max-width: 100%;
  border-radius: 10px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .hotmart {
    flex-direction: column;
    text-align: center;
  }

  .hotmart-info li {
    justify-content: center;
  }
}

/* ====== FIM HOTMART ====== */


/* ====== SECTION LANÇAMENTO ====== */

.lancamento {
  background: #004AAD;
  padding: 60px 20px;
  color: #fff;
}

/* CONTAINER */
.lancamento__container {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* 🔥 FORÇA IMAGEM PRA BAIXO */
  align-items: center;
  gap: 30px;
}

/* TEXTO */
.lancamento__content {
  width: 100%;
  max-width: 700px;
}

/* TÍTULO */
.lancamento__title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 30px;
}

/* CARD */
.lancamento__card {
  background: #fff;
  color: #004AAD;
  padding: 25px;
  border-radius: 15px;
  border: 4px solid #fff;
}

/* SUBTÍTULO */
.lancamento__subtitle {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

/* DESTAQUE */
.lancamento__highlight {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  border-top: 3px solid #004AAD;
  padding-top: 10px;
}

/* LISTA */
.lancamento__list {
  list-style: none;
  padding: 0;
}

.lancamento__list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.lancamento__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #004AAD;
  border-radius: 50%;
  margin-right: 10px;
}

/* IMAGEM */
.lancamento__image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.lancamento__image {
  max-width: 500px;
  width: 100%;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .lancamento__title {
    font-size: 2.2rem;
  }

  .lancamento__subtitle {
    font-size: 1.6rem;
  }
}


/* ====== FIM SECTION LANÇAMENTO ====== */


/* ====== SECTION CONTATO ====== */

.contato-bg {
  background: #191970;
  color: #fff;
  padding: 60px 20px;
}

/* CONTAINER */
.contato__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* TÍTULO */
.contato__title {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

/* REDES */
.contato__redes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ÍCONES */
.rede {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.rede img {
  width: 100%;
  border-radius: 50%;
}

/* HOVER */
.rede:hover {
  transform: scale(1.1);
}


/* ====== FIM SECTION CONTATO ====== */

/* ====== FOOTER ====== */

.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.footer__content p {
  margin-bottom: 10px;
}

/* RESPONSIVO */
@media (max-width: 600px) {

  .contato__title {
    font-size: 2rem;
  }

  .rede {
    width: 50px;
    height: 50px;
  }

}

/* ====== FIM FOOTER ====== */




/* ====== SECTION OFFICE ====== */

.office {
  background: #fff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.office__container {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

/* TÍTULO */
.office__title {
  font-size: 2.5rem;
  color: #004AAD;
  margin-bottom: 40px;
}

/* VÍDEO */
.office__video-wrapper {
  display: flex;
  justify-content: center;
}

.office__video {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 10px 10px 20px rgba(0, 0, 255, 0.2);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .office__title {
    font-size: 2rem;
  }

  .office__video {
    max-width: 100%;
  }
}

/* ====== FIM SECTION OFFICE ====== */