/* --- CONFIGURAÇÃO INICIAL E VARIÁVEIS DE COR --- */
:root {
    /* Paleta de Cores Vest.Rio */
    --roxo: #9200D0;
    --amarelo: #F2C029;
    --laranja: #F2762E;
    --laranja-claro: #F29727;

    /* Cores de base */
    --cor-fundo: #FFFFFF;
    --cor-texto-principal: #333333;
    --cor-texto-claro: #FFFFFF;

    --hall-purple: #9200D0;
    --hall-yellow: #F2C029;
    --hall-text: #1c1c1c;
    --hall-bg: #fdfdfd;
    --hall-card-bg: #ffffff;

    /* --- TOKENS DE TIPOGRAFIA (SISTEMA DE DESIGN) --- */
    
    /* Textos e Listas (Base) */
    --tamanho-texto-padrao: 1rem;       /* 16px */
    --tamanho-texto-pequeno: 0.95rem;   /* 15.2px */
    
    /* Títulos Principais de Seção (H2) */
    --tamanho-h2-desktop: 3rem;       /* Desktop */
    --tamanho-h2-tablet: 2.1rem;      /* Tablet */
    --tamanho-h2-mobile: 1.65rem;     /* Mobile */
    
    /* Títulos de Cards e Subseções (H3 / H4) */
    --tamanho-h3-desktop: 2.2rem;     /* Desktop */
    --tamanho-h3-tablet: 1.6rem;      /* Tablet */
    --tamanho-h3-mobile: 1.3rem;      /* Mobile */
    
    /* Pesos de Fonte (Padronização) */
    --peso-titulo-padrao: 700;
    --peso-titulo-destaque: 800;
    --peso-texto-padrao: 400;
    --peso-texto-negrito: 600;

    /* MAPEAMENTO DINÂMICO (Padrão: Desktop) */
    --font-h2: var(--tamanho-h2-desktop);
    --font-h3: var(--tamanho-h3-desktop);
    --font-p: var(--tamanho-texto-padrao);
}

/* RESPONSIVIDADE TIPOGRÁFICA GLOBAL */

/* Reavaliação automática das variáveis para telas menores */
@media (max-width: 992px) {
  :root {
    --tamanho-h2-desktop: var(--tamanho-h2-tablet);
    --tamanho-h3-desktop: var(--tamanho-h3-tablet);
  }
}

@media (max-width: 768px) {
  :root {
    --tamanho-h2-desktop: var(--tamanho-h2-mobile);
    --tamanho-h3-desktop: var(--tamanho-h3-mobile);
  }
}

/* --- RESET BÁSICO E ESTILOS GLOBAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto-principal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Estilos Base de Tipografia */
h2 {
    font-size: var(--font-h2);
    font-weight: 700;
    line-height: 1.25;
}

h3 {
    font-size: var(--font-h3);
    font-weight: 700;
    line-height: 1.3;
}

p {
    font-size: var(--font-p);
    line-height: 1.6;
}

/* --- UTILITÁRIOS GLOBAIS --- */
.highlight-yellow {
    color: var(--amarelo);
}
.highlight-purple {
    color: var(--roxo);
}


