/* 🔥 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;
}







img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}


body {
  overflow-x: hidden;
}




.botaoFixo {
  position: fixed;
  color: #fff;
  width: 160px;
  background-color: #00072D;
  font-size: 1.4em;
  padding: 8px;
  border-radius: 30px;
  border: #00DAF8 solid 5px;
  z-index: 999;
  bottom: 0.8%;
  right: 0.2%;
  text-align: center;
  font-weight: bolder;
  cursor: pointer;
}

.botaoFixo:hover {
  background-color: #00DAF8;
  color: #00072D;
}


@media (max-width: 820px) {
  .botaoFixo {
    display: none;

  }
}





.contato p, a { 
  margin: 0 10px 10px 10px; 
  color: white; 
  text-decoration: none; }






/*Publico*/


.conteudo {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #00072D;
  display: block;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0px;
  padding-bottom: 30px;
}



.info-conteudo {
  text-align: center;
  margin-bottom: 0.5em;
  font-size: 2em;
  color: white;
  padding-top: 20px;
}

.item-conteudo {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: left;
  border: solid 4px #00DAF8;
  border-radius: 20px;
  padding: 20px;
  margin: 10px;
  background-color: #00072D;
}


.item-conteudo h2 {
  font-size: 2em;
  color: white;
  text-align: left;
  padding-top: 10px;
  padding-left: 20px;
  padding-bottom: 10px;
}

.item-conteudo ul {
  padding-left: 20px;
  padding-bottom: 10px;
}


.item-conteudo ul li {
  font-size: 1.2em;
  color: white;
  text-align: left;
  margin-top: 20px;
}


@media screen and (max-width:600px) {
  .item-conteudo h2 {
    font-size: 2em;
  }

  .info-conteudo h1{
     font-size: 1.5em;
  }

}

@media(max-width: 800px) {
  .conteudo {
    padding-left: 10px;
    padding-right: 10px;
  }

}



/* ================= HEADER PADRÃO (IGUAL INDEX) ================= */

.header {
  background: #014AAD;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 1rem;
}

/* LOGO */
.header__logo {
  max-height: 100px;
  margin-left: 2%;
  padding-top: 10px;
}

.header__logo-link {
  display: flex;
  align-items: center;
}

/* NAV */
.nav__menu {
  display: flex;
  gap: .5rem;
}

.nav__link {
  padding: .5rem;
  font-size: 1.1rem;
  color: #fff;
  transition: 0.3s;
}

.nav__link:hover {
  color: #ffd700;
}

/* MOBILE */
.nav__toggle {
  display: none;
}

