/* ===============================
   RESET
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   VARIÁVEIS
================================ */

:root {
  --blue: #034159;
  --dark: #034159;
}

/* ===============================
   BASE
================================ */

body {
  font-family: Inter, Arial, sans-serif;
}

/* ===============================
   HERO (COM CAMADA DE FUNDO)
================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* camada do SVG */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("imagens/background-sessao1.svg") center/cover no-repeat;
  z-index: 1;
}

/* conteúdo acima do fundo */
.hero-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* ===============================
   COLUNA ESQUERDA
================================ */

.hero-left {
  display: flex;
  justify-content: center;
}

.image-card {
  position: relative;
  border-radius: 56px;
  overflow: hidden;
}

.image-card img {
  width: 560px;
  max-width: 100%;
  border-radius: 56px;
  display: block;
}

/* ===============================
   BOTÃO PLAY
================================ */

.play-button {
  position: absolute;
  inset: 0;
  background: transparent;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button::before {
  content: "";
  width: 110px;
  height: 110px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(46,94,216,0.25);
}

.play-button::after {
  content: "";
  position: absolute;
  border-left: 28px solid #fff;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  transform: translateX(6px);
}

/* ===============================
   COLUNA DIREITA
================================ */

.hero-right {
  padding-left: 40px;
  color: var(--dark);
}

.hero-logo {
  height: 70px;
  margin-bottom: 32px;
}

.hero-right h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-right h1 span {
  color: var(--blue);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  text-decoration: none;
  color: var(--dark);
}

.hero-link img {
  width: 40px;
}

/* ===============================
   RESPONSIVO
================================ */

@media (max-width: 768px) {

  .hero {
    padding: 80px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right {
    padding-left: 0;
    margin-top: 32px;
  }

  .hero-right h1 {
    font-size: 32px;
  }

  .hero-right h1 span {
    display: block;
    font-size: 40px;
  }

  .image-card img {
    width: 100%;
  }
}

/* ===============================
   VIDEO MODAL
================================ */

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.video-box {
  position: relative;
  width: min(900px, 90vw);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  z-index: 2;
  animation: scaleIn .3s ease;
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
}

@keyframes scaleIn {
  from {
    transform: scale(.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* ===============================
   SESSÃO 2
================================ */

.sessao-2 {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* camada do background SVG */
.sessao-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("imagens/background-sessao2.svg") center/cover no-repeat;
  z-index: 1;
}

/* conteúdo acima */
.sessao2-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px;
}

/* grid dos cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  justify-items: center;
}

/* card individual */
.card {
  border-radius: 48px;
  overflow: hidden;
}


.card img {
  width: 100%;
  max-width: 360px;
  display: block;
  border-radius: 48px;
}

@media (max-width: 900px) {

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card img {
    max-width: 320px;
  }

}

/* ===============================
   SESSÃO 3
================================ */

.sessao-3 {
  padding: 160px 0;
  background: url("imagens/background-sessao3.png") center/cover no-repeat;
}

.sessao3-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* TEXTO */

.sessao3-texto h2 {
  font-size: 72px;
  line-height: 1.05;
  color: var(--blue);
  margin-bottom: 32px;
}

.sessao3-texto p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  max-width: 520px;
}

.sessao3-texto strong {
  color: var(--blue);
}

/* IMAGEM */

.sessao3-imagem {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sessao3-imagem img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: 48px;
}


@media (max-width: 900px) {

  .sessao3-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .sessao3-texto h2 {
    font-size: 42px;
  }

  .sessao3-texto p {
    margin: 0 auto;
    font-size: 18px;
  }

}

/* ===============================
   SESSÃO 4
================================ */

.sessao-4 {
  background: #f1f1f1;
  padding: 160px 0;
}

.sessao4-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 100px;
}

/* BLOCO DE IMAGENS */

.sessao4-imagens {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 40px;
}

/* IMAGENS */

.sessao4-img img {
  display: block;
  height: auto;
  border-radius: 48px;
}

/* IMAGEM PEQUENA */

.sessao4-img.pequena img {
  height: 520px;
  width: auto;
}

/* IMAGEM GRANDE */

.sessao4-img.grande img {
  height: 600px;
  width: auto;
}

/* FAIXA AZUL CENTRAL */

.sessao4-faixa {
  background: var(--blue);
  border-radius: 40px;
  padding: 60px 24px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.sessao4-faixa span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 32px;
  color: #ffffff;
  font-weight: 600;
}

/* TEXTO */

.sessao4-texto p {
  font-size: 22px;
  line-height: 1.6;
  color: #333;
  max-width: 520px;
}


@media (max-width: 1000px) {

  .sessao4-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* IMAGENS */
  .sessao4-imagens {
    grid-template-columns: 1fr 1fr; /* duas colunas */
    gap: 20px;
    justify-items: center;
  }

  /* imagens pequenas lado a lado */
  .sessao4-img.pequena img {
    height: auto;
    width: 100%;
    max-width: 160px;
  }

  /* imagem grande ocupa linha inteira */
  .sessao4-img.grande {
    grid-column: 1 / -1; /* ocupa as 2 colunas */
  }

  .sessao4-img.grande img {
    height: auto;
    width: 100%;
    max-width: 320px;
  }

  .sessao4-texto {
    text-align: center;
  }

  .sessao4-texto p {
    margin: 0 auto;
  }

  .sessao4-faixa {
  height: 480px;
}


}


/* ===============================
   SESSÃO 5
================================ */

.sessao-5 {
  background: #f1f1f1;
  padding: 160px 0;
}

.sessao5-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* LADO ESQUERDO */

.sessao5-esquerda img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

/* LADO DIREITO */

.sessao5-direita {
  background: var(--blue);
  border-radius: 48px;
  padding: 80px 60px;
  color: #ffffff;
}

.sessao5-direita h2 {
  font-size: 56px;
  margin-bottom: 60px;
}

/* LISTA */

.perfil-lista {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

/* linha vertical */

.perfil-lista::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.3);
}

/* item */

.perfil-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
}