main {
    padding: 10px;
    background-image: url(assets/fundo-elements-2.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    main {
        background-image: url(assets/fundo-elements-2-m.webp);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
.main-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 10px 5px 10px;
    width: 100%;
}

.header-logo {
    width: 100px;
    height: auto;
    display: block;
}

/* ============================================== */
/* === ESTILOS PARA SEÇÃO HERO === */
/* ============================================== */

.hero-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-wrapper {
    flex: 1;
    max-width: 1200px; /* Aumentado para acomodar a nova headline em 2 linhas */
    text-align: center;
    margin-bottom: 35px;
    text-wrap: balance;
}

/* Pré-headline sutil e profissional */
.hero-pre-titulo {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-image-wrapper {
    flex: 1;
    max-width: 500px;
    display: block;
}

.hero-avatar-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 450px;
    margin-left: auto;
    border-radius: 15px;
}

.hero-titulo {
    font-size: 3rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

/* Sub-headline com peso ideal para leitura */
.hero-sub-titulo {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 400;
    color: #000000;
    line-height: 1.4;
    max-width: 1100px;
    margin: 0 auto;

    
    
}

.hero-titulo span {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--roxo);
    margin-top: 10px;
    line-height: 1.2;
    
}

.hero-aprovacoes {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--laranja);
    margin: 0;
    text-align: center;
}

.aprovacoes-numero {
    font-weight: 900;
}

@media (max-width: 768px) {
    .hero-container {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .hero-text-wrapper {
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .hero-image-wrapper {
        display: none;
    }
    .hero-titulo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
}

/* ============================================== */
/* === ESTILOS PARA DIVISORES DE ONDA === */
/* ============================================== */

.wave-divider {
    width: 100%;
    line-height: 0;
    direction: ltr; 
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 90px;
}

.wave-bottom {
    transform: rotate(180deg);
}

.wave-roxo .shape-fill {
    fill: var(--roxo);
}

.wave-amarelo .shape-fill {
    fill: var(--amarelo);
}

/* ============================================== */
/* === ESTILOS PARA SEÇÃO DE APRESENTAÇÃO === */
/* ============================================== */

#secao-apresentacao {
    background-color: var(--roxo);
    color: var(--cor-texto-claro);
    text-align: center;
    padding: 50px 20px 20px 20px;
}

.apresentacao-headline {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--cor-fundo);
    max-width: 900px;
    margin: 0 auto 30px auto;
    line-height: 1.2;
    text-wrap: balance;
}

.plataforma-video-wrapper {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.plataforma-video {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* ==========================================================================
   SEÇÕES DO MÉTODO CRC, CICLO E JORNADA
   ========================================================================== */

/* 1. SEÇÃO DE COMPARAÇÃO (MÉTODO CRC) */
.secao-comparacao {
  background-color: var(--roxo);
  padding: 1rem 1rem 5rem 1rem;
  display: flex;
  justify-content: center;
  color: var(--cor-texto-claro);
}

.cabecalho-comparacao {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.pre-headline-box {
  background-color: rgba(242, 192, 41, 0.1);
  border: 1px solid var(--amarelo);
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  color: var(--amarelo);
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.cabecalho-comparacao h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--cor-texto-claro);
  line-height: 1.2;
}

.cabecalho-comparacao .subtitulo-secao {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.5;
}

.grid-comparacao {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.card-comparacao {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 3.5rem 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.card-comparacao:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

.topo-card {
  margin-bottom: 1.5rem;
}

.icone-destaque {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: white;
}

.icone-destaque.verde {
  background-color: #00b894;
}

.icone-destaque.vermelho {
  background-color: #ff7675;
}

.card-comparacao h3 {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem) !important;
  font-weight: 800;
  color: var(--roxo);
  margin: 0;
  line-height: 1.3;
}

.lista-comparacao {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.lista-comparacao li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eaeaea;
  color: var(--cor-texto-principal);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
}

.lista-comparacao li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.box-icone {
  min-width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.box-icone.verde {
  background-color: rgba(0, 184, 148, 0.1);
  color: #00b894;
}

.box-icone.vermelho {
  background-color: rgba(255, 118, 117, 0.1);
  color: #ff7675;
}

@media (max-width: 900px) {
  .grid-comparacao {
    flex-direction: column;
    gap: 1.5rem;
  }
  .card-comparacao {
    padding: 2.5rem 1.8rem;
  }
}

/* 2. SEÇÃO CICLO CRC (RETENÇÃO DO CONHECIMENTO) */
.secao-ciclo-crc {
  background-color: var(--roxo);
  padding: 4rem 1rem 6rem 1rem;
  display: flex;
  justify-content: center;
  color: var(--cor-texto-claro);
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.cabecalho-ciclo-crc {
  text-align: center;
  padding: 2rem 2rem 3rem;
  margin-bottom: 2rem;
  width: 100%;
}

.cabecalho-ciclo-crc h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  color: var(--cor-texto-claro);
  text-wrap: balance;
}

.ciclo-crc-marca {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--amarelo);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.ciclo-crc-subtitulo {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.ciclo-crc-diagrama {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  row-gap: 10rem;
  column-gap: 2rem;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.5rem 3.5rem;
  min-height: 400px;
}

.ciclo-crc-setas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.ciclo-crc-traco {
  fill: none;
  stroke: var(--amarelo);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 8 4;
}

.ciclo-passo {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 300px;
  color: var(--roxo);
  font-size: 1.05rem;
  line-height: 1.55;
  background-color: var(--amarelo);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--amarelo);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.ciclo-passo:hover {
  transform: translateY(-5px);
  filter: brightness(0.95);
}

.ciclo-passo p {
  margin: 0.35rem 0 0;
  text-wrap: balance;
}

.ciclo-passo-titulo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--roxo);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ciclo-passo-detalhe {
  font-weight: 600;
  color: var(--roxo);
  margin-top: 5px;
}

.passo-1 {
  grid-column: 1 / -1;
  justify-self: center;
}

.passo-3 {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  align-self: start;
}

.passo-2 {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: start;
}

@media (max-width: 700px) {
  .cabecalho-ciclo-crc {
    padding: 2rem 1.25rem;
    margin-bottom: 2rem;
  }

  .ciclo-crc-diagrama {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-height: 0;
    padding-bottom: 0;
  }

  .ciclo-crc-setas {
    display: none;
  }

  .ciclo-passo {
    max-width: 100%;
    width: 100%;
  }

  .passo-1,
  .passo-2,
  .passo-3 {
    justify-self: center;
    align-self: center;
  }

  .ciclo-passo:not(:last-child)::after {
    content: "";
    display: block;
    width: 2px;
    height: 32px;
    margin: 1.5rem auto 0;
    background: linear-gradient(to bottom, var(--amarelo) 65%, transparent);
  }
}

/* 3. SEÇÃO JORNADA DE EVOLUÇÃO */
.secao-jornada {
  background-color: var(--roxo);
  padding: 4rem 1rem 3rem 1rem;
  display: flex;
  justify-content: center;
  color: var(--cor-texto-claro);
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.cabecalho-jornada {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  width: 100%;
}

.cabecalho-jornada h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--cor-texto-claro);
  margin-bottom: 1.2rem;
  line-height: 1.2;
  font-weight: 800;
}

.cabecalho-jornada .subtitulo-secao {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.container-grafico {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 4rem auto;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  padding: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container-grafico:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.container-grafico img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .container-grafico {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
  }
}

/* 4. GRID DE FASES (2x2) */
.grid-fases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 0 auto 4rem auto;
  width: 100%;
  max-width: 1000px;
}

.card-fase {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-fase:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

.tag-fase {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.moldura-icone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #ffffff;
}

.tag-fase.cor-cinza {
  color: #8892b0;
}
.tag-fase.cor-cinza .moldura-icone {
  background-color: #8892b0;
}

.tag-fase.cor-rosa {
  color: #e84393;
}
.tag-fase.cor-rosa .moldura-icone {
  background-color: #e84393;
}

.tag-fase.cor-roxa {
  color: #9b59b6;
}
.tag-fase.cor-roxa .moldura-icone {
  background-color: #9b59b6;
}

.tag-fase.cor-verde {
  color: #2ed573;
}
.tag-fase.cor-verde .moldura-icone {
  background-color: #2ed573;
}

.texto-fase {
  color: var(--cor-texto-principal);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.tempo-fase {
  color: #777777;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 15px;
}

.tempo-fase strong {
  color: var(--roxo);
  font-weight: 800;
}

.cta-container.centralizado {
  text-align: center;
  margin: 0 auto;
}

.selos-confianca {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.selos-confianca span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: black;
}

.selos-confianca i {
  color: var(--amarelo);
}

@media (max-width: 768px) {
  .grid-fases {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .selos-confianca {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 20px;
    font-size: 0.75rem;
  }
}

/* ////////////////////////////////////////////////////////
 Seção matematica bloco15
 ///////////////////////////////////////////////////*/
.secao-matematica {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden; /* Evita vazamentos do efeito 3D nas laterais da tela */
}

.container-textos-mat {
  margin-bottom: 40px;
  width: 100%;
}

.secao-matematica .titulo-secao {
  font-size: var(--tamanho-h2-desktop);
  font-weight: 800;
  color: var(--cor-texto-principal-roxo);
  margin-bottom: 1.5rem;
  line-height: 1.25;
  text-wrap: balance;
}

.secao-matematica .subtitulo-secao {
  font-size: var(--tamanho-h3-mobile);
  color: #555555;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
   text-wrap: balance;
}

/* Imagem Horizontal */
.container-img-full {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 4rem auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.container-img-full img {
  width: 100%;
  height: auto;
  display: block;
}

.titulo-modulos {
  margin-top: 40px;
  margin-bottom: 25px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--roxo);
}

/* =========================================
   ESTILOS DO CARROSSEL 3D ESTILO DADO (POLÍGONO)
   ========================================= */
.carousel-3d-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  outline: none;
}

.carousel-3d-wrapper {
  width: 100%;
  height: 220px;
  perspective: 1200px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
}

/* O Eixo de Rotação do Dado 3D */
.carousel-3d-cards {
  position: relative;
  width: 280px;
  height: 140px;
  transform-style: preserve-3d;
  cursor: grab;
  touch-action: pan-y;

  /* Rotação tridimensional baseada no raio e ângulo definidos no JS */
  transform: translateZ(calc(-1 * var(--radius, 450px)))
    rotateY(var(--rotate-angle, 0deg));
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-3d-cards:active {
  cursor: grabbing;
}

.carousel-3d-cards.dragging {
  transition: none;
}

/* Face do Dado (Card Individual) */
.carousel-3d-card {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #ffffff;
  border: 2px solid #eaeaea;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  backface-visibility: hidden;

  /* Posicionamento radial em torno do eixo do dado */
  transform: rotateY(var(--angle, 0deg)) translateZ(var(--radius, 450px));

  /* Transição e opacidade inicial (outros cards quase não aparecem) */
  opacity: 0;
  transition: opacity 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
}

/* Face Ativa (Aparece plana de frente para o usuário) */
.carousel-3d-card.active {
  opacity: 1;
  border-color: var(--roxo);
  transform: rotateY(var(--angle, 0deg)) translateZ(var(--radius, 450px)) scale(1.05);
  box-shadow: 0 20px 45px rgba(146, 0, 208, 0.2);
  cursor: default;
  z-index: 10;
}

/* Faces Vizinhas Imediatas (Aparecem nas laterais em ângulo tridimensional) */
.carousel-3d-card.neighbor {
  opacity: 0.35;
  cursor: pointer;
  z-index: 5;
}

.carousel-3d-card.neighbor:hover {
  opacity: 0.65;
}

/* Badge Superior Circular */
.card-modulo-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--roxo);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(146, 0, 208, 0.25);
  z-index: 3;
  transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.carousel-3d-card.active .card-modulo-badge {
  background-color: var(--amarelo);
  color: var(--roxo);
  box-shadow: 0 4px 12px rgba(242, 192, 41, 0.45);
}

/* Conteúdo Interno */
.card-modulo-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cor-texto-principal);
  margin: 0;
  line-height: 1.3;
}

/* --- Controles do Carrossel (Setas e Indicadores) --- */
.carousel-3d-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
  position: relative;
  z-index: 20;
}

.carousel-3d-btn {
  background: #ffffff;
  border: 2px solid #eaeaea;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--roxo);
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-3d-btn:hover {
  background-color: var(--roxo);
  border-color: var(--roxo);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(146, 0, 208, 0.3);
}

.carousel-3d-dots {
  display: flex;
  gap: 8px;
}

.carousel-3d-dot {
  background-color: rgba(146, 0, 208, 0.15);
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-3d-dot.ativo {
  background-color: var(--roxo);
  width: 24px;
  border-radius: 5px;
}

/* --- Responsividade Inteligente --- */
@media (max-width: 900px) {
  .carousel-3d-wrapper {
    height: 200px;
  }

  .carousel-3d-cards {
    width: 240px;
    height: 130px;
  }

  .carousel-3d-card {
    padding: 1.2rem;
  }

  .card-modulo-content h4 {
    font-size: 1.05rem;
  }

  .secao-matematica .titulo-secao {
  font-size: var(--tamanho-h2-mobile);
  text-wrap: balance;

}

.secao-matematica .subtitulo-secao {
  font-size: var(--text-primary);
  color: #555555;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
   text-wrap: balance;
}

.titulo-modulos {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--roxo);
}

}


/* =========================================
   SEÇÃO RECURSOS EXTRAS laptop
   ========================================= */
.secao-recursos {
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}

/* A MÁGICA DO ESPAÇAMENTO ESTÁ AQUI! */
.secao-recursos .container-padrao {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Apenas aumente ou diminua este GAP para alterar os buracos da secção inteira! */
  gap: 0rem;
}

.cabecalho-recursos {
  text-align: center;
  margin-bottom: 0; /* Zerei a margem, o 'gap' acima faz o trabalho! */
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: 40px;
}

.cabecalho-recursos h2 {
  font-size: var(--tamanho-h2-desktop);
  color: var(--cor-texto-principal);
  max-width: 1200px;
  margin: 0 auto;
}
/* .recursos-mockup-wrapper — regras principais no bloco "TEXTOS SOLTOS" abaixo */

/* Imagem da Trilha Saindo do Notebook */
.trilha-cards-recursos {
  position: relative; /* Volta para o fluxo normal da página! */
  margin-top: -46px; /* Puxa a trilha para cima, invadindo a base do notebook */
  width: 140%;
  height: 850px;
  background-image: url("assets/fundo_trilha.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  z-index: 5; /* Garante que a trilha fique POR CIMA da moldura */
  pointer-events: none; /* Evita que a imagem atrapalhe cliques na página */
}

/* Notebook mockup — estilos principais no bloco "COLUNA CENTRAL" abaixo */

/* Responsividade Recursos */
@media (max-width: 1024px) {
  .recursos-mockup-wrapper {
    display: flex; /* Muda de Grid para Flex para permitir reordenação */
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-height: auto;
  }

  .recursos-conectores {
    display: none;
  }

  .recurso-lateral.esq {
    order: 1;
  }

  .recurso-lateral.dir {
    order: 2;
  }

  .recurso-lateral.esq,
  .recurso-lateral.dir {
    grid-column: 1 !important;
    text-align: left !important;
    padding: 0 1rem !important;
    justify-self: center;
    margin: 0 auto 1.5rem auto !important;
    width: 100%;
    max-width: 550px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .recurso-lateral.esq::before,
  .recurso-lateral.dir::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--roxo);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0;
  }

  .recurso-lateral p {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 1.15rem;
    font-weight: 800 !important;
    color: var(--cor-texto-principal);
    text-align: left !important;
  }

  .notebook-container {
    order: 3; /* Força o computador a ir para o final da fila */
    width: 85%;
    margin-top: 2rem;
  }

  .imagem-trilha-real {
    width: 130%;
  }
}

/* 2. Acaba com o "Tablete com Pernas" (Mantém proporção 16:10) */
@media (max-width: 768px) {
  .imagem-trilha-real {
    display: none !important;
  }

  .notebook-container {
    width: 92%;
    margin-top: 0.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .recurso-lateral.esq,
  .recurso-lateral.dir {
    margin: 0 auto 0.5rem auto !important;
  }

  .notebook-screen-frame {
    height: auto !important; /* Anula as alturas fixas antigas que amassavam o ecrã */
    aspect-ratio: 16 / 10; /* MÁGICA: Força o ecrã a ser sempre um retângulo perfeito! */
    padding: 12px 12px 16px 12px !important;
    border-radius: 12px 12px 2px 2px;
  }

  /* Ajusta a base para não parecerem patas */
  .notebook-base {
    width: 120% !important; /* Estica a base um pouco além do ecrã para dar realismo */
    height: 18px !important;
    border-radius: 0 0 16px 16px !important;
  }

  /* O "trackpad" mais fino e delicado */
  .notebook-base::after {
    width: 25% !important;
    height: 5px !important;
    top: 6px !important;
  }

  .cabecalho-recursos h2 {
    font-size: var(--tamanho-h2-mobile);
    text-wrap: balance;
  }
}

/* Ajustes finos para ecrãs muito pequenos (iPhone SE, etc) */
@media (max-width: 480px) {
  .recurso-lateral p {
    font-size: 1.05rem;
  }

  .notebook-screen-frame {
    padding: 8px 8px 12px 8px !important;
  }

  .notebook-base {
    width: 116% !important;
    height: 14px !important;
  }

  .notebook-base::after {
    width: 10% !important;
    height: 4px !important;
    top: 4px !important;
  }

  .imagem-trilha-real {
    width: 145%; /* Estica um pouco mais a trilha no telemóvel pequeno */
  }
}

/* =========================================
   TEXTOS SOLTOS, LINHAS E MOCKUP (AJUSTE FINO)
   ========================================= */

.recursos-mockup-wrapper {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  gap: 0 1.5rem;
  align-items: start;
  width: 100%;
  max-width: 1100px;
  min-height: 430px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

/* Trilhas pontilhadas: copy lateral → arco → card no laptop */
.recursos-conectores {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  overflow: visible;
}

.recurso-lateral {
  position: relative;
  z-index: 7;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  align-self: start;
  /* margin-top funciona; padding-top era anulado pelo padding: 0 !important acima */
  margin-top: 10.5rem;
}

.recurso-lateral.esq {
  grid-column: 1;
  justify-self: end;
  text-align: right;
  padding-right: 0.5rem;
}

.recurso-lateral.dir {
  grid-column: 3;
  justify-self: start;
  text-align: left;
  padding-left: 0.5rem;
}

.recurso-lateral p {
  background: transparent !important;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--cor-texto-principal);
  max-width: 240px;
}

.destaque-ia {
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.7;
}

/* =========================================
   COLUNA CENTRAL: COMPUTADOR + TRILHA
   ========================================= */
.notebook-container {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(580px, 52vw);
  position: relative;
  z-index: 3;
}

/* =========================================
   NOTEBOOK MOCKUP (moldura realista)
   ========================================= */
.notebook-mockup {
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.2));
}

.notebook-screen-frame {
  --bezel-x: 13px;
  --bezel-top: 20px;
  --bezel-bottom: 14px;
  width: 100%;
  height: 400px;
  padding: var(--bezel-top) var(--bezel-x) var(--bezel-bottom);
  box-sizing: border-box;
  background: linear-gradient(
    155deg,
    #72727a 0%,
    #4a4a52 10%,
    #2a2a30 42%,
    #18181c 72%,
    #34343a 100%
  );
  border-radius: 18px 18px 4px 4px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.7),
    0 0 0 2px rgba(255, 255, 255, 0.07),
    inset 0 1px 1px rgba(255, 255, 255, 0.14),
    inset 0 -3px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  overflow: hidden;
}

/* Webcam + detalhe superior */
.notebook-screen-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #45454d 0%, #101014 72%);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.55),
    inset 0 -1px 2px rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.notebook-screen-frame::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 5px;
  border-radius: 3px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.22) 0 2px,
    transparent 2px 5px
  );
  opacity: 0.45;
  z-index: 2;
}