@media (max-width: 800px) {

  .nav__toggle {
    display: flex;
    padding: .5rem 1rem;
    border: none;
    background: none;
    cursor: pointer;
  }

  .nav__menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 100px;
    right: 0;
    background: #014AAD;
    opacity: 0.95;
    height: 0;
    transition: .6s;
    z-index: 1000;
    visibility: hidden;
    overflow-y: hidden;
    padding-top: 1rem;
  }

  #nav.active .nav__menu {
    height: calc(100vh - 100px);
    visibility: visible;
    overflow-y: auto;
  }

  .nav__item {
    padding-top: 1.5rem;
    text-align: center;
  }

  .nav__link {
    font-size: 1.5em;
  }

  .nav__hamburger {
    display: block;
    border-top: 4px solid white;
    width: 35px;
  }

  .nav__hamburger::before,
  .nav__hamburger::after {
    content: '';
    display: block;
    width: 35px;
    height: 4px;
    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 DO CURSO ================= */

.course-hero {
  background: #00072D;
  padding: 20px 0;
}

.course-hero__container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-hero__media {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* imagem principal */
.course-hero__image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  
}

/* responsivo */
@media (max-width: 1200px) {
  .course-hero__media {
    width: 75%;
  }
}

@media (max-width: 700px) {
  .course-hero__media {
    width: 85%;
  }
}

@media (max-width: 500px) {
  .course-hero__media {
    width: 95%;
  }
}

/* acessibilidade */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ================= FIM HERO DO CURSO ================= */





/* ================= COURSE SECTION ================= */

.course-section {
  background: #ffffff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.course-section__container {
  max-width: 700px;
  width: 100%;
}

.course-section__content {
  font-family: 'Inter', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* texto */
.course-section__text {
  font-size: 1.5rem;
  color: #333;
}

/* responsivo */
@media (max-width: 768px) {
  .course-section {
    padding: 40px 15px;
  }

  .course-section__text {
    font-size: 1.2rem;
  }
}

/* acessibilidade */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================= FIM COURSE SECTION ================= */


/* ================= COURSE SECONDARY HERO ================= */

.course-secondary-hero {
  background: #00072D;
  padding: 20px 0;
}

.course-secondary-hero__container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-secondary-hero__media {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-secondary-hero__image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
}

/* RESPONSIVO */
@media (max-width: 1200px) {
  .course-secondary-hero__media {
    width: 75%;
  }
}

@media (max-width: 700px) {
  .course-secondary-hero__media {
    width: 85%;
  }
}

@media (max-width: 500px) {
  .course-secondary-hero__media {
    width: 95%;
  }
}

/* ================= FIM COURSE SECONDARY HERO ================= */


/* ================= CERTIFICADO ================= */

.certificado-section {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #d3d3d3;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: black;
}

/* TEXTO */
.certificado-section__info {
  flex: 2 1 33%;
  margin: 0 90px;
}

.certificado-section__title {
  font-size: 3em;
  margin-bottom: 1em;
  color: #B8341C;
}

.certificado-section__text {
  font-size: 1.25em;
  line-height: 1.4;
}

/* IMAGEM */
.certificado-section__image {
  flex: 2 1 30%;
  margin: 0 2%;
}

.certificado-section__img {
  max-width: 100%;
}

/* RESPONSIVO (igual lógica original) */
@media screen and (max-width: 1000px) {
  .certificado-section {
    display: block;
  }

  .certificado-section__info {
    margin: 3%;
    text-align: left;
  }

  .certificado-section__title {
    text-align: center;
  }
}



/* ================= CERTIFICADO ================= */


/* ================= FIM HOTMART ================= */
.platform-section {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: white;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  color: #474a51;
  align-items: center;
}

/* TEXTO */
.platform-section__info {
  flex: 2 1 33%;
  margin: 0 90px;
}

.platform-section__title {
  font-size: 3em;
  margin-bottom: 1em;
  color: #B8341C;
}

.platform-section__text {
  font-size: 1.25em;
  line-height: 1.4;
}

/* IMAGEM */
.platform-section__image {
  flex: 2 1 30%;
  margin: 0 2%;
}

.platform-section__img {
  max-width: 100%;
}

/* RESPONSIVO */
@media screen and (max-width: 1000px) {
  .platform-section {
    display: block;
  }

  .platform-section__info {
    margin: 3%;
    text-align: left;
  }

  .platform-section__title {
    text-align: center;
  }
}

/* ================= FIM HOTMART ================= */



/* ================= PLANO VITALÍCIO ================= */


.offer-section {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background: #00072D;
  padding: 60px calc((100% - 960px) / 2);
  display: block;
  color: white;
}

/* BLOCO PRINCIPAL */
.offer-section__info {
  margin: 0 10px;
}

.offer-section__title {
  font-size: 4em;
  text-align: center;
  margin-bottom: 1em;
}

/* CARD */
.offer-section__card {
  border: 4px solid white;
  border-radius: 20px;
  padding: 20px;
  margin: 10px;
  background-color: white;
  color: #00072D;
}

.offer-section__subtitle {
  font-size: 3em;
  text-align: center;
  margin-top: 20px;
}

/* DESTAQUE */
.offer-section__highlight {
  max-width: 400px;
  margin: 20px auto;
  display: block;
  font-size: 2em;
  text-align: center;
  font-weight: bold;
  padding: 10px 0 5px;
  border-top: 4px solid #00072D;
}

/* LISTA */
.offer-section__list {
  max-width: 400px;
  margin: 20px auto;
  font-size: 1.25em;
  border-bottom: 4px solid #00072D;
}

.offer-section__list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* BOLINHA */
.offer-section__list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #00072D;
  border-radius: 50%;
  margin-right: 20px;
}

/* BOTÃO */
.offer-section__button {
  max-width: 300px;
  display: block;
  margin: 20px auto;
  border: #00DAF8 solid 5px;
  border-radius: 50px;
  background-color: #00072D;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2.25em;
  padding: 15px 0;
  text-align: center;
}

.offer-section__button:hover {
  background-color: #00DAF8;
  color: #00072D;
}

/* GARANTIA */
.offer-section__guarantee {
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.offer-section__guarantee-img {
  max-width: 100%;
}

/* RESPONSIVO */
@media (max-width: 500px) {
  .offer-section__list li {
    font-size: 0.75em;
  }
}


/* ================= FIM PLANO VITALÍCIO ================= */


/* ======================= CONTATO ================== */

.contact-section {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.contact-section__background {
  background: #00072D;
  color: white;
}

.contact-section__container {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 10px;
  text-align: center;
}

/* TÍTULO */
.contact-section__title {
  font-size: 3em;
  padding-top: 40px;
  padding-bottom: 20px;
}

/* REDES */
.contact-section__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-section__item {
  max-width: 10%;
  margin: 3%;
}

.contact-section__item img {
  border-radius: 50%;
  max-width: 100%;
}

/* ======================= FIM CONTATO ================== */

/*======================= FOOTER ======================== */
.footer-section {
  background-color: black;
  text-align: center;
}

.footer-section__content {
  padding: 2em;
  color: white;
}

/*======================= FIM FOOTER ======================== */