/* ============ RESET ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 1.5em;
  color: #1B123D;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { text-decoration: none; color: inherit; }

/* ============ ESTRUTURA BASE ============ */
section {
  padding: 60px 0;
}

.row {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (min-width: 992px) {
  .row { padding: 0; }
}

/* ============ MENU V2 ============ */
.page-v2 .v2-header {
  background: #154a43;
  position: relative;
  z-index: 50;
}

.page-v2 .v2-header-row {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-v2 .v2-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.page-v2 .v2-logo {
  width: 100%;
  max-width: 168px;
  max-height: 67px;
  object-fit: contain;
}

.page-v2 .v2-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.page-v2 .v2-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 700;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.page-v2 .v2-menu a:hover,
.page-v2 .v2-menu a:focus-visible {
  color: #ffffff;
  opacity: 1;
}

.page-v2 .v2-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 9px;
  cursor: pointer;
}

.page-v2 .v2-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.page-v2.menu-open .v2-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.page-v2.menu-open .v2-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.page-v2.menu-open .v2-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767.98px) {
  .page-v2 .v2-header-row {
    padding: 8px 30px;
  }

  .page-v2 .v2-logo {
    max-width: 148px;
    max-height: 59px;
  }

  .page-v2 .v2-menu-toggle {
    display: block;
  }

  .page-v2 .v2-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #154a43;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .page-v2.menu-open .v2-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .page-v2 .v2-menu a {
    padding: 15px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ============ V2 SOBRE O CURSO ============ */
.page-v2 .section-v2-decisao-oculta {
  display: none;
}

.page-v2 .section-v2-aprender {
  background: #ffffff;
  color: #666666;
}

.page-v2 .row-v2-aprender {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}

.page-v2 .titulo-v2-aprender {
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  line-height: 1.2em;
  color: #154a43;
  font-weight: 400;
}

.page-v2 .texto-v2-aprender {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  line-height: 1.5em;
  color: #0c0c0c;
  max-width: 620px;
}

.page-v2 .texto-v2-aprender strong {
  font-weight: 900;
}

.page-v2 .vollc-7a9f2c {
  --vollc-green: #008b86;
  --vollc-dot-off: #b9c0bd;
  --vollc-radius: 16px;
  --vollc-gap: 20px;
  --vollc-trans: 420ms cubic-bezier(.2,.8,.2,1);
  --vollc-dots-size: 12px;
  width: 100%;
  max-width: 900px;
  margin: 4px auto 0;
  position: relative;
  box-sizing: border-box;
  background: transparent;
}

.page-v2 .vollc-7a9f2c * {
  box-sizing: border-box;
}

.page-v2 .vollc-7a9f2c__viewport {
  overflow: hidden;
  border-radius: var(--vollc-radius);
  cursor: grab;
}

.page-v2 .vollc-7a9f2c__viewport.is-dragging {
  cursor: grabbing;
}

.page-v2 .vollc-7a9f2c__track {
  display: flex;
  gap: var(--vollc-gap);
  transform: translate3d(0, 0, 0);
  transition: transform var(--vollc-trans);
  will-change: transform;
  user-select: none;
}

.page-v2 .vollc-7a9f2c__track.is-dragging {
  transition: none;
}

.page-v2 .vollc-7a9f2c__slide {
  flex: 0 0 calc(50% - (var(--vollc-gap) / 2));
  border-radius: var(--vollc-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.page-v2 .vollc-7a9f2c__slide:hover,
.page-v2 .vollc-7a9f2c__slide:focus-visible {
  filter: brightness(1.03);
  transform: translateY(-2px);
  outline: none;
}

.page-v2 .vollc-7a9f2c__img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.page-v2 .vollc-7a9f2c__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  transition: opacity 160ms ease, box-shadow 160ms ease;
  padding: 0;
  z-index: 2;
}

.page-v2 .vollc-7a9f2c__arrow:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.page-v2 .vollc-7a9f2c__arrow[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}

.page-v2 .vollc-7a9f2c__arrow--prev {
  left: -20px;
}

.page-v2 .vollc-7a9f2c__arrow--next {
  right: -20px;
}

.page-v2 .vollc-7a9f2c__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--vollc-green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-v2 .vollc-7a9f2c__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.page-v2 .vollc-7a9f2c__dot {
  width: var(--vollc-dots-size);
  height: var(--vollc-dots-size);
  border-radius: 999px;
  border: 0;
  background: var(--vollc-dot-off);
  padding: 0;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
  position: relative;
}

.page-v2 .vollc-7a9f2c__dot::before {
  content: "";
  position: absolute;
  inset: -10px;
}

.page-v2 .vollc-7a9f2c__dot.is-active {
  background: var(--vollc-green);
  transform: scale(1.3);
}

.page-v2 .btn-v2-aprender {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  background: #008b86;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25em;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 30px;
  border-radius: 4px;
  animation: v2CtaScale 2.4s ease-in-out infinite;
  transition: background 0.25s ease, transform 0.25s ease;
}

.page-v2 .btn-v2-aprender:hover {
  background: #154a43;
  transform: scale(1.03);
}

@keyframes v2CtaScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@media (min-width: 992px) {
  .page-v2 .titulo-v2-aprender {
    font-size: 38px;
  }

  .page-v2 .btn-v2-aprender {
    font-size: 19px;
  }
}

@media (max-width: 600px) {
  .page-v2 .vollc-7a9f2c__slide {
    flex: 0 0 100%;
  }

  .page-v2 .vollc-7a9f2c__arrow {
    display: none;
  }
}

/* ============ V2 PLATAFORMA ============ */
.page-v2 .section-v2-plataforma {
  background-color: #154a43;
  background-image: url('../images/background_evp_online_plataforma.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  padding: 54px 0 58px;
}

.page-v2 .row-v2-plataforma {
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.page-v2 .titulo-v2-plataforma {
  max-width: 660px;
  color: #0aece2;
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2em;
  text-wrap: balance;
}

.page-v2 .texto-v2-plataforma {
  max-width: 720px;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em;
  text-wrap: pretty;
}

.page-v2 .v2-plataforma-video {
  max-width: 600px;
  border-radius: 0;
  box-shadow: none;
}

.page-v2 .v2-plataforma-video .youtube-facade-play {
  width: 68px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: #ff0033;
  border-radius: 14px;
}

.page-v2 .v2-plataforma-video .youtube-facade-play svg {
  display: none;
}

.page-v2 .v2-plataforma-video .youtube-facade-play::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #ffffff;
}

.page-v2 .v2-plataforma-beneficios {
  width: 100%;
  max-width: 940px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin-top: 20px;
}

.page-v2 .v2-plataforma-card {
  min-height: 114px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 25px;
  background: rgba(21, 74, 67, 0.78);
  border: 1px solid #0aece2;
  border-radius: 8px;
  text-align: left;
}

.page-v2 .v2-plataforma-icone {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  fill: none;
  stroke: #0aece2;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-v2 .v2-plataforma-card h3 {
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2em;
  margin-bottom: 5px;
}

.page-v2 .v2-plataforma-card p {
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25em;
}

.page-v2 .btn-v2-plataforma {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin-top: 26px;
  padding: 14px 24px;
  background: #f57300;
  border-radius: 6px;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25em;
  text-align: center;
  text-transform: uppercase;
  animation: v2CtaScale 2.4s ease-in-out infinite;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.page-v2 .btn-v2-plataforma:hover,
.page-v2 .btn-v2-plataforma:focus-visible {
  background: #f47f18;
  transform: scale(1.03);
}

@media (min-width: 992px) {
  .page-v2 .titulo-v2-plataforma {
    font-size: 40px;
  }
}

@media (max-width: 767.98px) {
  .page-v2 .texto-v2-aprender {
    font-size: 18px;
  }

  .page-v2 .section-v2-plataforma {
    padding: 44px 0 48px;
    background-position: center center;
  }

  .page-v2 .row-v2-plataforma {
    gap: 20px;
  }

  .page-v2 .titulo-v2-plataforma {
    font-size: 28px;
  }

  .page-v2 .texto-v2-plataforma {
    font-size: 18px;
  }

  .page-v2 .v2-plataforma-beneficios {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .page-v2 .v2-plataforma-card {
    min-height: 0;
    gap: 15px;
    padding: 20px 25px;
  }

  .page-v2 .v2-plataforma-icone {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .page-v2 .v2-plataforma-card h3 {
    font-size: 20px;
  }

  .page-v2 .v2-plataforma-card p {
    font-size: 16px;
  }

  .page-v2 .btn-v2-plataforma {
    margin-top: 18px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-v2 .btn-v2-aprender,
  .page-v2 .btn-v2-plataforma {
    animation: none;
    transition: none;
  }
}

/* ============ V2 PARA QUEM É A FORMAÇÃO ============ */
.page-v2 .section-v2-indicada {
  background-color: #ffffff;
  background-image: url('../images/background_para_quem_e_a_formacao.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #0c0c0c;
  padding: 58px 0 68px;
}

.page-v2 .row-v2-indicada {
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.page-v2 .titulo-v2-indicada {
  max-width: 650px;
  color: #154a43;
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2em;
}

.page-v2 .v2-indicada-cards {
  width: 100%;
  max-width: 840px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 10px;
}

.page-v2 .v2-indicada-cards img {
  width: 100%;
  aspect-ratio: 460 / 385;
  object-fit: cover;
  border-radius: 8px;
}

.page-v2 .btn-v2-indicada {
  margin-top: 4px;
}

.page-v2 .texto-v2-indicada {
  max-width: 730px;
  color: #0c0c0c;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45em;
}

.page-v2 .texto-v2-indicada strong {
  font-weight: 900;
}

@media (min-width: 992px) {
  .page-v2 .titulo-v2-indicada {
    font-size: 40px;
  }
}

@media (max-width: 767.98px) {
  .page-v2 .section-v2-indicada {
    padding: 44px 0 48px;
    background-position: center center;
  }

  .page-v2 .row-v2-indicada {
    gap: 22px;
  }

  .page-v2 .titulo-v2-indicada {
    font-size: 28px;
  }

  .page-v2 .v2-indicada-cards {
    max-width: 340px;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 4px;
  }

  .page-v2 .btn-v2-indicada {
    margin-top: 8px;
  }

  .page-v2 .texto-v2-indicada {
    max-width: 620px;
    font-size: 15px;
  }
}

/* ============ V2 CERTIFICAÇÃO ============ */
.page-v2 .section-v2-certificacao {
  position: relative;
  overflow: visible;
  background-color: #064d46;
  background-image: url('../images/background_certificado_evp_online.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  padding: 0;
}

.page-v2 .row-v2-certificacao {
  max-width: 1000px;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
  gap: 34px;
}

.page-v2 .v2-certificacao-conteudo {
  align-self: center;
  padding: 68px 0;
}

.page-v2 .titulo-v2-certificacao {
  max-width: 470px;
  color: #ffffff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.22em;
  text-wrap: balance;
}

.page-v2 .titulo-v2-certificacao span {
  color: #009890;
}

.page-v2 .texto-v2-certificacao {
  max-width: 570px;
  margin-top: 24px;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5em;
  text-wrap: pretty;
}

.page-v2 .v2-certificacao-imagem {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  align-self: end;
  justify-self: end;
  display: flex;
  align-items: flex-end;
  margin-top: -70px;
}

.page-v2 .v2-certificacao-imagem img {
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .page-v2 .section-v2-certificacao {
    overflow: hidden;
    background-position: 63% center;
  }

  .page-v2 .row-v2-certificacao {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-v2 .v2-certificacao-conteudo {
    padding: 44px 0 18px;
    text-align: center;
  }

  .page-v2 .titulo-v2-certificacao {
    max-width: 620px;
    margin: 0 auto;
    font-size: 28px;
  }

  .page-v2 .texto-v2-certificacao {
    max-width: 560px;
    margin: 20px auto 0;
    font-size: 18px;
  }

  .page-v2 .v2-certificacao-imagem {
    max-width: 360px;
    justify-self: center;
    margin-top: 0;
  }
}

/* ============ V2 DEPOIMENTOS ============ */
.page-v2 .section-v2-depoimentos {
  background: #ffffff;
  color: #0c0c0c;
  padding: 64px 0;
}

.page-v2 .row-v2-depoimentos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}

.page-v2 .titulo-v2-depoimentos {
  max-width: 850px;
  color: #154a43;
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2em;
  text-wrap: balance;
}

.page-v2 .texto-v2-depoimentos {
  max-width: 720px;
  color: #0c0c0c;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45em;
  text-wrap: pretty;
}

.page-v2 .section-v2-depoimentos .carrossel {
  margin-top: 8px;
}

.page-v2 .section-v2-depoimentos .carrossel-seta {
  color: #154a43;
}

.page-v2 .section-v2-depoimentos .carrossel-dot::before {
  background: rgba(21, 74, 67, 0.3);
}

.page-v2 .section-v2-depoimentos .carrossel-dot.active::before {
  background: #008b86;
}

.page-v2 .section-v2-depoimentos .btn-v2-aprender {
  margin-top: 4px;
}

@media (min-width: 992px) {
  .page-v2 .titulo-v2-depoimentos {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  .page-v2 .section-v2-depoimentos {
    padding: 48px 0;
  }

  .page-v2 .row-v2-depoimentos {
    gap: 22px;
  }

  .page-v2 .titulo-v2-depoimentos {
    font-size: 28px;
  }

  .page-v2 .texto-v2-depoimentos {
    font-size: 18px;
  }
}

/* ============ V2 PRIMEIRO PASSO ============ */
.page-v2 .section-v2-passo {
  background-color: #154a43;
  background-image: url('../images/background_evp_online_passo_para_formacao.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  padding: 66px 0 72px;
}

.page-v2 .row-v2-passo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
  text-align: center;
}

.page-v2 .titulo-v2-passo {
  max-width: 740px;
  color: #ffffff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2em;
  text-wrap: balance;
}

.page-v2 .v2-passo-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 32px;
}

.page-v2 .v2-passo-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(22, 131, 124, 0.85);
  border-radius: 8px;
  padding: 28px 22px;
  color: #ffffff;
  text-align: center;
}

.page-v2 .v2-passo-item img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.page-v2 .v2-passo-item h3 {
  min-height: 2.5em;
  margin-top: 18px;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25em;
}

.page-v2 .v2-passo-item p {
  margin-top: 10px;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4em;
}

.page-v2 .v2-passo-quebra-desktop {
  display: none;
}

@media (min-width: 992px) {
  .page-v2 .titulo-v2-passo {
    font-size: 36px;
  }

  .page-v2 .v2-passo-quebra-desktop {
    display: inline;
  }
}

@media (min-width: 600px) and (max-width: 991.98px) {
  .page-v2 .v2-passo-grid {
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 32px;
  }
}

@media (max-width: 599.98px) {
  .page-v2 .section-v2-passo {
    padding: 48px 0 52px;
  }

  .page-v2 .row-v2-passo {
    gap: 36px;
  }

  .page-v2 .titulo-v2-passo {
    font-size: 28px;
  }

  .page-v2 .v2-passo-grid {
    max-width: 330px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .page-v2 .v2-passo-item h3 {
    min-height: 0;
    font-size: 20px;
  }

  .page-v2 .v2-passo-item p {
    font-size: 17px;
  }
}

/* ============ V2 PREÇO ============ */
.page-v2 .section-v2-preco {
  overflow: hidden;
  background-color: #f2bf52;
  background-image: url('../images/background_secao_precos_dourado.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #0c0c0c;
  padding: 68px 0 0;
}

.page-v2 .row-v2-preco {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-v2 .v2-preco-intro {
  width: 100%;
  max-width: 820px;
  text-align: center;
}

.page-v2 .titulo-v2-preco {
  color: #154a43;
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2em;
  text-wrap: balance;
}

.page-v2 .texto-v2-preco {
  max-width: 770px;
  margin: 22px auto 0;
  color: #0c0c0c;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45em;
  text-wrap: pretty;
}

.page-v2 .v2-preco-composicao {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: end;
  gap: 0;
  margin-top: 54px;
}

.page-v2 .v2-preco-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 450px;
  justify-self: end;
  margin-bottom: 70px;
  padding: 58px 42px 38px;
  background: rgba(22, 131, 124, 0.85);
  border-radius: 8px;
  color: #ffffff;
  text-align: center;
}

.page-v2 .v2-preco-investimento {
  position: absolute;
  top: -34px;
  left: 50%;
  width: min(calc(100% - 48px), 340px);
  height: auto;
  transform: translateX(-50%);
}

.page-v2 .v2-preco-valores {
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  line-height: 1.45em;
}

.page-v2 .v2-preco-valores p {
  margin-bottom: 5px;
}

.page-v2 .v2-preco-antigo {
  font-size: 20px;
  text-decoration: line-through 1px;
}

.page-v2 .v2-preco-valores strong {
  color: #154a43;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3em;
  font-weight: 400;
}

.page-v2 .v2-preco-lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35em;
  list-style: none;
  text-align: left;
}

.page-v2 .v2-preco-lista li {
  position: relative;
  padding-left: 34px;
}

.page-v2 .v2-preco-lista li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #154a43;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.page-v2 .btn-v2-preco {
  margin-top: 30px;
}

.page-v2 .v2-preco-modelo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  justify-self: start;
  margin-left: -50px;
}

.page-v2 .v2-preco-modelo img {
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  .page-v2 .titulo-v2-preco {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  .page-v2 .section-v2-preco {
    padding-top: 48px;
    background-position: 58% center;
  }

  .page-v2 .titulo-v2-preco {
    font-size: 28px;
  }

  .page-v2 .texto-v2-preco {
    font-size: 18px;
  }

  .page-v2 .v2-preco-composicao {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 66px;
  }

  .page-v2 .v2-preco-card {
    max-width: 350px;
    justify-self: center;
    margin-bottom: 26px;
    padding: 50px 24px 32px;
  }

  .page-v2 .v2-preco-investimento {
    top: -26px;
  }

  .page-v2 .v2-preco-valores {
    font-size: 21px;
  }

  .page-v2 .v2-preco-lista {
    font-size: 16px;
  }

  .page-v2 .v2-preco-modelo {
    max-width: 350px;
    justify-self: center;
    margin-left: 0;
  }
}

.page-v2 .curriculo-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 23, 21, 0.72);
  padding: 24px;
}

.page-v2 .curriculo-modal[hidden] {
  display: none;
}

.page-v2 .curriculo-modal-card {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: min(82vh, 760px);
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  display: flex;
  flex-direction: column;
}

.page-v2 .curriculo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #154a43;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-v2 .curriculo-modal-titulo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  line-height: 1.2em;
  color: #154a43;
  font-weight: 400;
  padding: 34px 72px 18px 34px;
  border-bottom: 1px solid #e8eeee;
}

.page-v2 .curriculo-modal-conteudo {
  overflow-y: auto;
  padding: 24px 34px 34px;
  color: #333333;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.55em;
}

.page-v2 .curriculo-modal-conteudo h3 {
  font-size: 1.1em;
  color: #008b86;
  font-weight: 900;
  margin-bottom: 14px;
}

.page-v2 .curriculo-modal-conteudo ul {
  list-style: disc;
  padding-left: 22px;
}

.page-v2 .curriculo-modal-conteudo li {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .page-v2 .curriculo-modal {
    padding: 16px;
  }

  .page-v2 .curriculo-modal-card {
    max-height: 86vh;
    border-radius: 12px;
  }

  .page-v2 .curriculo-modal-titulo {
    font-size: 24px;
    padding: 28px 64px 16px 22px;
  }

  .page-v2 .curriculo-modal-conteudo {
    padding: 20px 22px 28px;
    font-size: 16px;
  }
}

/* ============ SECTION HERO BANNER ============ */
.section-hero-banner {
  padding: 0;
  width: 100%;
}

.hero-banner-link {
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.hero-banner-link .hero-banner-miolo {
  display: block;
  width: 100%;
  max-width: 1030px;
  height: auto;
  margin: 0 auto;
}

/* Mobile-first: mostra mobile, esconde desktop */
.hero-banner-desktop { display: none; }

.hero-banner-mobile {
  background-image: url('../images/banner_site_evp_online_julho_2026_mobile_BG.webp');
  background-size: 100% 100%;
}

@media (min-width: 992px) {
  .hero-banner-desktop {
    display: block;
    background-image: url('../images/banner_site_evp_online_julho_2026_BG.webp');
    background-size: 100% 100%;
  }
  .hero-banner-desktop .hero-banner-miolo {
    max-width: 1030px;
  }
  .hero-banner-mobile { display: none; }
}

/* ============ SECTION DECISÃO ============ */
.section-decisao {
  background: url('../images/background_formulario_curso_de_pilates_online.webp') no-repeat center center;
  background-size: cover;
  padding-bottom: 30px;
  text-align: center;
}

.row-decisao {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.titulo-decisao {
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  line-height: 1.3em;
  color: #ffffff;
  font-weight: 400;
}

.texto-decisao {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  line-height: 1.5em;
  color: #ffffff;
}

/* Card de preço */
.card-preco {
  background: #491547;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
}

.card-preco p {
  font-size: 20px;
  line-height: 1.5em;
  color: #ffffff;
}

.card-preco-fechamento {
  margin-top: 20px;
  font-size: 16px !important;
  font-weight: 400;
}

.preco-de,
.preco-por,
.preco-ou {
  font-weight: 300;
  font-size: 0.9em;
}

.preco-valor-antigo {
  font-size: 2.5em;
  color: #04ded1;
  font-weight: 900;
  text-decoration: line-through 3px #fff;
}

.texto-fechamento {
  max-width: 600px;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  line-height: 1.5em;
  color: #04ded1;
  font-weight: 700;
  font-style: italic;
}

.row-formulario-rd {
  width: 100%;
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
}

.row-formulario-rd section {
  padding: 0;
}

.row-formulario-rd .bricks-form__field,
.row-formulario-rd .bricks-form__field__option,
.row-formulario-rd .bricks-form__field__option .bricks-form__label {
  width: 100%;
  text-align: left;
}

.page-v2 .section-v2-formulario {
  padding: 60px 0 30px;
  background-color: #154a43;
}

.page-v2 .titulo-v2-formulario {
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 0 30px;
  color: #ffffff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25em;
  text-align: center;
}

@media (max-width: 767.98px) {
  .page-v2 .titulo-v2-formulario {
    font-size: 26px;
  }
}

.page-v2 .section-v2-faq {
  padding: 60px 0;
  background: #f2f3f4;
}

.page-v2 .section-v2-faq .row-faq {
  max-width: 820px;
}

.page-v2 .section-v2-faq .titulo-faq {
  color: #154a43;
  font-size: 20px;
  font-weight: 900;
}

.page-v2 .section-v2-faq .faq-item {
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(21, 74, 67, 0.08);
  transition: box-shadow 0.35s ease;
}

.page-v2 .section-v2-faq .faq-item[open] {
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(21, 74, 67, 0.13);
}

.page-v2 .section-v2-faq .faq-item summary {
  color: #0c0c0c;
  transition: background-color 0.25s ease;
}

.page-v2 .section-v2-faq .faq-item summary:hover {
  background-color: rgba(0, 139, 134, 0.04);
}

.page-v2 .section-v2-faq .faq-item summary::before {
  content: "›";
  right: 20px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #008b86;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%) rotate(90deg);
  transition: background-color 0.25s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-v2 .section-v2-faq .faq-item summary::after {
  display: none;
}

.page-v2 .section-v2-faq .faq-item[open] summary::before {
  transform: translateY(-50%) rotate(-90deg);
}

.page-v2 .section-v2-faq .faq-resposta {
  color: #0c0c0c;
}

.page-v2 .section-v2-faq .faq-resposta a {
  color: #008b86;
}

.page-v2 .section-v2-faq .faq-item.faq-fechando .faq-resposta {
  opacity: 0;
  transform: translateY(-5px);
}

@media (min-width: 992px) {
  .titulo-decisao { font-size: 32px; }
  .card-preco p { font-size: 26px; }
  .card-preco-fechamento { font-size: 21px !important; }
  .texto-fechamento { font-size: 24px; }
}

/* ============ PERFORMANCE: adia renderização de sections fora do viewport ============ */
.section-modulos,
.section-plataforma,
.section-formados,
.section-transformacao,
.section-certificado,
.section-beneficios,
.section-faq,
.section-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* ============ SECTION MÓDULOS ============ */
@keyframes ctaZoom {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

.section-modulos {
  background: #491547;
  padding: 60px 0;
}

.row-modulos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.titulo-modulos {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  line-height: 1.2em;
  color: #00A19A;
  font-weight: 400;
}

.texto-modulos {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 1.5em;
  color: #ffffff;
  max-width: 800px;
}

.modulos-lista {
  width: 100%;
  max-width: 1080px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modulos-coluna {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modulo-item {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: height 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
}

.modulo-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 55px 18px 22px;
  display: block;
  position: relative;
  color: #00A19A;
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-align: left;
}

.modulo-item summary::-webkit-details-marker { display: none; }

.modulo-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 3px solid #00A19A;
  border-bottom: 3px solid #00A19A;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s;
}

.modulo-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.modulo-numero {
  color: #00A19A;
}

.modulo-sub {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  color: #1B123D;
  font-weight: 400;
}

.modulo-titulo {
  padding: 14px 22px 6px;
  color: #00A19A;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  border-top: 1px solid #eee;
}

.modulo-item ul {
  padding: 6px 22px 22px 42px;
  color: #1B123D;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6em;
  text-align: left;
  columns: 1;
}

@keyframes modConteudo {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes modItemFade {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

.modulo-item[open] > ul {
  animation: modConteudo 0.45s ease-out both;
}

.modulo-item[open] > ul > li {
  animation: modItemFade 0.5s ease-out both;
  opacity: 0;
}

.modulo-item[open] > ul > li:nth-child(1)  { animation-delay: 0.05s; }
.modulo-item[open] > ul > li:nth-child(2)  { animation-delay: 0.08s; }
.modulo-item[open] > ul > li:nth-child(3)  { animation-delay: 0.11s; }
.modulo-item[open] > ul > li:nth-child(4)  { animation-delay: 0.14s; }
.modulo-item[open] > ul > li:nth-child(5)  { animation-delay: 0.17s; }
.modulo-item[open] > ul > li:nth-child(6)  { animation-delay: 0.20s; }
.modulo-item[open] > ul > li:nth-child(7)  { animation-delay: 0.23s; }
.modulo-item[open] > ul > li:nth-child(8)  { animation-delay: 0.26s; }
.modulo-item[open] > ul > li:nth-child(9)  { animation-delay: 0.29s; }
.modulo-item[open] > ul > li:nth-child(10) { animation-delay: 0.32s; }
.modulo-item[open] > ul > li:nth-child(n+11) { animation-delay: 0.35s; }

.btn-cta-modulos {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin: 30px auto 0;
  background: #A70202;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 4px;
  box-shadow: 0 0 25px rgba(167, 2, 2, 0.5);
  transition: transform 0.25s ease, background 0.3s;
  text-align: center;
}

.btn-cta-modulos:hover {
  background: #7a0101;
  transform: scale(1.03);
}

.oferta-validade {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  opacity: 0.85;
}

@media (min-width: 992px) {
  .titulo-modulos { font-size: 40px; }
  .modulos-lista {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
  }
  .modulos-coluna {
    flex: 1 1 0;
    min-width: 0;
  }
  .modulo-item ul { columns: 2; column-gap: 40px; }
  .btn-cta-modulos { font-size: 19px; padding: 14px 30px; }
}

/* ============ SECTION PLATAFORMA ============ */
.section-plataforma {
  background: #19988F;
  padding: 60px 0;
}

.row-plataforma {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.titulo-plataforma {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  line-height: 1.2em;
  color: #ffffff;
  font-weight: 400;
  max-width: 900px;
}

.plataforma-imagens {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  max-width: 1080px;
}

.plataforma-imagens img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.plataforma-video {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.plataforma-video iframe,
.plataforma-video .youtube-facade {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.youtube-facade {
  position: relative;
  background-color: #000;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
  padding: 0;
  transition: filter 0.25s ease;
}

.youtube-facade:hover { filter: brightness(1.1); }

.youtube-facade-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
  pointer-events: none;
}

.youtube-facade:hover .youtube-facade-play { transform: translate(-50%, -50%) scale(1.1); }

@media (min-width: 768px) {
  .plataforma-imagens {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
  .plataforma-imagens img {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (min-width: 992px) {
  .titulo-plataforma { font-size: 32px; }
}

/* ============ SECTION 90 MIL FORMADOS ============ */
.section-formados {
  background: #ffffff;
  padding: 60px 0;
}

.row-formados {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.titulo-formados {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  line-height: 1.3em;
  color: #461C42;
  font-weight: 400;
  max-width: 800px;
}

.titulo-formados-destaque {
  color: #028E87;
  font-size: 1.2em;
}

.formados-imagem-principal {
  width: 100%;
  max-width: 380px;
}

.formados-imagem-principal img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.subtitulo-formados {
  font-family: 'Lato', sans-serif;
  font-size: 26px;
  line-height: 1.4em;
  color: #028E87;
  font-weight: 700;
  max-width: 800px;
}

.formados-imagens {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 700px;
}

.formados-imagens img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 8px;
}

.btn-cta-formados {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin: 10px auto 0;
  background: #42183E;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 3px;
  transition: transform 0.25s ease, background 0.3s;
  text-align: center;
}

.btn-cta-formados:hover {
  background: #2d1029;
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .formados-imagens {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
  }
  .formados-imagens img {
    flex: 0 1 260px;
    min-width: 0;
  }
}

@media (min-width: 992px) {
  .titulo-formados { font-size: 36px; }
  .btn-cta-formados { font-size: 20px; padding: 16px 30px; }
}

/* ============ SECTION TRANSFORMAÇÃO / CARROSSEL ============ */
.section-transformacao {
  background: #009890;
  padding: 60px 0;
}

.row-transformacao {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.titulo-transformacao {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  line-height: 1.3em;
  color: #ffffff;
  font-weight: 400;
  max-width: 900px;
}

.carrossel {
  position: relative;
  width: 100%;
  max-width: 780px;
  padding: 0 45px;
}

.carrossel-viewport {
  overflow: hidden;
  width: 100%;
}

.carrossel-track {
  display: flex;
  gap: 15px;
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.carrossel-track.dragging { cursor: grabbing; }

.carrossel-slide {
  flex: 0 0 100%;
  aspect-ratio: 9 / 16;
  max-height: 380px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.carrossel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.carrossel-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.2s;
}

.carrossel-seta:hover { opacity: 0.7; }
.carrossel-seta-prev { left: 5px; }
.carrossel-seta-next { right: 5px; }

.carrossel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  width: 100%;
}

.carrossel-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: transform 0.2s;
}

.carrossel-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: background 0.2s, transform 0.2s;
}

.carrossel-dot.active::before {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.3);
}

.btn-cta-transformacao {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  background: #A70202;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  box-shadow: 0 0 25px rgba(167, 2, 2, 0.4);
  transition: transform 0.25s ease, background 0.3s;
  text-align: center;
}

.btn-cta-transformacao:hover {
  background: #7a0101;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .titulo-transformacao { font-size: 28px; }
  .carrossel-slide { flex: 0 0 calc((100% - 30px) / 3); }
}

@media (min-width: 992px) {
  .titulo-transformacao { font-size: 30px; }
  .btn-cta-transformacao { font-size: 19px; padding: 14px 30px; }
}

/* ============ SECTION CERTIFICADO / INDICADO ============ */
.section-certificado {
  background: #42183E;
  padding: 60px 0;
}

.row-certificado {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.titulo-certificado {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  line-height: 1.2em;
  color: #ffffff;
  font-weight: 400;
  max-width: 900px;
}

.certificado-icones,
.certificado-boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.certificado-icones img {
  width: 100%;
  max-width: 256px;
  height: auto;
}

.certificado-icones + .titulo-certificado {
  margin-top: 25px;
}

.certificado-boxes img {
  width: 100%;
  max-width: 382px;
  height: auto;
  border-radius: 10px;
}

.btn-cta-certificado {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  background: #A70202;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  box-shadow: 0 0 25px rgba(167, 2, 2, 0.4);
  transition: transform 0.25s ease, background 0.3s;
  text-align: center;
  margin-top: 10px;
}

.btn-cta-certificado:hover {
  background: #7a0101;
  transform: scale(1.03);
}

.certificado-disclaimer {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.5em;
  color: #ffffff;
  max-width: 670px;
  opacity: 0.85;
  margin-top: 0;
}

.certificado-disclaimer strong { font-weight: 900; }

@media (min-width: 768px) {
  .titulo-certificado { font-size: 28px; }
  .certificado-icones {
    flex-direction: row;
    gap: 15px;
  }
  .certificado-icones img { flex: 0 1 256px; min-width: 0; }
  .certificado-boxes {
    flex-direction: row;
    gap: 25px;
  }
  .certificado-boxes img { flex: 0 1 382px; min-width: 0; }
}

@media (min-width: 992px) {
  .titulo-certificado { font-size: 30px; }
  .btn-cta-certificado { font-size: 19px; padding: 16px 30px; }
}

/* ============ SECTION BENEFÍCIOS DO ALUNO ============ */
.section-beneficios {
  background: #f5f5f5;
  padding: 60px 0;
}

.row-beneficios {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.titulo-beneficios {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  line-height: 1.2em;
  color: #491547;
  font-weight: 400;
  max-width: 750px;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
}

.beneficio-card {
  border-radius: 4px;
  padding: 30px 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  min-height: 340px;
  transition: transform 0.3s ease;
}

.beneficio-card:nth-child(1) { background: #2c0c2b; }
.beneficio-card:nth-child(2) { background: #491547; }
.beneficio-card:nth-child(3) { background: #6d1f68; }
.beneficio-card:nth-child(4) { background: #a02b95; }
.beneficio-card:nth-child(5) { background: #c343b5; }

.beneficio-card:hover { transform: translateY(-4px); }

.beneficio-icone {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beneficio-icone img,
.beneficio-icone svg {
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.beneficio-icone svg { filter: none; }


.beneficio-titulo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  line-height: 1.25em;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
}

.beneficio-texto {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.5em;
  color: #ffffff;
  opacity: 0.95;
}

.btn-cta-beneficios {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  background: #A70202;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  box-shadow: 0 0 25px rgba(167, 2, 2, 0.4);
  transition: transform 0.25s ease, background 0.3s;
  text-align: center;
}

.btn-cta-beneficios:hover {
  background: #7a0101;
  transform: scale(1.03);
}

@media (min-width: 640px) {
  .beneficios-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
  .titulo-beneficios { font-size: 34px; }
  .beneficios-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .btn-cta-beneficios { font-size: 19px; padding: 16px 30px; }
}

/* ============ SECTION FAQ ============ */
.section-faq {
  background: #ffffff;
  padding: 60px 0;
}

.row-faq {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.titulo-faq {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  line-height: 1.2em;
  color: #491547;
  font-weight: 400;
  text-align: center;
}

.faq-lista {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-item[open] { border-color: #491547; }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 55px 20px 22px;
  position: relative;
  color: #491547;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 16px;
  height: 3px;
  background: #491547;
  border-radius: 2px;
  transform: translateY(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.faq-resposta-wrap {
  overflow: hidden;
  height: 0;
  transition: height 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-resposta {
  padding: 16px 22px 22px;
  color: #1B123D;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6em;
  text-align: left;
  border-top: 1px solid #f0f0f0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.28s ease 0.06s, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.03s;
}

.faq-item[open] .faq-resposta {
  opacity: 1;
  transform: translateY(0);
}

.faq-resposta a {
  color: #491547;
  font-weight: 700;
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .faq-resposta-wrap,
  .faq-resposta,
  .page-v2 .section-v2-faq .faq-item,
  .page-v2 .section-v2-faq .faq-item summary,
  .page-v2 .section-v2-faq .faq-item summary::before {
    transition: none;
  }
}

@media (min-width: 992px) {
  .titulo-faq { font-size: 34px; }
}

@media (max-width: 767.98px) {
  .plataforma-imagens {
    max-width: 220px;
  }

  .formados-imagem-principal {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .formados-imagem-principal img {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .formados-imagens img,
  .certificado-icones img {
    max-width: 220px;
  }

  .certificado-boxes {
    max-width: 320px;
  }

  .beneficio-card {
    min-height: 0;
  }
}

/* ============ FOOTER ============ */
.section-footer {
  background: #491547;
  padding: 30px 0;
}

.page-v2 .section-footer {
  background: #0f0f0f;
}

.row-footer {
  text-align: center;
}

.footer-texto {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.5em;
  color: #ffffff;
}

typebot-bubble::part(preview-message) {
  font-size: 16px;
}

/* ============ POPUP ============ */
@keyframes popupOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popupOverlayOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes popupCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes popupCardOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(6px) scale(0.99);
  }
}

.popup-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.68);
  z-index: 9998;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: popupOverlayIn 0.2s ease-out both;
}

.popup-overlay[hidden] { display: none; }

.popup-overlay.popup-saindo {
  animation: popupOverlayOut 0.18s ease-in both;
}

.popup-box {
  width: 100%;
  max-width: 560px;
  height: auto;
  color: #2e9800;
  background: linear-gradient(180deg, #00c4af 0%, #00a796 42%, #007b71 100%);
  box-sizing: border-box;
  padding: 42px 32px 34px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  border: 0;
  isolation: isolate;
  animation: popupCardIn 0.36s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.popup-overlay.popup-saindo .popup-box {
  animation: popupCardOut 0.18s ease-in both;
}

.popup-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 55%);
  border-radius: inherit;
  pointer-events: none;
}

.popup-close {
  width: 34px;
  height: 34px;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 9999;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  display: grid;
  place-items: center;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.popup-close::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
}

.popup-close:hover {
  transform: scale(1.06);
  background-color: rgba(27, 123, 110, 0.95);
  border-color: rgba(255, 255, 255, 0.9);
}

.popup-titulo {
  font-family: inherit;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: #620547;
  position: relative;
  z-index: 1;
  text-wrap: balance;
}

.popup-texto {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.96);
  position: relative;
  z-index: 1;
}

.popup-texto strong {
  font-weight: 800;
  color: #fff;
}

.popup-btn {
  display: inline-block;
  background-color: #ff6800;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 10px;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 24px rgba(27, 123, 110, 0.35);
  position: relative;
  z-index: 1;
}

.popup-btn:hover {
  background-color: #fb7519;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(27, 123, 110, 0.45);
}

.popup-close:focus-visible,
.popup-btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.popup-btn:active {
  transform: translateY(0);
  box-shadow: 0 7px 18px rgba(27, 123, 110, 0.32);
}

@media (max-width: 767px) {
  .popup-box {
    padding: 34px 20px 26px;
    max-width: 92vw;
    border-radius: 16px;
  }

  .popup-titulo {
    font-size: 28px;
    line-height: 1.1;
  }

  .popup-texto {
    font-size: 17px;
    line-height: 1.5;
  }

  .popup-btn {
    width: 100%;
    padding: 15px 18px;
    font-size: 16px;
  }

  .popup-close {
    width: 40px;
    height: 40px;
    top: -16px;
    right: -10px;
  }
}

@media (max-width: 359px) {
  .popup-titulo {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .popup-overlay,
  .popup-overlay.popup-saindo,
  .popup-box,
  .popup-overlay.popup-saindo .popup-box {
    animation: none;
  }

  .popup-close,
  .popup-btn {
    transition: none;
  }
}
