/* 🔥 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: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', 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: #014AAD;
  font-size: 1.4em;
  padding: 8px;
  border-radius: 30px;
  border: #ffd700 solid 5px;
  z-index: 999;
  bottom: 0.8%;
  right: 0.2%;
  text-align: center;
  font-weight: bolder;
  cursor: pointer;
}

.botao:hover {
  color: #ffd700;
}

@media (max-width: 820px) {
  .botaoFixo {
    display: none;

  }
}







/* ================= 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 PCM (SEO + CONVERSÃO) ================= */

.pcp-hero {
  background: #E6E8FA;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  text-align: center;
}

.pcp-hero__container {
  max-width: 900px;
}

/* TEXTO MENOR */
.pcp-hero__pretitle {
  font-size: 2rem;
  color: #474a51;
  margin-bottom: 5px;
}

/* 🔥 H1 FORTE (SEO) */
.pcp-hero__title {
  font-size: 2rem;
  font-weight: bold;
  color: #014AAD;
  line-height: 1.2;
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .pcp-hero__title {
    font-size: 1.8rem;
  }

  .pcp-hero__pretitle {
    font-size: 1.8rem;
  }
}

/* ================= FIM HERO PCM ================= */


/* ================= HERO BANNER PCM ================= */

.pcp-hero-banner {
  background-color: #E6E8FA;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pcp-hero-banner__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4rem;
}