.imagem-tela-recursos {
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  background-color: #0a0a0c;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.85),
    inset 0 0 28px rgba(0, 0, 0, 0.3);
  display: block;
}

.notebook-base {
  width: calc(100% + 60px);
  height: 20px;
  margin-top: -1px;
  background: linear-gradient(
    180deg,
    #ececf0 0%,
    #c4c4ca 16%,
    #9a9aa0 50%,
    #7a7a82 100%
  );
  border-radius: 0 0 22px 22px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 5px 0 #65656d,
    0 20px 36px rgba(0, 0, 0, 0.26);
  z-index: 4;
}

/* Linha da dobradiça */
.notebook-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7%;
  right: 7%;
  height: 3px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(255, 255, 255, 0.18) 100%
  );
  border-radius: 0 0 2px 2px;
}

/* Trackpad */
.notebook-base::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: min(150px, 30%);
  height: 11px;
  border-radius: 7px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.07) 0%,
    rgba(255, 255, 255, 0.14) 100%
  );
  box-shadow:
    inset 0 1px 4px rgba(0, 0, 0, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Base / “borda” inferior do chassi */
.notebook-mockup::after {
  content: "";
  width: calc(100% + 44px);
  height: 9px;
  margin-top: -2px;
  background: linear-gradient(180deg, #84848c 0%, #5e5e66 100%);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.14);
}

.imagem-trilha-real {
  width: 140%;
  max-width: 800px;
  height: auto;
  margin-top: -30px;
  position: relative;
  z-index: 5;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .recurso-lateral p {
    max-width: 200px;
    font-size: 1.05rem;
  }
}

/* =========================================
   RESPONSIVIDADE
   ========================================= */
@media (max-width: 1024px) {
  .recursos-mockup-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
    min-height: auto;
  }

  .recursos-conectores {
    display: none;
  }



  .notebook-container {
    grid-column: 1;
    width: 90%;
  }

  .imagem-trilha-real {
    width: 120%;
  }
}

@media (max-width: 768px) {
  .notebook-container {
    width: 90%;
  }
}

/* =========================================
   TEXTURA DE FUNDO (Profundidade Apple/Tech)
   ========================================= */
.fundo-textura {
  background-color: var(--cor-fundo-principal);
  /* Cria um padrão de pontinhos bem suave */
  background-image: radial-gradient(rgba(103, 48, 174, 0.091) 2px, transparent 2px);
  background-size: 30px 30px; /* Altere para 40px se quiser os pontos mais afastados */
}




/* ============================================== */
/* === ESTILOS PARA SEÇÃO DE RECURSOS === */
/* ============================================== */

#secao-recursos {
    background-color: var(--cor-fundo);
    padding: 30px 20px 20px 20px;
}

.recursos-header {
    text-align: center;
    margin: 0 auto 50px auto;
    max-width: 1200px;
}

.recursos-header h2 {
    color: var(--cor-texto-principal);
    font-size: var(--tamanho-h2-desktop);
    font-weight: 700;
    line-height: 1.2;
    text-wrap: balance;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.recurso-card {
    background-color: var(--roxo);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.recurso-card:hover {
    transform: translateY(-8px);
    background-color: #5d0085;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.recurso-card i {
    font-size: 50px;
    color: var(--amarelo);
    margin-bottom: 20px;
}

.recurso-card p {
    color: var(--cor-texto-claro);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
  .recursos-header {
        margin-bottom: 25px; 
    }
    .recursos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .recursos-header h2 {
        font-size: var(--tamanho-h2-mobile);
    }
}


/* =========================================
   SEÇÃO: APLICATIVO HOTMART bloco 14
   ========================================= */
.secao-app-hotmart {
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.corpo-app {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

.lado-texto-app {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.titulo-app {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 600;
  color: var(--cor-texto-principal);
  margin-bottom: 2rem;
  line-height: 1.3;
}

/* Nova Lista de Vantagens (Limpa e sem fundo) */
.lista-vantagens-app {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.lista-vantagens-app li {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: #555555;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.lista-vantagens-app li i {
  color: var(--roxo); /* Cor Roxa oficial */
  font-size: 1.4rem;
}

/* Bloco de Valores Minimalista (Sem bordas, apenas um fundo translúcido suave) */
.bloco-valor-clean {
  background: linear-gradient(
    135deg,
    rgba(146, 0, 208, 0.08) 0%,
    rgba(146, 0, 208, 0.01) 100%
  );
  border-left: 4px solid var(--roxo);
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}

.precos-app {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.precos-app .riscado {
  font-size: 1.1rem;
  color: #666666;
  text-decoration: line-through;
  font-weight: 600;
  opacity: 0.8;
}

.tag-presente {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--roxo);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Lado da Imagem (Sombra para parecer um telemóvel real) */
.lado-imagem-app {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lado-imagem-app img {
  width: 120%;
  max-width: 800px;
  height: auto;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.2));
}

/* Responsividade (Telemóveis e Tablets) */
@media (max-width: 900px) {
  .corpo-app {
    flex-direction: column;
    gap: 3.5rem;
    text-align: center;
  }

  .titulo-app {
    font-size: 1.6rem;
    text-wrap: balance;
  }

  .lista-vantagens-app {
    align-items: flex-start;
    text-align: left;
    margin: 0 auto 2rem auto;
    width: fit-content;
  }

  .bloco-valor-clean {
    margin: 0 auto;
    border-left: none;
    border-top: 4px solid var(--roxo);
    border-radius: 12px;
    align-items: center;
  }

  .secao-app-hotmart {
  padding: 2rem 0rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
}

/* ============================================== */
/* === ESTILOS PARA SEÇÃO DE BÔNUS === */
/* ============================================== */

#secao-bonus {
    background-color: #f7f7f9;
    padding: 80px 20px;
    text-align: center;
}

.bonus-header {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.bonus-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--roxo);
    line-height: 1.2;
}

.bonus-header h2 strong {
    color: var(--laranja);
}

.bonus-header p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #555;
    margin-top: 15px;
}

.bonus-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-card {
    background-color: var(--cor-fundo);
    border: 3px solid var(--roxo);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-tag {
    background-color: var(--amarelo);
    color: var(--cor-texto-principal);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 1.5rem;
    color: var(--roxo);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bonus-card img {
    width: 250px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 12px;
}

.bonus-card p {
    font-size: 1rem;
    color: #444;
    min-height: 60px;
    margin-bottom: 25px;
}

.bonus-preco-original {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.bonus-preco-hoje {
    font-size: 2rem;
    color: var(--laranja);
    font-weight: 800;
    margin-bottom: 0;
}

.bonus-total-wrapper {
    background-color: var(--roxo);
    color: var(--cor-texto-claro);
    max-width: 600px;
    margin: 60px auto 0 auto;
    padding: 25px 40px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-total-texto {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 600;
    margin: 0;
}

.bonus-total-valor {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--amarelo);
    margin: 0;
    text-wrap: nowrap;
}

/* ============================================== */
/* === ESTILOS PARA SEÇÃO DE DEPOIMENTOS      === */
/* === (Layout Grid Uniforme sem cortes)      === */
/* ============================================== */

#secao-depoimentos {
    background-color: var(--cor-fundo);
    padding: 60px 20px;
    text-align: center;
}

.depoimentos-header {
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.depoimentos-header h2 {
    color: var(--roxo);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    text-wrap: balance;
}

#secao-depoimentos .masonry-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    gap: 25px;
    max-width: 900px; /* Centralizado com largura ideal para 2 colunas */
    margin: 0 auto;
    /* Limpando resquícios do masonry antigo */
    column-count: auto;
}

#secao-depoimentos .masonry-item {
    height: 550px; /* Altura fixa para todos os blocos ficarem iguais */
    background-color: #f5f5f7; /* Cor de fundo (estética de moldura) */
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    
    /* Centraliza a imagem dentro do bloco */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 0;
}

#secao-depoimentos .masonry-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;  
    height: auto; 
    
    /* contain faz a imagem caber inteira sem cortar */
    object-fit: contain; 
    
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

#secao-depoimentos .masonry-item img:hover {
    transform: scale(1.02); /* Efeito suave de zoom ao passar o mouse */
}

/* --- Responsividade Depoimentos --- */
@media (max-width: 992px) {
    #secao-depoimentos .masonry-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
    }
}

@media (max-width: 600px) {
    #secao-depoimentos .masonry-grid {
        grid-template-columns: 1fr; /* 1 coluna no celular */
    }
    #secao-depoimentos .masonry-item {
        height: auto; /* No celular, deixa a altura livre para não ficar muito pequeno */
        min-height: 400px;
    }
}

#secao-depoimentos .masonry-item.oculta {
    display: none !important;
    opacity: 0;
    transform: translateY(20px);
}

#secao-depoimentos .masonry-item.visivel {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.controles-depoimentos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.btn-depoimentos-roxo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--roxo);
    background-color: transparent;
    border: 2px solid var(--roxo);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-depoimentos-roxo:hover {
    background-color: var(--roxo);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(146, 0, 208, 0.2);
}

.btn-secundario-depoimentos {
    background-color: transparent;
    color: #555555;
    border: 1px solid #cccccc;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secundario-depoimentos:hover {
    background-color: #eeeeee;
    color: var(--roxo);
    border-color: var(--roxo);
    transform: translateY(-2px);
}


/* ============================================== */
/* === ESTILOS PARA SEÇÃO DE GARANTIA === */
/* ============================================== */

#secao-garantia {
    background-color: var(--hall-yellow);
    padding: 50px 10px 10px;
    text-align: center;
}

.garantia-header {
    max-width: 900px;
    margin: 0 auto;
}

.garantia-header h2 {
    font-size: var(--tamanho-h2-desktop);
    font-weight: 700;
    color: var(--roxo);
    line-height: 1.2;
    margin-bottom: 20px;
    padding: 0 10px;
}

.garantia-header h2 strong {
    color: var(--roxo);
}

.garantia-header img {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 20px auto;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.15));
}

.garantia-header h3 {
    font-size: var(--tamanho-h3-desktop);
    font-weight: 500;
    color: var(--hall-text);
    margin: 0;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .garantia-header h2 {
        font-size: var(--tamanho-h2-mobile);
        text-wrap: balance;
    }
    .garantia-header h3 {
        font-size: 1.1rem;
        margin-bottom: 25px;
        text-wrap: balance;
    }
}

/* ============================================== */
/* === ESTILOS PARA SEÇÃO DE OFERTAS === */
/* ============================================== */

#secao-ofertas {
    padding: 10px 20px;
    background-color: var(--amarelo);
}

.ofertas-header {
    text-align: center;
    margin-bottom: 30px;
}

.ofertas-header h2 {
    font-size: var(--tamanho-h2-desktop);
    font-weight: 700;
    color: var(--roxo);
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 1200px;
    text-wrap: balance;
    text-shadow: 1px 1px 1px rgba(247, 247, 247, 0.329);
}

.ofertas-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 80px;
}

.oferta-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    border: 3px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden; /* Clips background colors neatly to card border radius */
}