.numero {
  font-size: 24px;
  font-weight: 600;
  position: relative;
}

.numero::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 36px;
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.4);
}

.perfil-item p {
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 1000px) {

  .sessao5-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sessao5-direita {
    padding: 60px 30px;
  }

  .sessao5-direita h2 {
    font-size: 42px;
    text-align: center;
  }

  .perfil-lista::before {
    left: 12px;
  }

}

/* ===============================
   SESSÃO 6
================================ */

.sessao-6 {
  background: #f1f1f1;
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND DECORATIVO DO LADO DIREITO */
.sessao-6::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("imagens/background-sessao6.png") no-repeat center;
  background-size: cover;
  z-index: 0;
}

.sessao6-container {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* TEXTO */

.sessao6-texto h2 {
  font-size: 72px;
  color: var(--blue);
  margin-bottom: 32px;
  line-height: 1.1;
}

.sessao6-texto p {
  font-size: 22px;
  line-height: 1.6;
  color: #333;
  max-width: 520px;
}

/* IMAGEM */

.sessao6-imagem {
  display: flex;
  justify-content: center;
}

.sessao6-imagem img {
  max-width: 420px;
  height: auto;
  display: block;
}

/* ===============================
   RESPONSIVO SESSÃO 6
================================ */

@media (max-width: 1024px) {

  .sessao6-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .sessao6-texto h2 {
    font-size: 52px;
  }

  .sessao6-texto p {
    margin: 0 auto;
  }

  .sessao6-imagem img {
    max-width: 360px;
  }

  /* Remove background lateral no mobile */
  .sessao-6::after {
    display: none;
  }

}

@media (max-width: 600px) {

  .sessao-6 {
    padding: 100px 0;
  }

  .sessao6-texto h2 {
    font-size: 38px;
  }

  .sessao6-texto p {
    font-size: 18px;
    max-width: 100%;
  }

  .sessao6-imagem img {
    max-width: 280px;
  }

}

/* ===============================
   SESSÃO 7
================================ */

.sessao-7 {
  background: #f5f5f5;
  padding: 160px 0;
}

.sessao7-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* BLOCO AZUL */

.sessao7-texto {
  background: var(--blue);
  color: #ffffff;
  padding: 60px;
  border-radius: 40px;
  box-shadow: 0 40px 60px rgba(0,0,0,0.08);
}

.sessao7-texto p {
  font-size: 24px;
  line-height: 1.6;
}

.sessao7-texto strong {
  font-weight: 700;
}

/* IMAGENS */

.sessao7-imagens {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sessao7-coluna-esquerda {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-imagem {
  background: #ffffff;
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.card-imagem img {
  display: block;
  width: 100%;
  height: auto;
}

.card-imagem.pequena {
  width: 220px;
}

.card-imagem.grande {
  width: 320px;
}

/* ===============================
   RESPONSIVO SESSÃO 7
================================ */

@media (max-width: 1024px) {

  .sessao7-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sessao7-imagens {
    justify-content: center;
  }

  .sessao7-texto {
    padding: 40px;
  }

}

@media (max-width: 600px) {

  .sessao-7 {
    padding: 100px 0;
  }

  .sessao7-texto p {
    font-size: 18px;
  }

  .sessao7-imagens {
    flex-direction: column;
  }

  .sessao7-coluna-esquerda {
    flex-direction: row;
  }

  .card-imagem.pequena {
    width: 140px;
  }

  .card-imagem.grande {
    width: 220px;
  }

}

/* ===============================
   SESSÃO 8
================================ */

.sessao-8{
  padding: 160px 0;
  background: #f3f3f3 url("imagens/background-sessao8.png") center/cover no-repeat;
}

.sessao8-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* TEXTO */

.sessao8-texto h2{
  font-size: 64px;
  line-height: 1.05;
  color: var(--blue);
  margin-bottom: 22px;
}

.sessao8-sub{
  font-size: 20px;
  margin-bottom: 22px;
  color: #222;
}

.sessao8-texto p{
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 18px;
  max-width: 520px;
}

.sessao8-link a{
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

/* IMAGEM */

.sessao8-img{
  display: flex;
  justify-content: center;
}

.sessao8-img img{
  width: 620px;
  max-width: 100%;
  height: auto;
}

/* BOTÃO WHATSAPP */

.btn-whatsapp {
  display: inline-block;
  margin: 20px 0 30px;
  padding: 16px 32px;
  background: var(--blue);
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(46,94,216,0.3);
}

@media (max-width: 1024px){

  .sessao8-container{
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sessao8-texto h2{
    font-size: 44px;
  }

  .sessao8-texto{
    text-align: left;
  }
}

@media (max-width: 600px){

  .sessao-8{
    padding: 100px 0;
  }

  .sessao8-texto h2{
    font-size: 36px;
  }

  .sessao8-texto p{
    font-size: 18px;
  }
}

/* ===============================
   SESSÃO FINAL
================================ */

.sessao-final {
  width: 100%;
}

/* ===============================
   FAIXA CTA AZUL
================================ */

.sessao-final-cta {
  background: var(--blue);
  padding: 80px 0;
  text-align: center;
}

.sessao-final-cta p {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 24px;
}

.sessao-final-cta a {
  color: #ffffff;
  font-size: 20px;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.sessao-final-cta a:hover {
  opacity: 0.8;
}

/* ===============================
   RODAPÉ
================================ */

.sessao-final-footer {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.redes-sociais {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.redes-sociais a {
  width: 52px;
  height: 52px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.redes-sociais a:hover {
  transform: translateY(-4px);
}

.redes-sociais img {
  width: 22px;
  height: 22px;
}

.copyright {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {

  .sessao-final-cta {
    padding: 60px 20px;
  }

  .sessao-final-cta p {
    font-size: 18px;
  }

  .sessao-final-cta a {
    font-size: 16px;
    word-break: break-word;
  }

  .sessao-final-footer {
    padding: 60px 20px;
  }

  .redes-sociais {
    gap: 16px;
  }

}

/* ===============================
   MOBILE – REDUZIR AO MÍNIMO O ESPAÇO ENTRE SESSÕES
================================ */

@media (max-width: 600px) {

  .sessao-2 {
    min-height: auto;
  }

  .sessao2-container {
    padding: 60px 24px;
  }

  .sessao-3,
  .sessao-4,
  .sessao-5,
  .sessao-6,
  .sessao-7,
  .sessao-8 {
    padding: 70px 0;
  }

}

/* ==================================
   CORREÇÃO LINHA FANTASMA ENTRE SESSÕES
================================== */

section {
  margin: 0;
}

.hero,
.sessao-2,
.sessao-3,
.sessao-4,
.sessao-5,
.sessao-6,
.sessao-7,
.sessao-8 {
  margin-bottom: -1px;
}


/* ===============================
   BOTÃO FLUTUANTE WHATSAPP
================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ===============================
   ANIMAÇÕES SCROLL
================================ */

.fade-up,
.fade-scale {
  opacity: 0;
  filter: blur(2px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    filter 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.fade-up {
  transform: translateY(32px);
}

.fade-scale {
  transform: translateY(20px) scale(0.96);
}

.fade-up.show,
.fade-scale.show {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .fade-scale {
    transition-duration: 0.35s;
    filter: none;
  }
}

@media (max-width: 900px) {
  .fade-up,
  .fade-scale {
    transition-duration: 0.65s;
  }

  .fade-up {
    transform: translateY(24px);
  }

  .fade-scale {
    transform: translateY(14px) scale(0.97);
  }
}