/* IMAGENS BASE */
.pcp-hero-banner__image--desktop,
.pcp-hero-banner__image--mobile {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pcp-hero-banner__image--desktop img,
.pcp-hero-banner__image--mobile img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* MOBILE FIRST: esconda desktop */
.pcp-hero-banner__image--desktop {
  display: block;
}

.pcp-hero-banner__image--mobile {
  display: none;
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .pcp-hero-banner__image--desktop {
    display: none;
  }

  .pcp-hero-banner__image--mobile {
    display: block;
  }
}

/* ================= fim  HERO BANNER PCM ================= */



/* ================= ABOUT PREMIUM ================= */

.about {
  background: #ffffff;
  padding: 80px 20px;
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXTO */
.about__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TAG */
.about__tag {
  font-size: 0.9rem;
  font-weight: 600;
  color: #014AAD;
  background: rgba(1, 74, 173, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  width: fit-content;
}

/* TÍTULO */
.about__title {
  font-size: 2rem;
  line-height: 1.2;
  color: #004AAD;
  font-weight: 800;
}

/* DESCRIÇÃO */
.about__description {
  font-size: 1.2rem;
  color: #474a51;
  line-height: 1.6;
}

/* BENEFÍCIOS */
.about__benefits {
  margin-top: 10px;
}

.about__benefits li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #004AAD;
  font-weight: 500;
}

/* BOTÃO */
.about__cta {
  margin-top: 20px;
  display: inline-block;
  background: #014AAD;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
  border: 3px solid #ffd700;
}

.about__cta:hover {
  background: #003080;
  color: #ffd700;
  transform: scale(1.05);
}

/* IMAGEM */
.about__image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.about__image img:hover {
  transform: scale(1.03);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .about__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__content {
    align-items: center;
  }

  .about__title {
    font-size: 2rem;
  }

  .about__description {
    font-size: 1.1rem;
  }

  .about__benefits li {
    text-align: left;
  }
}



/* =========================
   BENEFÍCIOS PCM (ALTA CONVERSÃO)
========================= */

.pcp-benefits {
  background: #f5f7ff;
  padding: 80px 20px;
}

.pcp-benefits__container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* TÍTULO */
.pcp-benefits__title {
  font-size: 2.5rem;
  color: #014AAD;
  margin-bottom: 50px;
  font-weight: 800;
}

/* GRID */
.pcp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.pcp-benefit {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: left;
}

.pcp-benefit:hover {
  transform: translateY(-5px);
}

/* TÍTULO CARD */
.pcp-benefit h3 {
  color: #014AAD;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* TEXTO */
.pcp-benefit p {
  color: #474a51;
  line-height: 1.5;
}

/* CTA */
.pcp-benefits__cta {
  margin-top: 60px;
}

.pcp-benefits__cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
}

/* BOTÃO */
.pcp-benefits__button {
  display: inline-block;
  background: #014AAD;
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  border: 3px solid #ffd700;
  transition: 0.3s;
}

.pcp-benefits__button:hover {
  background: #003080;
  color: #ffd700;
  transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .pcp-benefits__grid {
    grid-template-columns: 1fr;
  }

  .pcp-benefits__title {
    font-size: 2rem;
  }
}



/* ================= CURRICULUM PCM ================= */

.pcp-curriculum {
  background: #f5f7ff;
  padding: 80px 20px;
}

/* HEADER SEO */
.pcp-curriculum__header {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.pcp-curriculum__header h1 {
  font-size: 2.5rem;
  color: #014AAD;
  font-weight: 800;
  margin-bottom: 15px;
}

.pcp-curriculum__header p {
  font-size: 1.2rem;
  color: #474a51;
}

/* GRID */
.pcp-curriculum__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.pcp-module {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  border-top: 5px solid #014AAD;
}

.pcp-module:hover {
  transform: translateY(-8px);
}

/* TÍTULO */
.pcp-module h2 {
  font-size: 1.3rem;
  color: #014AAD;
  margin-bottom: 15px;
}

.pcp-module h2 span {
  display: block;
  font-size: 1rem;
  color: #474a51;
  font-weight: normal;
}

/* LISTA */
.pcp-module ul {
  padding-left: 0;
}

.pcp-module li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #004AAD;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* CHECK VISUAL */
.pcp-module li::before {
  content: "✔";
  color: #014AAD;
  font-weight: bold;
}

/* RESPONSIVO */
@media (max-width: 1000px) {
  .pcp-curriculum__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pcp-curriculum__grid {
    grid-template-columns: 1fr;
  }

  .pcp-curriculum__header h1 {
    font-size: 2rem;
  }
}




/* ================= PROJETOS ================= */

.bloco-projetos {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #203764;
  padding-top: 30px;
  padding-bottom: 30px;
}

.bloco-projetos__info {
  flex: 2 1 33%;
}

.bloco-projetos__info h1 {
  font-size: 2em;
  color: #fff;
  text-align: center;
}

@media screen and (max-width:1000px) {
  .bloco-projetos__info {
    margin: 3%;
    text-align: center;
  }
}


/* ================= IMAGENS PROJETOS ================= */

.bloco-imagem-projeto {
  padding-top: 40px;
  background-color: #222222;
}

.bloco-imagem-projeto__container {
  display: flex;
  justify-content: center;
}

.bloco-imagem-projeto__item {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.bloco-imagem-projeto--ultimo {
  padding-bottom: 40px;
}


/* RESPONSIVO */
@media (max-width: 820px) {
  .bloco-imagem-projeto__container {
    flex-wrap: wrap;
  }

  .bloco-imagem-projeto__item {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 800px) {
  .bloco-imagem-projeto {
    padding-top: 13px;
  }

  .bloco-imagem-projeto--ultimo {
    padding-bottom: 13px;
  }

  .bloco-imagem-projeto__video {
    width: 480px;
    height: 270px;
  }
}

@media (max-width: 500px) {
  .bloco-imagem-projeto {
    padding-top: 10px;
  }

  .bloco-imagem-projeto--ultimo {
    padding-bottom: 10px;
  }

  .bloco-imagem-projeto__video {
    width: 370px;
    height: 208px;
  }
}


/* ================= CERTIFICADO PREMIUM ================= */

.certificado-premium {
  background: #ffffff;
  padding: 80px 20px;
}

.certificado-premium__container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXTO */
.certificado-premium__conteudo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.certificado-premium__titulo {
  font-size: 2.5rem;
  color: #004AAD;
  font-weight: 800;
}

/* LISTA */
.certificado-premium__lista {
  list-style: none;
  padding: 0;
}

.certificado-premium__lista li {
  font-size: 1.2rem;
  color: #474a51;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* CHECK VISUAL */
.certificado-premium__lista li::before {
  content: "✔";
  color: #014AAD;
  font-weight: bold;
}

/* IMAGEM */
.certificado-premium__visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.certificado-premium__visual img:hover {
  transform: scale(1.03);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .certificado-premium__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .certificado-premium__conteudo {
    align-items: center;
  }

  .certificado-premium__titulo {
    font-size: 2rem;
  }

  .certificado-premium__lista li {
    text-align: left;
  }
}

/* ================= PLATAFORMA DO CURSO ================= */

.plataforma-curso {
  background: #f5f7ff;
  padding: 80px 20px;
}

.plataforma-curso__container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGEM */
.plataforma-curso__visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.plataforma-curso__visual img:hover {
  transform: scale(1.03);
}

/* TEXTO */
.plataforma-curso__conteudo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plataforma-curso__titulo {
  font-size: 2.5rem;
  color: #014AAD;
  font-weight: 800;
}

/* LISTA */
.plataforma-curso__lista {
  list-style: none;
  padding: 0;
}

.plataforma-curso__lista li {
  font-size: 1.2rem;
  color: #474a51;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* CHECK */
.plataforma-curso__lista li::before {
  content: "✔";
  color: #014AAD;
  font-weight: bold;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .plataforma-curso__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .plataforma-curso__conteudo {
    align-items: center;
  }

  .plataforma-curso__titulo {
    font-size: 2rem;
  }

  .plataforma-curso__lista li {
    text-align: left;
  }
}


/* ================= CTA OFERTA ================= */



.cta-oferta {
  background: linear-gradient(135deg, #004AAD, #002f7a);
  padding: 60px 20px;
}

/* CONTAINER */
.cta-oferta__container {
  max-width: 900px;
  margin: 0 auto;

  display: flex;
  flex-direction: column; /* 🔥 ESSENCIAL: empilha */
  align-items: center;
}

/* CONTEÚDO */
.cta-oferta__conteudo {
  width: 100%;
  text-align: center;
}

/* TÍTULO */
.cta-oferta__titulo {
  font-size: 3rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 30px;
}

/* CARD */
.cta-oferta__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  color: #004AAD;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* SUBTÍTULO */
.cta-oferta__subtitulo {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* DESTAQUE */
.cta-oferta__destaque {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 20px 0;
}

/* LISTA */
.cta-oferta__lista {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.cta-oferta__lista li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* BOTÃO */
.cta-oferta__botao {
  display: inline-block;
  background: #014AAD;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  border: 3px solid #ffd700;
  transition: 0.3s;
}

.cta-oferta__botao:hover {
  background: #002f7a;
  color: #ffd700;
  transform: scale(1.05);
}

/* 🔥 GARANTIA EMBAIXO */
.cta-oferta__garantia {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.cta-oferta__garantia img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .cta-oferta__titulo {
    font-size: 2.2rem;
  }

  .cta-oferta__card {
    padding: 20px;
  }

  .cta-oferta__destaque {
    font-size: 1.1rem;
  }

  .cta-oferta__garantia img {
    max-width: 400px;
  }
}


/* ================= SOCIAL ================= */

.social {
  background: linear-gradient(135deg, #0d1b5e, #191970);
  padding: 80px 20px;
  text-align: center;
}

.social__container {
  max-width: 1000px;
  margin: 0 auto;
}

/* TÍTULO */
.social__title {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 50px;
}

/* GRID */
.social__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 25px;
  justify-items: center;
}

/* ITEM */
.social__item {
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
  position: relative;
}

/* IMAGEM */
.social__item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.3s;
}

/* HOVER 🔥 */
.social__item:hover {
  transform: translateY(-10px) scale(1.08);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.social__item:hover img {
  transform: scale(1.15);
}

/* ================= FOOTER ================= */

.site-footer {
  background: #0a0a0a;
  padding: 40px 20px;
  text-align: center;
}

.site-footer__container {
  max-width: 800px;
  margin: 0 auto;
}

.site-footer__text {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}

.site-footer__subtext {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* RESPONSIVO */
@media (max-width: 600px) {

  .social__title {
    font-size: 2.2rem;
  }

  .social__item {
    width: 70px;
    height: 70px;
  }

  .social__item img {
    width: 40px;
    height: 40px;
  }

}