.oferta-card:hover {
    transform: translateY(-10px);
    border-color: var(--roxo);
}

/* Ajuste específico para o card com a fita não cortar as abas 3D transversais */
#plano-redacao {
    position: relative;
    overflow: visible;
}

#plano-redacao .ribbon-premium-container + .oferta-header {
    border-top-left-radius: 17px !important;
    border-top-right-radius: 17px !important;
}

/* ETIQUETA PREMIUM TRANSVERSAL (GOLDEN RIBBON) - Design Ultra Premium */
.ribbon-premium-container {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 160px;
  height: 160px;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}

/* Folds/Ears for 3D premium effect wrapping around the card borders */
.ribbon-premium-container::before,
.ribbon-premium-container::after {
  content: '';
  position: absolute;
  z-index: 4;
  border: 4px solid #7c5c16; /* Sombra dourada escura */
}

/* Fold superior */
.ribbon-premium-container::before {
  top: 0;
  left: 28px;
  border-top-color: transparent;
  border-left-color: transparent;
}

/* Fold lateral direito */
.ribbon-premium-container::after {
  bottom: 28px;
  right: 0;
  border-bottom-color: transparent;
  border-right-color: transparent;
}

@keyframes gold-shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.ribbon-premium-texto {
  position: absolute;
  display: block;
  width: 235px;
  padding: 8px 0;
  background: linear-gradient(120deg, 
    #b38728 0%, 
    #fcf6ba 25%, 
    #fbf5b7 35%, 
    #b38728 50%, 
    #fcf6ba 70%, 
    #aa771c 100%
  );
  background-size: 200% auto;
  animation: gold-shimmer 5s linear infinite;
  color: #111111;
  font-family: 'Poppins', sans-serif; /* Usando Poppins que já faz parte do projeto */
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
  right: -58px;
  top: 32px;
  transform: rotate(45deg);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  z-index: 5;
}

@media (max-width: 480px) {
  .ribbon-premium-container {
    width: 130px;
    height: 130px;
    top: -6px;
    right: -6px;
  }
  .ribbon-premium-container::before {
    left: 20px;
    border-width: 3px;
  }
  .ribbon-premium-container::after {
    bottom: 20px;
    border-width: 3px;
  }
  .ribbon-premium-texto {
    width: 195px;
    padding: 6px 0;
    font-size: 0.62rem;
    right: -48px;
    top: 26px;
  }
}

.oferta-header {
    padding: 24px 20px;
    color: var(--hall-yellow);
    text-align: center;
    background-color: var(--roxo);
}

.oferta-header h4 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    width: 100%;
    text-wrap: balance;
}

.oferta-header p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.4;
}

.oferta-bonus-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.oferta-bonus {
    background-color: var(--roxo);
    border-radius: 10px;
    margin-top: 8px;
    padding: 15px;
    text-align: center;
}

.oferta-bonus span {
    display: block;
    font-weight: 800;
    color: var(--amarelo);
    font-size: 1.1rem;
}

.oferta-bonus p {
    margin: 0;
    font-weight: 700;
    color: var(--cor-texto-claro);
}

.oferta-bonus-explicacao {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    font-weight: 300;
    line-height: 1.35;
    text-wrap: balance;
}

.oferta-body {
    padding: 20px 25px;
    background-color: #f7f7f9;
}

.oferta-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oferta-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #333;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 12px;
}

.oferta-features li:last-child {
    border-bottom: none;
}

.oferta-features i {
    color: var(--roxo);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.oferta-footer {
    padding: 5px 25px 30px;
    background-color: #f7f7f9;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* Caixa de Destaque da Garantia/Cashback no Cabeçalho */
.header-garantia-badge {
    background-color: rgba(255, 255, 255, 0.12); /* Fundo translúcido sutil */
    border: 1px dashed rgba(255, 255, 255, 0.4); /* Borda tracejada branca */
    border-radius: 8px;
    padding: 12px;
    margin-top: 14px;
    text-align: center;
}

.header-garantia-badge strong {
    display: block;
    color: var(--amarelo); /* Amarelo brilhante para alto destaque */
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.header-garantia-badge span {
    display: block;
    color: #ffffff; /* Texto explicativo em branco */
    font-size: 0.82rem;
    line-height: 1.4;
    font-weight: 500;
}

.oferta-preco {
    text-align: center;
    margin-bottom: 25px;
}

.oferta-preco .preco-texto-pequeno {
    font-size: 1rem;
    margin-bottom: 2px;
}

.oferta-preco .preco-valor-grande {
    font-size: 3.5rem;
    color: var(--roxo);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.oferta-preco .preco-avista {
    font-size: 1rem;
    color: #555;
}

.btn-oferta {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    background-color: var(--laranja);
    color: var(--cor-texto-claro);
    text-align: center;
    padding: 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-oferta:hover {
    background-color: #d96827;
}

.oferta-footer {
    padding: 30px 25px;
    background-color: #f7f7f9;
    border-top: 1px solid #e9e9e9;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* Bloco da Oferta Principal */
.oferta-principal-bloco {
    background-color: #ffffff;
    border: 2px solid var(--roxo);
    border-radius: 12px;
    padding: 25px 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(146, 0, 208, 0.05);
    position: relative;
}

.oferta-principal-badge {
    background-color: var(--roxo);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 1px;
}

.oferta-principal-bloco h3 {
    font-size: 1.6rem;
    color: var(--cor-texto-principal);
    margin: 10px 0 15px 0;
    font-weight: 700;
    text-wrap: balance;
}

.oferta-principal-precos {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preco-de-linha {
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
}

.preco-parcelado {
    font-size: 2rem;
    color: var(--roxo);
}

.preco-parcelado strong {
    font-weight: 800;
    font-size: 2.6rem;
}

.preco-avista {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* Custom pricing layout for plano-turbo (stacked layout: price on top, label below, installments at the bottom) */
#plano-turbo .preco-avista {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

#plano-turbo .preco-avista strong {
    font-size: 3.5rem; /* Aumentado por estar isolado no topo */
    font-weight: 800;
    color: var(--roxo);
    line-height: 1;
    display: block;
    margin: 0;
}

#plano-turbo .preco-avista .avista-label {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
}

#plano-turbo .preco-parcelado {
    font-size: 1.05rem;
    color: #777777;
    font-weight: 500;
    margin-top: 8px; /* Espaço entre o bloco à vista e o parcelado */
}

#plano-turbo .preco-parcelado strong {
    font-size: 1.05rem;
    font-weight: 500;
    color: #777777;
}

@media (max-width: 768px) {
    #plano-turbo .preco-avista strong {
        font-size: 2.8rem;
    }
    #plano-turbo .preco-avista .avista-label {
        font-size: 0.85rem;
    }
    #plano-turbo .preco-parcelado {
        font-size: 0.95rem;
        margin-top: 6px;
    }
    #plano-turbo .preco-parcelado strong {
        font-size: 0.95rem;
    }
    .ofertas-grid {
    gap: 20px;
}
}

.oferta-principal-bloco .btn-oferta.main-cta {
    max-width: 350px;
    margin: 0 auto;
    display: block;
}

/* Divisor Elegante com Flexbox para corrigir desalinhamento mobile */
.ofertas-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 35px 0 25px 0;
}

.ofertas-divider::before, .ofertas-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.ofertas-divider span {
    padding: 0 15px;
    font-size: 1.3rem;
    color: var(--cor-texto-principal);
    font-weight: 700;
    text-align: center;
    text-wrap: balance;
}

/* Lista de Descontos em Linha */
.ofertas-desconto-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.desconto-opcao-row {
    position: relative;
    margin-top: 15px; /* Espaço para o badge absoluto no topo */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 22px 20px 15px; /* Padding top ligeiramente maior para separar do badge */
    transition: all 0.3s ease;
}

.oferta-desconto-badge {
    background-color: var(--roxo);
    color: var(--cor-fundo);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 2;
}

.desconto-opcao-row:hover {
    border-color: var(--roxo);
    box-shadow: 0 4px 12px rgba(146, 0, 208, 0.08);
}

.opcao-info-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.concept-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: #ffffff;
}

.row-b .concept-circle { background-color: var(--hall-purple); }
.row-c .concept-circle { background-color: var(--hall-purple); }
.row-d .concept-circle { background-color: var(--hall-purple); }

.concept-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.concept-title {
    font-weight: 700;
    color: var(--cor-texto-principal);
    font-size: 1.6rem;
}

.concept-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}

.badge-text-prefix {
    font-size: 1.4rem;
    color: var(--cor-texto-principal);
    font-weight: 500;
}

.concept-badge-off {
    background-color: rgba(146, 0, 208, 0.1);
    color: var(--roxo);
    font-size: 1.2rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
}

.opcao-price-col {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 5px 0;
    min-width: 100%;
}

.price-old {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
}

.price-new {
    font-size: 2rem;
    color: var(--roxo);
}

.price-new strong {
    font-size: 2.6rem;
    font-weight: 800;
}

.price-cash {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

.opcao-action-col {
    width: 100%;
    margin-top: 5px;
}

.desconto-opcao-row .btn-desconto-opcao {
    margin: 15px auto 0;
    max-width: 100%;
}

.selos-confianca-footer {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #9900ff;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    
    /* Restaurar tamanhos normais de títulos e textos no mobile */
    .oferta-principal-bloco h3 {
        font-size: 1.25rem;
    }
    
    .concept-title {
        font-size: 1.25rem;
    }
    
    .badge-text-prefix {
        font-size: 0.95rem;
    }
    
    .concept-badge-off {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    /* Restaurar tamanhos originais dos preços para não quebrar em duas linhas */
    .preco-parcelado, .price-new {
        font-size: 1.6rem;
        white-space: nowrap;
    }
    
    .preco-parcelado strong, .price-new strong {
        font-size: 2.1rem;
    }
    
    .preco-avista, .price-cash {
        font-size: 0.95rem;
    }
    
    .price-old {
        font-size: 0.9rem;
    }
    
    .opcao-info-col {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .opcao-price-col {
        text-align: center;
        padding: 0;
        min-width: unset;
    }
    
    .desconto-opcao-row .btn-desconto-opcao {
        max-width: 350px;
        font-size: 1em;
        padding: 18px 20px;
        border-radius: 12px;
        margin: 15px auto 0;
        display: block;
    }
    
    .ofertas-divider span {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .selos-confianca-footer {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .oferta-principal-bloco .btn-oferta.main-cta {
        max-width: 350px;
        font-size: 1em;
        margin: 0 auto;
        display: block;
    }

    .ofertas-header h2 {
        font-size: var(--tamanho-h2-mobile);
        margin-bottom: 10px;
        line-height: 1.1;
        text-wrap: balance;
    }
}

/* ============================================== */
/* === NOVO FAQ INTERATIVO (Estilo Duas Colunas) === */
/* ============================================== */

#secao-faq {
    background-color: var(--cor-fundo);
    padding: 60px 20px;
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.faq-header h2 {
    color: var(--roxo);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 1.1rem;
    color: var(--cor-texto-principal);
}

.faq-card-body {
    padding: 30px 25px !important; 
    min-height: 250px !important; 
    background-color: #fff;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

#faq-dynamic-answer {
    font-family: 'Consolas', 'Courier New', monospace; /* Fonte estilo máquina de escrever */
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.interactive-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}

/* --- Coluna da Esquerda (Lista de Perguntas COM SCROLL) --- */
.faq-questions-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 520px; /* Altura fixa para forçar a rolagem */
    overflow-y: auto;  /* Ativa a rolagem vertical */
    padding-right: 15px; /* Dá um espacinho para a barra não colar nos botões */
}

/* Customização da Barra de Rolagem da Lista */
.faq-questions-column::-webkit-scrollbar {
    width: 6px;
}
.faq-questions-column::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}
.faq-questions-column::-webkit-scrollbar-thumb {
    background: var(--roxo); /* Usando o roxo da sua marca */
    border-radius: 10px;
}

.faq-interactive-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px 25px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cor-texto-principal);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.faq-interactive-btn:hover {
    border-color: var(--roxo);
    transform: translateX(5px);
}

.faq-interactive-btn i {
    color: #aaa;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Estado Ativo do Botão */
.faq-interactive-btn.active {
    border: 2px solid var(--roxo);
    background-color: rgba(146, 0, 208, 0.05); /* Fundo roxo bem clarinho */
    color: var(--roxo);
    box-shadow: 0 5px 15px rgba(146, 0, 208, 0.1);
}

.faq-interactive-btn.active i {
    color: var(--roxo);
    transform: rotate(90deg); /* Seta aponta pra baixo */
}

/* --- Coluna da Direita (Card Resposta) --- */
.faq-answer-column {
    position: sticky;
    top: 100px; /* Faz o card acompanhar a rolagem */
}

.faq-answer-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* --- NOVO CABEÇALHO DO CARD DE RESPOSTA --- */
.faq-card-header {
    background-color: #fff; /* Fundo branco como no exemplo */
    padding: 20px 25px;
    display: flex;
    align-items: center; /* Alinha avatar e textos no meio */
    gap: 15px;
    border-bottom: 1px solid #eee;
}

.faq-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Deixa a foto redonda */
    background-color: var(--roxo); /* Cor de fundo caso a imagem seja transparente */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.faq-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-header-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.faq-brand-title {
    font-weight: 800; /* Título mais grosso igual ao exemplo */
    font-size: 1.2rem;
    color: #111;
}

.faq-status {
    font-size: 0.9rem;
    color: #b0cc24; /* Aquele verde/amarelado específico do seu print */
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #b0cc24;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.faq-accordion-item {
    width: 100%;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.faq-interactive-btn {
    width: 100%; 
}
.faq-mobile-answer {
    display: none; 
}

/* --- RESPONSIVIDADE DO FAQ (A Mágica do Mobile) --- */
@media (max-width: 992px) {
    .interactive-faq-layout {
        grid-template-columns: 1fr;
    }

    #secao-faq {
    background-color: var(--cor-fundo);
    padding: 30px 20px;
}
    
    /* 1. Oculta o card lateral de digitação no celular */
    .faq-answer-column {
        display: none !important;
    }

    /* 2. Libera a rolagem da coluna de perguntas para a página normal */
    .faq-questions-column {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
        gap: 12px;
    }

    /* 3. Transforma os itens na estética de Cartão Fechado */
    .faq-accordion-item {
        border: 1px solid #e0e0e0;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        overflow: hidden;
    }

    /* Quando a pergunta recebe o clique, o container inteiro fica Roxo */
    .faq-accordion-item.active {
        background-color: var(--roxo);
        border-color: var(--roxo);
    }

    /* Remove os estilos do botão que vieram do desktop */
    .faq-interactive-btn {
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 18px 20px; 
    }

    .faq-interactive-btn:hover {
        transform: none; /* Tira o efeito do botão "pular" pro lado no mobile */
        border-color: transparent;
    }

    /* Textos e ícones brancos quando a sanfona abre */
    .faq-interactive-btn.active {
        background: transparent;
        color: #fff;
        border: none;
        box-shadow: none;
    }

    .faq-interactive-btn.active i {
        color: #fff;
    }

    /* 4. Mostra a resposta fluindo para baixo de forma suave */
    .faq-accordion-item.active .faq-mobile-answer {
        display: block;
        padding: 0 20px 20px 20px;
        color: rgba(255, 255, 255, 0.95); /* Texto branco para leitura suave no fundo roxo */
        font-size: 1rem;
        line-height: 1.6;
        animation: fadeIn 0.4s ease-in-out forwards;
    }
}


/* ============================================== */
/* === ESTILOS PARA RODAPÉ === */
/* ============================================== */

#secao-footer {
    background-color: var(--cor-fundo);
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid #e9e9e9;
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.footer-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 4px 0;
}

/* ============================================== */
/* === HALL DA FAMA === */
/* ============================================== */

.hall-section {
    padding: 60px 0 80px 0;
    background-color: var(--hall-bg);
    border-top: 1px solid #eee;
    overflow: hidden; 
    font-family: 'Poppins', sans-serif; 
}

.hall-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hall-title {
    font-size: var(--tamanho-h2-desktop);
    font-weight: 700;
    color: var(--hall-text);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hall-highlight {
    color: var(--hall-purple);
    position: relative;
    display: inline-block;
}

.hall-highlight::after {
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    background-color: var(--hall-yellow);
    opacity: 0.4;
    position: absolute;
    bottom: 2px;
    left: 0;
    z-index: -1;
    border-radius: 4px;
}

.hall-subtitle {
    font-size: var(--tamanho-h3-desktop);
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid de Estatísticas */
.hall-stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.hall-stat-card {
    background: var(--hall-card-bg);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 25px;
    min-width: 140px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hall-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--hall-purple);
}

.hall-year {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.hall-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--hall-purple);
    line-height: 1;
}

.hall-label {
    font-size: 0.8rem;
    color: var(--hall-text);
    margin-top: 5px;
}

/* Carrossel Infinito */
.hall-carousel-wrapper {
    position: relative;
    width: 100vw; 
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.hall-track {
    display: flex;
    gap: 20px;
    width: max-content; 
    animation: hallScroll 120s linear infinite;
    padding-left: 20px; 
}


/* Pause na animação ao passar o mouse (APENAS DESKTOP) */
@media (hover: hover) {
    .hall-track:hover {
        animation-play-state: paused;
    }

    .hall-photo-item:hover {
        transform: scale(1.1);
        border-color: var(--hall-yellow);
        z-index: 10;
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    .hall-photo-item:hover img {
        transform: scale(1.05); 
    }

    .hall-subtitle {
    font-size: var(--tamanho-h3-mobile);
    text-wrap: balance;
    
    }

    .hall-section {
    padding: 30px 0 20px 0;
}

}

/* O toque no mobile via JavaScript (active-focus) funciona em todos os dispositivos */
.hall-photo-item.active-focus {
    transform: scale(1.1);
    border-color: var(--hall-yellow);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.hall-photo-item {
    position: relative;
    width: 200px; 
    height: 280px; 
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hall-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}



@keyframes hallScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .hall-title {
        font-size: var(--tamanho-h2-mobile);
        text-wrap: balance;
    }
    .hall-stats-grid {
        gap: 10px;
    }
    .hall-stat-card {
        min-width: 45%; 
        padding: 10px;
    }
    .hall-number {
        font-size: 1.5rem;
    }
    .hall-photo-item {
        width: 150px;
        height: 210px;
    }
}

/* --- Estilos da Seção de Depoimentos (Prints Textuais Antigos - Apresentação) --- */
.print-testimonials-section {
    padding: 5px 0 20px 0;
}

.cta-depoimentos {
    text-align: center;
}

/* Ajuste específico para este título longo ficar bonito - IGUAL AO HERO */
.print-testimonials-section .section-title {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    font-size: var(--tamanho-h2-desktop); /* Mesmo tamanho do span no Hero */
    font-weight: 700;
    line-height: 1.2;
    text-wrap: balance;
}

/* Forçando sobreposição para garantir que funcionará */
#secao-apresentacao .print-testimonials-section h2.section-title.fade-in-on-scroll {
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.print-testimonials-section .highlight-purple {
    color: var(--roxo);
    font-weight: 800;
}

.print-testimonials-section .highlight-yellow {
    color: var(--amarelo);
}

.masonry-grid {
    column-count: 3; 
    column-gap: 20px; 
}

.masonry-item {
    break-inside: avoid; 
    margin-bottom: 20px; 
}

.masonry-item img {
    width: 100%; 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.masonry-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(146, 0, 208, 0.2); 
}

/* --- Carrossel de Depoimentos (Print) --- */
.print-testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 0 65px;
}

.print-testimonials-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.print-testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.print-testimonials-item {
    flex: 0 0 50%;
    padding: 0 12px;
    box-sizing: border-box;
}

.print-testimonials-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.print-testimonials-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(146, 0, 208, 0.25);
}

/* Botões de Navegação nas Laterais (Amarelo em Destaque) */
.print-testimonials-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: var(--amarelo);
    border: 2px solid var(--amarelo);
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(242, 192, 41, 0.4);
    font-size: 1.2rem;
}

.print-testimonials-btn.prev-btn {
    left: 5px;
}

.print-testimonials-btn.next-btn {
    right: 5px;
}

.print-testimonials-btn:hover {
    background-color: var(--roxo);
    border-color: var(--roxo);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(146, 0, 208, 0.4);
}

.print-testimonials-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Container de Dots centralizado abaixo */
.print-testimonials-dots-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.print-testimonials-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.print-testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(146, 0, 208, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.print-testimonials-dot.active {
    width: 24px;
    border-radius: 5px;
    background-color: var(--roxo);
    box-shadow: 0 2px 6px rgba(146, 0, 208, 0.3);
}

@media (max-width: 768px) {
    .print-testimonials-carousel {
        padding: 0 45px;
        margin-top: 25px;
    }

    #secao-apresentacao {
    background-color: var(--roxo);
    color: var(--cor-texto-claro);
    text-align: center;
    padding: 30px 20px 0px 20px;
}

    .print-testimonials-item {
        flex: 0 0 100%;
    }
    
    .print-testimonials-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .print-testimonials-btn.prev-btn {
        left: 2px;
    }

    .print-testimonials-btn.next-btn {
        right: 2px;
    }

    #secao-apresentacao .print-testimonials-section h2.section-title.fade-in-on-scroll {
        font-size: 1.4rem !important; /* Fonte compacta para frase de 146 caracteres */
        padding: 0 10px;
        text-wrap: balance;
    }
}

@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1; 
    }
    
    .masonry-item {
        margin-bottom: 25px; 
    }
}

/* --- Selos na Oferta (Alinhados Verticalmente) --- */
.selos-ofertas {
    display: flex;
    flex-direction: column-reverse; /* Agora um embaixo do outro */
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto;
    max-width: 400px;
}

.selo-oferta {
    text-align: center;
}
  
.selo-oferta img{
    max-width: 80%;
}

/* --- SEÇÃO ALFRED (IA Futurista) --- */
.alfred-header-container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.alfred-section-headline {
    font-size: var(--tamanho-h2-desktop);
    font-weight: 800;
    line-height: 1.3;
    color: var(--cor-texto-principalroxo);
    text-wrap: balance;
}

.alfred-bonus-tag, .app-bonus-tag, .mat-bonus-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 15px auto 25px auto;
    background-color: rgba(146, 0, 208, 0.08);
    border: 1px solid var(--roxo);
    padding: 6px 14px;
    border-radius: 30px;
}

.alfred-bonus-tag .bonus-label, .app-bonus-tag .bonus-label, .mat-bonus-tag .bonus-label {
    background-color: var(--amarelo);
    color: #000000;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 1.4rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.alfred-bonus-tag .bonus-name, .app-bonus-tag .bonus-name, .mat-bonus-tag .bonus-name {
    color: var(--roxo);
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
}

.alfred-bonus-intro, .app-bonus-intro {
    font-size: var(--tamanho-h3-mobile);
    color: var(--cor-texto-principal);
    line-height: 1.5;
    margin-bottom: 30px;
    text-wrap: balance;
}

.alfred-bonus-intro strong, .app-bonus-intro strong {
    color: var(--roxo);
    font-weight: 700;
}

/* Responsividade para tags de bônus no mobile */
@media (max-width: 768px) {
    .alfred-bonus-tag, .app-bonus-tag, .mat-bonus-tag {
        gap: 6px;
        padding: 4px 10px;
        margin: 10px auto 15px auto;
        border-radius: 20px;
    }
    
    .alfred-bonus-tag .bonus-label, .app-bonus-tag .bonus-label, .mat-bonus-tag .bonus-label {
        font-size: 1.1rem;
        padding: 2px 6px;
    }
    
    .alfred-bonus-tag .bonus-name, .app-bonus-tag .bonus-name, .mat-bonus-tag .bonus-name {
        font-size: 0.9rem;
    }
    
    .alfred-bonus-intro, .app-bonus-intro {
        font-size: var(--text-primary);
        margin-bottom: 20px;
        max-width: 600px;
        text-wrap: balance;
    }
    
    .alfred-section-headline {
        font-size: var(--tamanho-h2-mobile); /* Ajustado para caber perfeitamente na tela do celular */
        text-wrap: balance;
    }
}

#alfred-section {
    padding: 80px 0;
    border-top: 1px solid #333;
    overflow: hidden; 
}
  
.alfred-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
  
.alfred-text-content {
    text-align: left;
    z-index: 2; 
}
  
.tech-badge {
    display: inline-block;
    background: var(--hall-purple);
    color: var(--amarelo);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--amarelo);
}
  
#alfred-section .alfred-text-content h2 {
    font-size: var(--tamanho-h3-desktop);
    line-height: 1.3;
    margin-bottom: 30px;
}
  
.highlight-cyan {
    color: var(--color-blue-accent);
    text-shadow: 0 0 20px var(--amarelo); 
}
  
.alfred-title {
    font-size: 2.5rem;
    color: var(--cor-texto-principal);
    margin-bottom: 40px;
    border-left: 4px solid var(--color-blue-accent);
    padding-left: 20px;
}
  
.alfred-title strong {
    font-weight: 800;
    letter-spacing: 2px;
}
  
.alfred-title .subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cor-texto-principal);
    margin-top: 5px;
    letter-spacing: normal;
}
  
.alfred-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}
  
.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
  
.feature-icon {
    font-size: 1.8rem;
    color: var(--amarelo);
    background: var(--roxo);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
  
.feature-desc h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}
  
.feature-desc p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}
  
.alfred-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-blue-accent);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: gap 0.3s ease;
}
.alfred-cta:hover {
    gap: 15px;
    text-decoration: underline;
}
  
.alfred-visual-content {
    position: relative;
    width: 100%;
    max-width: 350px; 
    display: flex;
    justify-content: center;
}
  

  

  

  
  
.badge-1 {
    top: 15%;
    left: -40px;
    animation: float 4s ease-in-out infinite;
}
  
.badge-2 {
    bottom: 20%;
    right: -30px;
    animation: float 5s ease-in-out infinite reverse; 
}
  

  

  
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
  
/* O motor da animação de pulsar */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(176, 204, 36, 0.6); }
    70% { box-shadow: 0 0 0 6px rgba(176, 204, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(176, 204, 36, 0); }
}
  
@media (min-width: 992px) {
    .alfred-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
  
    .alfred-text-content {
        flex: 1;
        max-width: 550px;
    }
  
    .alfred-visual-content {
        flex: 1;
        display: flex;
        justify-content: flex-end; 
        padding-right: 20px;
    }
    
    .badge-1 { left: 20px; }
    .badge-2 { right: 20px; }
}

.bonus-book-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-book-card img {
    width: 140px; /* Tamanho individual ideal para a capa ganhar destaque */
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.15));
}

.book-info-wrapper {
    width: 100%;
    text-align: left;
    margin-top: auto; /* MÁGICA: Empurra a caixa pro fundo, alinhando todos os cards perfeitamente */
    padding: 20px;
    background-color: rgba(146, 0, 208, 0.04); /* Fundo roxo bem sutil e elegante */
    border-radius: 12px;
    border: 1px solid rgba(146, 0, 208, 0.1); /* Bordinha leve */
}

.book-edition {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--roxo);
    line-height: 1.3;
    margin-bottom: 5px;
    text-align: center; /* Centraliza para dar equilíbrio */
}

.book-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666666;
    margin-bottom: 20px;
    text-align: center; /* Centraliza para dar equilíbrio */
}

/* Estrutura da Lista com Ícones FontAwesome */
.book-checklist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Aumentei um pouco o respiro entre as linhas */
}

.book-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    line-height: 1.4;
}

.book-checklist li i {
    color: var(--roxo); 
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* --- CONTAINER VISUAL COM PERSPECTIVA 3D --- */
.alfred-visual-content {
    position: relative;
    width: 100%;
    max-width: 350px; 
    display: flex;
    justify-content: center;
    perspective: 2000px; /* Essencial para o efeito 3D funcionar */
}

/* --- AURA PULSANTE (Substitui a glow-sphere) --- */
.ai-aura {
    position: absolute;
    width: 300px;
    height: 300px;
    /* Usando a sua variável de cor azul/cyan para a aura */
    background: radial-gradient(circle, var(--color-blue-accent) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: pulseAura 4s ease-in-out infinite alternate;
    z-index: 0;
    opacity: 0.3; /* Ajuste a opacidade se quiser mais ou menos brilho */
}

@keyframes pulseAura {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.5; }
}

/* --- O CELULAR 3D --- */
.phone-case {
    width: 300px;
    height: 600px;
    background-color: #1a1a1a; 
    border-radius: 45px;
    position: relative;
    
    /* Borda dupla para imitar a carcaça de titânio do celular */
    box-shadow: 
      0 0 0 3px #2a2a2a,
      0 0 0 7px #555, 
      25px 25px 50px rgba(0,0,0,0.5),
      inset 0 0 15px rgba(255,255,255,0.1);
    
    transform: rotateY(-20deg) rotateX(10deg);
    transform-style: preserve-3d;
    animation: floatPhone 6s ease-in-out infinite;
    border: 10px solid #0a0a0a; /* Borda preta da tela */
    z-index: 2;
}

/* Ilha Dinâmica */
.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background-color: #000;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}

.camera-lens {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at top left, #444, #050505);
    box-shadow: inset 0 0 2px rgba(255,255,255,0.3);
}

/* Reflexo na tela */
.reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, rgba(255,255,255,0.15) 0%, transparent 35%, transparent 60%, rgba(255,255,255,0.05) 100%);
    z-index: 5;
    pointer-events: none;
    border-radius: 30px;
}

/* Configuração do Vídeo dentro do celular */
.screen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 34px;
    background-color: #111;
    position: relative;
    z-index: 1;
}

/* Botões físicos na lateral */
.volume-up, .volume-down, .power-btn {
    position: absolute;
    background-color: #444;
    width: 4px;
    border-radius: 2px 0 0 2px;
    transform: translateZ(-5px); /* Joga o botão para trás na perspectiva 3D */
}

.volume-up { height: 40px; top: 120px; left: -14px; }
.volume-down { height: 40px; top: 170px; left: -14px; }
.power-btn { height: 60px; top: 150px; right: -14px; border-radius: 0 2px 2px 0; }

@keyframes floatPhone {
    0%, 100% { transform: rotateY(-20deg) rotateX(10deg) translateY(0); }
    50% { transform: rotateY(-15deg) rotateX(5deg) translateY(-20px); }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .alfred-visual-content {
        margin-top: 2rem; /* Dá um respiro caso fique abaixo do texto no mobile */
    }

    #alfred-section {
    padding: 30px 0;
}
}

@media (max-width: 500px) {
    .phone-case {
        width: 260px;
        height: 520px;
        margin: 0 auto;
        /* No celular, tiramos um pouco da rotação X para ele não ficar muito deitado */
        transform: rotateY(-10deg) rotateX(0deg);
        animation: floatPhoneMobile 5s ease-in-out infinite;
    }

    .ai-aura {
        width: 250px;
        height: 250px;
    }

    @keyframes floatPhoneMobile {
        0%, 100% { transform: rotateY(-10deg) translateY(0); }
        50% { transform: rotateY(-5deg) translateY(-15px); }
    }
}

/* ============================================== */
/* === CARROSSEL AUTOMÁTICO INDEPENDENTE === */
/* ============================================== */
.pure-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    /* Efeito de desfoque/fade nas laterais do carrossel */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.pure-carousel-track {
    display: flex;
    gap: 20px;
    width: max-content; 
    /* 80s controla a velocidade. Menos segundos = mais rápido */
    animation: pureScrollInfinite 80s linear infinite; 
}

/* Pausa o movimento quando o usuário passa o mouse por cima */
.pure-carousel-track:hover {
    animation-play-state: paused;
}

.pure-photo-card {
    width: 200px; 
    height: 280px; 
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.pure-photo-card:hover {
    transform: scale(1.05);
}

.pure-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* A mágica do loop: move até metade da largura (que é a cópia exata) e reinicia */
@keyframes pureScrollInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .pure-carousel-wrapper {
        padding: 15px 0;
    }
    .pure-photo-card {
        width: 140px;
        height: 196px;
    }
}

/* ============================================== */
/* === BOTÃO DE OFERTA GLOBAL (CTAs) === */
/* ============================================== */

.btn-oferta, .btn-desconto-opcao {
    display: block;
    width: 100%;
    max-width: 320px;
    
    /* MÁGICA 1: O '40px' desgruda o botão dos textos acima e abaixo dele em toda a página */
    margin: 40px auto 20px; 
    
    background-color: var(--laranja);
    color: var(--cor-texto-claro);
    text-align: center;
    padding: 18px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    
    /* MÁGICA 2: Transição suave e sombra base */
    box-shadow: 0 8px 20px rgba(242, 118, 46, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Efeito de "pulsação" contínua para chamar atenção */
    animation: pulseCTA 2s infinite;
}

/* O Efeito de Hover (quando passa o mouse) */
.btn-oferta:hover, .btn-desconto-opcao:hover {
    background-color: #d96827;
    transform: translateY(-5px) scale(1.05); /* Faz o botão dar um "pulinho" e crescer */
    box-shadow: 0 15px 30px rgba(242, 118, 46, 0.5); /* Aumenta o brilho da sombra */
}

/* Regra de Proteção: Remove a margem extra apenas dos botões que estão dentro do Card de Oferta */
.oferta-footer .btn-oferta {
    margin: 0 auto; 
}

/* Animação do Pulso */
@keyframes pulseCTA {
    0% { box-shadow: 0 0 0 0 rgba(242, 118, 46, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(242, 118, 46, 0); }
    100% { box-shadow: 0 0 0 0 rgba(242, 118, 46, 0); }
}

/* ============================================== */
/* === IMAGEM DA HERO (SUBSTITUTA DA VSL) === */
/* ============================================== */
.hero-vsl-image {
    width: 100%;
    max-width: 800px; /* Trava o tamanho para não estourar em monitores grandes */
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
    border-radius: 16px; /* Bordinha arredondada premium */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); /* Sombra para dar profundidade */
}

/* Ajuste da imagem para celular */
@media (max-width: 768px) {
    .hero-vsl-image {
        max-width: 90%;
    }
}

/* =========================================
   SEÇÃO: MOTIVOS DE REPROVAÇÃO bloco 2
   ========================================= */
.secao-motivos {
  background-color: var(--roxo); /* Fundo roxo da marca */
  padding: 5rem 1rem 4rem 1rem;
  display: flex;
  justify-content: center;
}

.container-padrao {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.secao-motivos .container-padrao {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Headline Premium */
.headline-secao {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
}

.headline-secao h2 {
  font-size: var(--tamanho-h2-desktop); /* Duas headlines de mesmo tamanho e peso */
  font-weight: 800;
  color: var(--cor-texto-claro); /* Texto branco */
  line-height: 1.25;
  font-family: 'Poppins', sans-serif;
  text-wrap: balance;
}

.subtitulo-motivos {
  font-size: var(--tamanho-h3-desktop); /* Duas headlines de mesmo tamanho e peso */
  font-weight: 700;
  color: var(--cor-texto-claro); /* Texto branco */
  line-height: 1.25;
  font-family: 'Poppins', sans-serif;
  text-wrap: balance;
}

.headline-secao h2 {
  margin-bottom: 50px; /* Separa as duas headlines */
}

.headline-secao .destaque-amarelo {
  color: var(--amarelo); /* Destaque amarelo da marca */
}

/* ESTRUTURA DOS CARDS GRANDES */
.card-motivo {
  background-color: var(--cor-fundo); /* Fundo branco do card */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  border-radius: 15px; /* Bordas arredondadas padrão do design system */
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-motivo:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Detalhe de cor no topo do card baseado no tema */
.card-motivo.tema-laranja {
  border-top: 6px solid var(--laranja);
}

.card-motivo.tema-amarelo {
  border-top: 6px solid var(--amarelo);
}

.card-motivo.tema-laranja-claro {
  border-top: 6px solid var(--laranja-claro);
}

/* Cabeçalho Interno do Card */
.cabecalho-card {
  padding: 2.5rem 2.5rem 1rem 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cabecalho-card h3 {
  margin: 0;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  color: var(--roxo); /* Cabeçalho roxo */
  text-align: center;
  text-wrap: balance;
  font-family: 'Poppins', sans-serif;
}

/* Corpo flexível (Esquerda/Direita) */
.corpo-card {
  display: flex;
  padding: 1.5rem 2.5rem 2.5rem 2.5rem;
  gap: 3rem;
  align-items: stretch;
}

.lado-texto {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Caixa de destaque premium */
.caixa-destaque-texto {
  padding: 2.5rem;
  font-size: 1.05rem;
  color: var(--cor-texto-principal);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-motivo.tema-laranja .caixa-destaque-texto {
  border-left: 4px solid var(--laranja);
  background-color: rgba(242, 118, 46, 0.03);
}

.card-motivo.tema-amarelo .caixa-destaque-texto {
  border-left: 4px solid var(--amarelo);
  background-color: rgba(242, 192, 41, 0.03);
}

.card-motivo.tema-laranja-claro .caixa-destaque-texto {
  border-left: 4px solid var(--laranja-claro);
  background-color: rgba(242, 151, 39, 0.03);
}

.subtitulo-bonus {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.card-motivo.tema-laranja .subtitulo-bonus {
  color: var(--laranja);
}

.card-motivo.tema-amarelo .subtitulo-bonus {
  color: #c99300;
}

.card-motivo.tema-laranja-claro .subtitulo-bonus {
  color: #d17c15;
}

.titulo-bonus {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--cor-texto-principal);
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.caixa-destaque-texto p.pcard1 {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.2rem;
  text-align: left;
}

/* Lista de Vantagens do Bônus */
.lista-vantagens-bonus {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.lista-vantagens-bonus li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
  text-align: left;
}

.lista-vantagens-bonus i {
  font-size: 1.2rem;
  margin-top: 2px;
}

.card-motivo.tema-laranja .lista-vantagens-bonus i {
  color: var(--laranja);
}

.card-motivo.tema-amarelo .lista-vantagens-bonus i {
  color: var(--amarelo);
}

.card-motivo.tema-laranja-claro .lista-vantagens-bonus i {
  color: var(--laranja-claro);
}

/* Preços / Valores Riscados */
.valores-riscados {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
}

.valor-riscado {
  font-size: 1.4rem;
  color:var(--cor-texto-principal);
  text-decoration: line-through;
  margin-bottom: 5px;
  text-align: center;
}

.texto-presente {
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--laranja);
  letter-spacing: 1px;
  margin: 10px 0 0 0;
  text-align: center;
}

/* Lado Direito: Carrossel */
.lado-carrossel {
  flex: 1.2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.track-imagens {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}

.track-imagens:active {
  cursor: grabbing;
}

.track-imagens::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 calc(50% - 0.75rem);
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Carrossel de planejamento: 1 screenshot grande por vez */
.track-planejamento {
  scroll-snap-type: x mandatory;
  gap: 0;
}

.track-planejamento .slide {
  flex: 0 0 100%;
  aspect-ratio: unset;
  height: auto;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: none;
}

.track-planejamento .slide img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 720px);
  object-fit: contain;
  object-position: center;
}

/* Pontinhos Redondos e Modernos */
.dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  width: 100%;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #d1d1d1;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.ativo {
  width: 24px;
  border-radius: 10px;
}

.card-motivo.tema-laranja .dot.ativo {
  background-color: var(--laranja);
}

.card-motivo.tema-amarelo .dot.ativo {
  background-color: var(--amarelo);
}

.card-motivo.tema-laranja-claro .dot.ativo {
  background-color: var(--laranja-claro);
}

/* AJUSTE MOBILE: Mostra apenas 1 imagem por vez na tela do celular */
@media (max-width: 768px) {
  .slide {
    flex: 0 0 100%;
    aspect-ratio: 4 / 5;
    scroll-snap-align: center;
  }

  .track-planejamento .slide img {
    max-height: min(75vh, 640px);
  }

  .track-imagens {
    scroll-snap-type: x mandatory;
  }
}

.secao-motivos {
  padding: 1.5rem 1rem 1rem 1rem;

}

.headline-secao {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 0 auto;
}

/* AJUSTES PARA CELULAR */
@media (max-width: 900px) {
  .corpo-card {
    flex-direction: column;
    padding: 1.5rem;
    gap: 2rem;
    width: 100%;
  }

  .lado-texto,
  .lado-carrossel {
    width: 100%;
    max-width: 100%;
  }

  .cabecalho-card {
    padding: 1.5rem;
  }
  
  .caixa-destaque-texto {
    padding: 1.5rem;
  }
  
  .headline-secao h2{
    font-size: var(--tamanho-h2-mobile);
    text-wrap: balance;
  }

  .subtitulo-motivos {
    font-size: var(--tamanho-h3-mobile);
    text-wrap: balance;
  }
  
  .headline-secao h2 {
    margin-bottom: 25px; /* Reduz a separação entre as duas no mobile */
  }
  
  .headline-secao .subtitulo-motivos {
    padding: 0 10px;
  }
}

/* AJUSTES PARA CELULAR */
@media (max-width: 768px) {
  .headline {
    font-size: 1.6rem;
  }
  .video-container,
  .hero-imagem-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
  }

  .btn-cta {
    width: 90%;
    max-width: 350px;
    font-size: 1.1rem;
    padding: 1rem;
    text-wrap: balance;
    text-align: center;
  }

  .selos-confianca {
    gap: 0.5rem;
    flex-wrap: nowrap;
    font-size: 0.75rem;
  }
}

/* =========================================
   SEÇÃO MAPAS MENTAIS
   ========================================= */
.secao-mapas-mentais {
  background-color: #ffffff; /* Fundo branco */
  background-image: radial-gradient(rgba(103, 48, 174, 0.091) 2px, transparent 2px);
  background-size: 30px 30px; /* Textura de bolinhas idêntica ao fundo-textura */
  color: var(--cor-texto-principal); /* Cor de texto escura */
  padding: 5rem 1rem;
  overflow: hidden;
  position: relative;
}

.mapas-bonus-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 15px auto 25px auto;
    background-color: rgba(146, 0, 208, 0.08); /* Estilo idêntico ao alfred-bonus */
    border: 1px solid var(--roxo);
    padding: 6px 14px;
    border-radius: 30px;
}

.mapas-bonus-tag .bonus-label {
    background-color: var(--amarelo);
    color: #000000;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 1.4rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.mapas-bonus-tag .bonus-name {
    color: var(--roxo);
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
}

.mapas-bonus-intro {
    font-size: 1.15rem;
    color: #444444; /* Cor escura legível */
    line-height: 1.5;
    margin-bottom: 30px;
    text-wrap: balance;
}

.mapas-bonus-intro strong {
    color: var(--roxo); /* Roxo em vez de amarelo para ler no fundo branco */
    font-weight: 700;
}

/* Responsividade para mapas mentais no mobile */
@media (max-width: 768px) {
    .mapas-bonus-tag {
        gap: 6px;
        padding: 4px 10px;
        margin: 10px auto 15px auto;
        border-radius: 20px;
    }
    
    .mapas-bonus-tag .bonus-label {
        font-size: 1.1rem;
        padding: 2px 6px;
    }
    
    .mapas-bonus-tag .bonus-name {
        font-size: 0.9rem;
    }
    
    .mapas-bonus-intro {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .secao-mapas-mentais {
  padding: 1.5rem 1rem;

}
}

.cabecalho-mapas {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 3.5rem auto;
  width: 100%;
}

.cabecalho-mapas h2 {
  font-size: var(--tamanho-h2-desktop);
  color: var(--cor-texto-principal); /* Cor escura */
  margin-top: 1.5rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  text-wrap: balance;
}

.cabecalho-mapas .subtitulo-secao {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #555555; /* Cor escura secundária */
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
}

/* CARROSSEL DE MAPAS MENTAIS */
.mapas-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 50px; /* Margem interna para dar espaço para as setas flutuantes */
}

.mapas-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 15px 0; /* Sombra sem cortar */
}

.mapas-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* CARD DE MAPAS (Design diferenciado / Moldura Roxa para Contraste) */
.mapa-card {
  flex: 0 0 100%; /* No mobile 1 slide ocupa tudo */
  max-width: 100%;
  border-radius: 20px;
  background-color: var(--roxo); /* Fundo branco do card */
  border: 2px solid var(--amarelo); /* Moldura roxa destacada */
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(146, 0, 208, 0.06); /* Sombra sutil com tom roxo */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  perspective: 1000px;
}

/* Alternando rotação inicial (tilt diferenciado) */
.mapa-card:nth-child(odd) {
  transform: rotate(-1.5deg);
}

.mapa-card:nth-child(even) {
  transform: rotate(1.5deg);
}

.mapa-card:hover {
  transform: translateY(-8px) rotate(0deg) scale(1.02) !important;
  border-color: var(--roxo); /* Borda roxa no hover */
  box-shadow: 0 15px 35px rgba(146, 0, 208, 0.2); /* Sombra roxa mais forte no hover */
  background-color: #ffffff;
}

.mapa-img-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 70%; /* Proporção de imagem paisagem */
  border-radius: 12px;
  overflow: hidden;
  background-color: #f7f7f9;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mapa-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mapa-card:hover .mapa-img-wrapper img {
  transform: scale(1.05);
}

/* Overlay do Card com botão zoom */
.mapa-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(146, 0, 208, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mapa-card:hover .mapa-overlay {
  opacity: 1;
}

.btn-zoom-mapa {
  background-color: var(--amarelo);
  color: var(--roxo);
  border: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(242, 192, 41, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-zoom-mapa:hover {
  transform: scale(1.1);
  background-color: #ffffff;
}

/* Desktop layout (2 cards lado a lado) */
@media (min-width: 769px) {
  .mapa-card {
    flex: 0 0 calc((100% - 30px) / 2); /* 2 colunas */
    max-width: calc((100% - 30px) / 2);
  }
}

/* BOTÕES DE CONTROLE DO CARROSSEL (Roxo para Contraste) */
.mapas-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--roxo); /* Fundo branco para sobressair */
  border: 2px solid var(--roxo); /* Moldura roxa marcante */
  color: #ffffff; /* Ícone roxo */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.mapas-carousel-btn:hover {
  background-color: var(--roxo);
  border-color: var(--roxo);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(146, 0, 208, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.mapas-carousel-btn.prev {
  left: -10px;
}

.mapas-carousel-btn.next {
  right: -10px;
}

/* DOTS INDICADORES (Tema Roxo) */
.mapas-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.mapas-carousel-dot {
  background-color: rgba(146, 0, 208, 0.2); /* Roxo translúcido */
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.mapas-carousel-dot.ativo {
  background-color: var(--roxo); /* Roxo ativo */
  width: 26px;
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(146, 0, 208, 0.3);
}

/* LIGHTBOX MODAL PARA AMPLIAÇÃO DO MAPA MENTAL */
.mapas-lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 0, 30, 0.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mapas-lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  border: 4px solid var(--amarelo);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.mapas-lightbox[aria-hidden="false"] .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  user-select: none;
}

.lightbox-close:hover {
  color: var(--amarelo);
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .mapas-carousel-container {
    padding: 0 40px; /* Espaço para as setas na lateral */
  }
  .mapas-carousel-btn {
    display: flex;
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .mapas-carousel-btn.prev {
    left: 2px;
  }
  .mapas-carousel-btn.next {
    right: 2px;
  }

  .cabecalho-mapas {
  margin: 0 auto 1rem auto;

}
}

/* =========================================
   SEÇÃO: CONHEÇA A PLATAFORMA (GALERIA) bloco17
   ========================================= */
.secao-conheca-plataforma {
  background-color: var(--roxo);

  /* MÁGICA: Sutil textura quadriculada branca para dar profundidade ao fundo roxo */
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;

  padding: 2rem 1rem 3rem;
  display: flex;
  justify-content: center;
}

.secao-conheca-plataforma h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--cor-texto-claro);
  line-height: 1.3;
  max-width: 1200px;
  margin: 0 auto;
  text-wrap: balance;
  font-weight: 800;
}

.galeria-plataforma {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  width: 100%;
  max-width: 1000px; /* Limita a largura para a imagem não ficar gigante em telas grandes */
  margin: 0 auto 1rem auto;
}

.imagem-plataforma {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

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

/* Oculta os elementos extras do fluxo da página sem quebrar a animação */
.imagem-plataforma.oculta {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.imagem-plataforma.visivel {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.controles-galeria {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Botão de Fechar (Discreto para não parecer um CTA de compra) */
.btn-secundario {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secundario:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.secao-conheca-plataforma .selos-confianca span {
  color: rgba(255, 255, 255, 0.9);
}

/* Ajuste Mobile */
@media (max-width: 768px) {
  .secao-conheca-plataforma h2 {
    font-size: 1.8rem;
  }
}

/* =========================================
   NOVO BOTÃO DE VER MAIS (AMARELO E DIFERENTE)
   ========================================= */
.btn-galeria-amarelo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;

  /* Cores Invertidas: Texto e Borda Amarelos, Fundo Transparente */
  color: var(--amarelo);
  background-color: transparent;
  border: 2px solid var(--amarelo);
  border-radius: 15px; /* Formato de pílula para ser bem diferente do CTA principal */

  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-galeria-amarelo:hover {
  /* Preenche de amarelo no hover e o texto fica roxo */
  background-color: var(--amarelo);
  color: var(--roxo);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(242, 192, 41, 0.3);
}

/* Espaçamento extra generoso para o CTA após a galeria da plataforma */
.cta-container.centralizado.cta-plataforma-espaco {
  margin-top: 5.5rem; /* Cria um excelente respiro visual após os botões da galeria */
}

/* Ajuste fino para telas menores não acumularem tanto espaço vazio */
@media (max-width: 768px) {
  .cta-container.centralizado.cta-plataforma-espaco {
    margin-top: 3.5rem;
  }
}

/* ============================================== */
/* === DESTAQUE DE DESCONTO (OFERTAS) === */
/* ============================================== */
.preco-desconto-destaque {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    background-color: #fff4f4;
    padding: 10px 20px;
    border-radius: 12px;
    border: 2px dashed #ff4757;
}

.img-cupom-desconto {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 95%;
    height: auto;
}

.preco-de {
    font-size: 1.4rem;
    color: #888;
    position: relative;
    font-weight: 700;
    white-space: nowrap;
}

.preco-de::after {
    content: '';
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    height: 3px;
    background-color: #ff4757;
    transform: translateY(-50%) rotate(-5deg);
}

/* ============================================== */
/* === SISTEMA DE BÔNUS DE NOTAS === */
/* ============================================== */
.bonus-notas-container {
    max-width: 800px;
    margin: 40px auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.bonus-notas-box {
    background-color: #fcfcfd;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-notas-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bonus-notas-box.topo {
    border-top: 5px solid var(--roxo);
}

.bonus-notas-box.topo h3 {
    font-size: 1.5rem;
    color: var(--roxo);
    margin-bottom: 10px;
    font-weight: 800;
}

.bonus-notas-box.topo p {
    font-size: 1.1rem;
    color: #444;
    font-weight: 600;
}

.bonus-notas-box.corpo {
    border-top: 5px solid var(--amarelo);
}

.bonus-notas-box.corpo h4 {
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-linha {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.4;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.bonus-linha:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bonus-linha strong {
    color: var(--roxo);
    font-weight: 800;
}

.bonus-detalhe {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-top: 6px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .bonus-notas-container {
        margin: 30px auto 40px auto;
    }
    .bonus-notas-box {
        padding: 25px 15px;
    }
    .bonus-notas-box.topo h3 {
        font-size: 1.3rem;
    }
    .bonus-linha {
        font-size: 0.95rem;
    }
}

.badge-off {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
    animation: pulseBadgeVibrant 1.5s infinite;
}

@keyframes pulseBadgeVibrant {
    0% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    50% { transform: scale(1.1) rotate(3deg); box-shadow: 0 0 0 15px rgba(255, 71, 87, 0); }
    100% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

/* ============================================== */
/* === SEÇÃO CURSO EXCLUSIVO UERJ (SEM ENEM) === */
/* ============================================== */
.secao-exclusiva {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.exclusiva-header {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.exclusiva-header h2 {
    font-size: var(--tamanho-h2-desktop);
    font-weight: 800;
    color: var(--roxo);
    line-height: 1.25;
    margin-bottom: 15px;
}

.exclusiva-header p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #444;
    font-weight: 500;
}

.exclusiva-imagem-container {
    max-width: 1000px;
    margin: 40px auto 50px auto;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22); /* Sombras bem marcadas */
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

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

@media (max-width: 768px) {
    .secao-exclusiva {
        padding: 30px 15px 30px;
    }

    .exclusiva-header h2 {
    font-size: var(--tamanho-h2-mobile);
    
}

    .exclusiva-imagem-container {
        margin: 30px auto 40px auto;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
        border-radius: 10px;
    }
}

/* ============================================== */
/* === NOVA SEÇÃO: PLATAFORMA CARDS DESTAQUES == */
/* ============================================== */
#secao-plataforma-imagens {
    background-color: #ffffff; /* Fundo branco da seção */
    padding: 80px 20px;
    text-align: center;
}

#secao-plataforma-imagens .container {
    max-width: 1400px;
}

#secao-plataforma-imagens .section-headline {
    font-size: var(--tamanho-h2-desktop);
    font-weight: 700;
    color: var(--cor-texto-principal);
    line-height: 1.25;
    max-width: 1250px;
    margin: 0 auto 50px auto;
    font-family: 'Poppins', sans-serif;
    text-wrap: balance;
}

#secao-plataforma-imagens .highlight-orange {
    color: var(--laranja); /* Highlight laranja */
}

/* Container principal de imagens coladas (cada linha é 1 imagem de ponta a ponta) */
.plataforma-imagens-container {
    display: flex;
    flex-direction: column;
    gap: 0px; /* Coladas sem espaço */
    max-width: 1000px;
    margin: 0 auto 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08); /* Sombra elegante */
    border: 1px solid #e2e2e7;
    background-color: #ffffff;
}

/* Linha de imagem individual */
.plataforma-imagem-linha {
    width: 100%;
    transition: all 0.4s ease;
}

.plataforma-imagem-linha.oculta {
    display: none;
    opacity: 0;
}

.plataforma-imagem-linha.visivel {
    display: block;
    animation: fadeInPlataformaRow 0.5s forwards;
}

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

/* Ações de botão no rodapé (empilhados verticalmente) */
.plataforma-imagens-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.btn-plataforma-outline {
    background-color: #f4f4f5;
    color: var(--roxo); 
    border: 2.2px solid var(--roxo);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-plataforma-outline:hover {
    background-color: var(--roxo);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(75, 2, 144, 0.25);
}

@keyframes fadeInPlataformaRow {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #secao-plataforma-imagens {
        padding: 20px 0;
    }
    #secao-plataforma-imagens .container {
        padding: 0;
    }
    #secao-plataforma-imagens .section-headline {
        font-size:var(--tamanho-h2-mobile);
        margin-bottom: 30px;
        text-wrap: balance;
        padding: 0 15px;
    }
    .plataforma-imagens-container {
        border-radius: 0;
        border-left: none;
        border-right: none;
        width: 100%;
        margin: 0;
    }
    .plataforma-imagem-linha {
        width: 100%;
    }
    .plataforma-imagem-linha img {
        width: 100%;
        height: auto;
        max-width: 100%;
        min-width: 0;
    }
    .btn-plataforma-outline {
        width: 90%;
        max-width: 350px;
        font-size: 0.95rem;
        padding: 12px 20px;
    }
    .plataforma-imagens-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* ==========================================================================
   ESTILOS DO PLANO TURBO (ESTRUTURA DO BANNER)
   ========================================================================== */
.grid-segunda-oferta {
    margin-top: 40px;
}

#plano-turbo .feature-item-nested {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

#plano-turbo .nested-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

#plano-turbo .nested-checklist {
    list-style: none;
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #555;
    width: 100%;
    border: none;
    padding-bottom: 0;
    margin-top: 5px;
}

#plano-turbo .oferta-features .nested-checklist-item {
    border: none;
    padding-bottom: 0;
    gap: 8px;
    font-size: 0.9rem;
    padding-top: 5px;
    display: flex;
    align-items: flex-start;
}

#plano-turbo .oferta-features .nested-checklist-item i {
    font-size: 0.85rem;
    width: auto;
    color: var(--roxo);
}

#plano-turbo .oferta-features li.align-start {
    align-items: flex-start;
}


