/* ═══════════════════════════════════════════════════════════════════
   TEMA — variáveis globais do template
   Para mudar a identidade visual, edite APENAS esta seção.
   ═══════════════════════════════════════════════════════════════════ */
:root {
  /* Cores principais */
  --cor-bg-body:        #a8608b;   /* Fallback e fundo base do body */
  --cor-destaque-mark:  rgba(90, 25, 120, 0.82); /* Efeito pincel na palavra grifada */
  --cor-faixa-inicio:   #9D66A6;   /* Gradiente da faixa animada — esquerda */
  --cor-faixa-fim:      #D26771;   /* Gradiente da faixa animada — direita */
  --cor-faixa-texto:    #FFCFF4;   /* Texto e pontos da faixa animada */
  --cor-rosa-bg:        #ffcff4;   /* Fundo seção rosa */
  --cor-rosa-texto:     #a8608b;   /* Texto seção rosa */
  --cor-rosa-divider:   #9E68A5;   /* Linha divisora seção rosa */
  --cor-roxo-titulo:    linear-gradient(to right, #D26771, #FF828E); /* Títulos seção roxa */
  --cor-roxo-texto:     #FFE5F9;   /* Parágrafos seção roxa */
  --cor-apoio-titulo:   linear-gradient(to right, #995F8F, #9D66A6); /* Título seção apoio */
  --cor-apoio-texto:    #623D77;   /* Parágrafos seção apoio */

  /* Imagens de fundo (não alterar se não mover os arquivos) */
  --img-bg-hero:     url('img/ceu-bg.png');
  --img-bg-roxo:     url('img/bg-roxo.png');
  --img-bg-contato:  url('img/ultimobg.png');
  --img-bg-final:    url('img/3juntos.png');
}

/* ═══════════════════════════════════════════════════════════════════
   FEIRA AO AR LIVRO — style.css
   Fiel ao print original
   ═══════════════════════════════════════════════════════════════════ */

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

/* Evitar seleção e "arrastar" de imagens */
img {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none; /* Previne seleção visual (overlay roxo) ao arrastar cursor */
}

/* Mas botões e links que contenham imagens precisam de pointer-events */
a img, button img, .roxo-character-img {
  pointer-events: auto;
}

/* ── SELEÇÃO DE TEXTO ── */
::selection {
  background-color: var(--cor-faixa-texto);
  color: var(--cor-apoio-texto);
}

/* ── SCROLLBAR PERSONALIZADA ── */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--cor-bg-body);
}

::-webkit-scrollbar-thumb {
  background: var(--cor-faixa-inicio);
  border-radius: 6px;
  border: 3px solid var(--cor-bg-body);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cor-faixa-texto);
}

/* ���� Root & Background ���������������������������������������������� */
html,
body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}



body {
  background-color: var(--cor-bg-body);
  background: var(--cor-bg-body) var(--img-bg-hero) center top / 108% auto no-repeat fixed;
  display: flex;
  flex-direction: column;
}

/* Canvas de estrelas (decorativo) */
#stars-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2; /* Fica entre o fundo roxo (1) e o conteúdo (3) */
}

/* ���� NAVBAR ���������������������������������������������������������������������� */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0 16px;

  /* Glassmorphism CLARO � exatamente como no print */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-logo {
  height: 34px;
  object-fit: contain;
  filter: brightness(1.1);
}

/* ���� MAIN �������������������������������������������������������������������������� */
main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 24px 40px;
  /* 110px topo, 40px base */
  min-height: 100vh;
  justify-content: flex-start;
}

/* ���� HERO �������������������������������������������������������������������������� */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  width: 100%;
  position: relative;
  z-index: 3; /* Garante que o conteúdo do hero fique à frente das estrelas */
}

/* Logo grande */
/* Wrapper para parallax JS sem conflitar com a animação CSS da logo */
.hero-logo-wrapper {
  display: block;
  will-change: transform;
}

.hero-logo {
  width: 340px;
  max-width: 85vw;
  object-fit: contain;
  margin-bottom: 36px;
  /* Entrada suave */
  opacity: 0;
  transform: translateY(-18px);
  animation: fadeDown 0.9s ease forwards 0.1s;
}


/* Tagline principal */
.tagline {
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: #fff;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.35s;
}

/* ���� GRIFADO ANIMADO �������������������������������������������������� */
.animated-mark {
  position: relative;
  background: transparent;
  color: #fff;
  padding: 0 4px; /* Reduzido de 8px para diminuir o buraco antes do ponto */
  border-radius: 6px;
  display: inline-block;
}

.animated-mark::after {
  content: '';
  position: absolute;
  left: -2px;
  top: 8%;
  height: 88%;
  width: 0%;
  /* Cor de pincel � levemente mais transparente e quente */
  background: rgba(90, 25, 120, 0.82);
  border-radius: 3px;
  z-index: -1;
  transition: none;
  /* Filtro SVG que dá textura de pincel nas bordas */
  filter: url(#brush-stroke) blur(0.4px);
}

/* Divisor */
.divider {
  width: 340px;
  max-width: 80vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin: 8px auto 26px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

/* Descrição */
.description {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.65s;
}

/* ���� BOT�"ES ���������������������������������������������������������������������� */
.cta-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.btn {
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  cursor: pointer;

  position: relative;
  overflow: hidden;
  /* para o shimmer não vazar */

  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  /* Mesmo glow suave do card em repouso */
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.07),
    inset 0 0 16px rgba(255, 255, 255, 0.03);

  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease, background 0.22s ease;
}

/* Shimmer nos botões */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.20) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-15deg);
  pointer-events: none;
  opacity: 0;
}

.btn:hover::before {
  animation: shimmer-sweep 0.55s ease forwards;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.55);

  /* Glow espalhado igual ao card */
  box-shadow:
    0 0 5px rgba(255, 255, 255, 0.28),
    0 0 18px rgba(255, 255, 255, 0.14),
    0 0 42px rgba(255, 255, 255, 0.08),
    0 0 80px rgba(210, 140, 255, 0.10),
    inset 0 0 18px rgba(255, 255, 255, 0.04);
}

.btn:active {
  transform: translateY(0);
}

/* ���� CARDS DE STATS ������������������������������������������������������ */
.stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin-top: -30px;
  position: relative;
  z-index: 3; /* Estatísticas à frente das estrelas */
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1s;
}

.card {
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;

  width: 220px;
  min-height: 200px;
  padding: 28px 20px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;

  cursor: default;
  position: relative;
  overflow: hidden;
  /* para o shimmer não vazar */

  /* Glow branco suave no estado parado */
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.10),
    inset 0 0 24px rgba(255, 255, 255, 0.04);

  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

/* Faixa de luz que desliza pelo card no hover (shimmer) */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.18) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-15deg);
  pointer-events: none;
  transition: left 0s;
  opacity: 0;
}

.card:hover::before {
  animation: shimmer-sweep 0.6s ease forwards;
}

@keyframes shimmer-sweep {
  0% {
    left: -80%;
    opacity: 1;
  }

  100% {
    left: 130%;
    opacity: 1;
  }
}

.card:hover {
  transform: translateY(-6px) scale(1.025);
  border-color: rgba(255, 255, 255, 0.40);

  /*
   * Glow espalhado em 5 camadas concêntricas:
   * núcleo leve �  espalha gradualmente �  some no roxo distante
   * Sem bordas duras � cada camada se dissolve na seguinte
   */
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.30),
    /* núcleo bem suave */
    0 0 22px rgba(255, 255, 255, 0.16),
    /* anel 1 */
    0 0 48px rgba(255, 255, 255, 0.10),
    /* anel 2 */
    0 0 90px rgba(210, 140, 255, 0.12),
    /* roxo médio */
    0 0 150px rgba(180, 100, 255, 0.07),
    /* roxo distante � espalhado */
    inset 0 0 28px rgba(255, 255, 255, 0.05);
  /* lampejo interno suave */
}

/* ���� SETA DE SCROLL ���������������������������������������������������� */
.scroll-arrow {
  margin-top: 40px; /* Logo abaixo dos cards */
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.8;
  animation: scroll-pulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scroll-pulse {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.card:active {
  transform: translateY(-2px) scale(1.01);
}

.card-icon {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}

/* Card body: tudo centralizado */
.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  width: 100%;
}

/* Card 1: +10.000 Pessoas IMPACTADAS */
.card-value {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.05;
  display: block;
}

.card-label {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.1;
  display: block;
}

.card-sub {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.85;
  display: block;
  margin-top: 2px;
}

/* Card 2 & 3: Labels menores acima e abaixo do valor */
.card-label-top {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
}

/* Card 3: PRONAC grande */
.card-pronac {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}

/* Dados oficiais do PRONAC (código e valor) */
.card-pronac-detalhe {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  display: block;
  line-height: 1.2;
}

/* Nome da Lei do PRONAC */
.card-pronac-lei {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Card 2 e 3: também centralizados (já herdado, mas garante) */
#card-entrada .card-body,
#card-pronac .card-body {
  align-items: center;
  text-align: center;
}

/* ���� WHATSAPP BUTTON ���������������������������������������������� */
#whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;

  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;

  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.25);

  transition: transform 0.22s ease, box-shadow 0.22s ease;

  /* Pulso suave */
  animation: whatsapp-pulse 2.8s ease-in-out infinite;
}

#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 24px rgba(95, 95, 95, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.30);
  animation: none;
  /* para o pulso no hover */
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  left: auto;
  transform: translateY(6px);
  white-space: nowrap;

  background: #1f2937;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: 8px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Setinha apontando para baixo (para o botão) */
.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  right: 18px;
  transform: none;
  border: 6px solid transparent;
  border-top-color: #1f2937;
}

#whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

@keyframes whatsapp-pulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(95, 95, 95, 0.2), 0 2px 6px rgba(95, 95, 95, 0.2);
  }

  50% {
    box-shadow: 0 4px 28px rgba(95, 95, 95, 0.2), 0 2px 8px rgba(95, 95, 95, 0.2);
  }
}

/* ���� BARRA DE ROLAGEM ROXA ���������������������������� */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(30, 5, 50, 0.45);
}

::-webkit-scrollbar-thumb {
  background: rgba(90, 25, 120, 0.88);
  border-radius: 8px;
  border: 1px solid rgba(140, 60, 180, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(110, 35, 150, 1);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(90, 25, 120, 0.88) rgba(30, 5, 50, 0.45);
}

/* ���� NUVEM SEPARADORA ���������������������������������������������� */
.cloud-divider {
  width: 100%;
  line-height: 0;
  margin-top: 80px; /* Espaço após os cards */
  position: relative;
  z-index: 10;
  overflow: hidden; /* Evita scroll lateral com o zoom mobile */
  /* O gradiente "cola" o fundo rosa na metade de baixo das nuvens, independente da resolução */
  background: linear-gradient(to bottom, transparent 50%, #ffcff4 50%);
}

.cloud-divider-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ���� SE�!ÒO ROSA ���������������������������������������������������������� */
.section-rosa {
  background-color: #ffcff4; /* Cor rosa exata das nuvens */
  color: #a8608b; /* Cor roxa para o texto */
  margin-top: -1px;
  padding: 0 24px 100px; /* Zerado para subir o conteúdo ao máximo */
  position: relative;
  z-index: 10; /* Aumentado para garantir que fique por cima das nuvens */
  display: flex;
  justify-content: center;
  text-align: center;
}

.section-rosa-inner {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -180px; /* Subida ainda mais agressiva conforme print2 */
  position: relative; /* Necessário para o z-index funcionar */
  z-index: 5; /* Garante que fique por cima das nuvens */
}

.rosa-logo {
  width: 340px; /* Aumentado para o tamanho do Figma */
  max-width: 85vw;
  margin-bottom: 32px;
  filter: brightness(0.95);
}

.rosa-divider {
  width: 340px;
  max-width: 80vw;
  height: 2.5px;
  background: #9E68A5; /* Cor exata conforme solicitado */
  margin: 0 auto 28px;
}

.rosa-titulo {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
  /* Gradiente linear conforme o Figma */
  background: linear-gradient(to right, #9E68A5, #7D4469);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block; /* Garante que o gradiente acompanhe o tamanho do texto */
}

.rosa-titulo em {
  font-style: italic;
  font-weight: 700;
}

.rosa-texto {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  max-width: 900px;
  color: #a8608b;
}

.rosa-texto strong {
  font-weight: 800;
  color: #a8608b;
}

.section-rosa-inner {
  z-index: 11; /* Ainda mais alto que a seção rosa */
}

/* ���� FAIXA ANIMADA (TRUST STRIP) �������������������������������� */
.trust-strip {
  width: 100vw;
  height: 55px;
  overflow: hidden;
  background: linear-gradient(to right, #9D66A6, #D26771);
  display: flex; /* Alinha os blocos lado a lado */
  align-items: center;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.strip-content {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Impede que o bloco encolha */
  animation: scroll-strip 60s linear infinite;
}

.strip-content span {
  font-size: 1.5rem; /* Mudado de 24px para 1.5rem para acompanhar as configs do celular */
  font-weight: 500;
  color: #FFCFF4;
  margin: 0 40px; /* Aumentado o espaçamento entre palavras */
}

.strip-content .dot {
  font-size: 1.4rem;
  margin: 0;
  color: #FFCFF4;
  opacity: 0.8;
}

@keyframes scroll-strip {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); } /* Rola o bloco inteiro */
}

/* ���� SE�!ÒO ROXA (Como funciona) �������������������������������� */
.section-roxo {
  padding: 120px 24px;
  color: #fff;
  position: relative;
  /* overflow removido para a lua poder entrar pelas laterais */
}

.roxo-bg {
  position: absolute;
  top: -50px;
  left: -50px;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  background: var(--img-bg-roxo) no-repeat center center;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}



.container-roxo {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
  position: relative;
  z-index: 5; /* Garante que personagens e textos fiquem NA FRENTE da lua */
}

.roxo-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}



.roxo-text-side {
  flex: 1.2;
  position: relative;
  z-index: 1; /* Atrás da lua */
}

.roxo-image-side {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10; /* Na frente da lua */
}

.roxo-titulo {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  /* Gradiente conforme Figma */
  background: linear-gradient(to right, #D26771, #FF828E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.roxo-paragrafo {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.7;
  color: #FFE5F9;
  opacity: 1;
  text-align: left;
}

.roxo-paragrafo strong {
  font-weight: 700;
  color: inherit; /* Mantém o mesmo tom do texto */
}

.roxo-character-img {
  width: 130%; /* Mais largo para transbordar do container */
  max-width: 760px; /* Tamanho final de destaque conforme Figma */
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
  animation: roxo-float 5s ease-in-out infinite;
  margin-right: -120px; /* Empurra o Léo e o Juca para a direita */
  cursor: pointer; /* Indica que é interativo */
  transition: filter 0.3s ease;
}

.roxo-character-img:hover {
  animation-play-state: paused; /* Para o movimento ao passar o mouse */
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.25)); /* Leve destaque extra */
}

/* Ajuste específico para a Mili (Bloco da esquerda) */
.block-girl .roxo-character-img {
  margin-right: 0;
  margin-left: -120px; /* Empurra a Mili para a esquerda */
}

/* Placeholder (mantido para referências futuras se necessário) */
.character-placeholder {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.03);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ── TÓPICOS DENTRO DOS BLOCOS ROXOS ─────────────────────────────── */
.roxo-topico {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-left: 4px solid #FFB8E8;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.roxo-topico:last-child {
  margin-bottom: 0;
}

.roxo-topico:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.roxo-topico-icone {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
}

.roxo-topico-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.roxo-topico-titulo {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFD6F3;
  display: block;
}

.roxo-topico-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 229, 249, 0.9);
  margin: 0;
}

/* Pontos flutuantes decorativos */
.floating-dots span {
  position: absolute;
  background: #fff; /* Cor base */
  border-radius: 50%;
  opacity: 0.3;
  animation: roxo-float 4s ease-in-out infinite;
}

/* Algumas bolhas com a cor FFCFF4 */
.floating-dots span:nth-child(odd) {
  background: #FFCFF4;
  opacity: 0.5;
}

.floating-dots span:nth-child(1) { width: 40px; height: 40px; top: 10%; left: -20%; animation-delay: 0s; }
.floating-dots span:nth-child(2) { width: 25px; height: 25px; bottom: 20%; right: -15%; animation-delay: 1s; }
.floating-dots span:nth-child(3) { width: 60px; height: 60px; bottom: -10%; left: 10%; animation-delay: 2s; opacity: 0.15; }

@keyframes roxo-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.01); } /* Crescimento quase imperceptível */
}

/* Responsividade Seção Roxa */
@media (max-width: 900px) {
  .roxo-block {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .roxo-block.block-girl {
    flex-direction: column-reverse; /* Inverte para o texto ficar em cima no mobile */
  }
  
  .section-roxo {
    padding: 80px 24px;
  }

  /* Juca e Mili ficam centralizados no mobile */
  .block-juca .roxo-character-img,
  .block-girl .roxo-character-img {
    margin: 0 auto;
    display: block;
  }

  /* Léo volta para a posição lateral que estava antes */
  .block-boy .roxo-character-img {
    margin-right: -120px;
    margin-left: 0;
  }

  .roxo-character-img {
    width: 100%;
    max-width: 450px;
  }

  /* Ajuste das faixas animadas para celular */
  .trust-strip {
    height: 38px; /* Mais fina */
  }

  .strip-content span {
    font-size: 16px; /* Letras menores */
    margin: 0 15px; /* Espaço reduzido para caberem as 4 */
  }

  .strip-content .dot {
    font-size: 1rem;
  }
}

.section-final-combined {
  width: 100vw;
  min-height: 100vh;
  background: #fff var(--img-bg-final) no-repeat center bottom;
  background-size: cover;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 650px;
}

.container-apoio {
  max-width: 960px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.apoio-titulo {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 56px;
  background: linear-gradient(to right, #995F8F, #9D66A6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.apoio-paragrafo {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.7;
  color: #623D77;
  margin-bottom: 32px;
  text-align: left;
}

.apoio-paragrafo strong {
  font-weight: 800;
  color: #623D77;
}

/* ── TÓPICOS DE APOIO (mesmo estilo dos cards do hero) ──────────── */
#apoio-textos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

.apoio-topico {
  background: linear-gradient(135deg, rgba(157, 102, 166, 0.82), rgba(106, 60, 140, 0.88));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;

  width: 200px;
  min-height: 180px;
  padding: 24px 20px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;

  cursor: default;
  position: relative;
  overflow: hidden;

  box-shadow:
    0 4px 20px rgba(106, 60, 140, 0.30),
    inset 0 0 24px rgba(255, 255, 255, 0.05);

  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

/* Shimmer no hover — igual ao card do hero */
.apoio-topico::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0) 100%);
  transform: skewX(-15deg);
  pointer-events: none;
  opacity: 0;
}

.apoio-topico:hover::before {
  animation: shimmer-sweep 0.6s ease forwards;
}

.apoio-topico:hover {
  transform: translateY(-6px) scale(1.025);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.20),
    0 0 22px rgba(200, 140, 255, 0.25),
    0 8px 32px rgba(106, 60, 140, 0.40),
    inset 0 0 28px rgba(255, 255, 255, 0.05);
}

.apoio-topico-icone {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
}

.apoio-topico-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.apoio-topico-titulo {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  display: block;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.apoio-topico-desc {
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ���� KEYFRAMES ���������������������������������������������������������������� */
@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ���� SE�!ÒO DE CONTATO ���� */
.section-contato {
  width: 100vw;
  padding: 80px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden; /* Corta o fundo que sobra para não empurrar o rodapé */
}

.contato-bg {
  position: absolute;
  top: -50px;
  left: -50px;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  background: var(--img-bg-contato) no-repeat center center;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

.contato-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 5; /* Na frente das estrelas */
}

.contato-header {
  text-align: center;
  color: #fff;
}

.contato-titulo {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.contato-subtitulo {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
}


.contato-cards-wrapper {
  display: flex;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.contato-card {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contato-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%; /* If they are circles, but from the image they look like circular badges */
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.25));
  transition: transform 0.3s ease;
}

.contato-img:hover {
  transform: translateY(-5px);
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
}

.contato-nome {
  font-size: 1.6rem;
  font-weight: 700;
}

.contato-cargo {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-top: -6px;
  letter-spacing: 0.02em;
}

.contato-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.9rem;
  text-transform: none; /* Keep original casing */
  border-radius: 30px; /* Pill shape */
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contato-btn svg {
  flex-shrink: 0;
}

.contato-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.contato-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 4px;
}

.contato-social {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: none;
}

.contato-social a {
  color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.contato-social a:hover {
  transform: scale(1.15);
  opacity: 1;
}

/* Redes da empresa (LinkedIn, Facebook) */
.contato-empresa-rede {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Separador visual entre Instagram do projeto e redes da empresa */
.contato-social a:first-child {
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.25);
  margin-right: 0;
}

/* ���� RODAP�0 ���� */
.footer-strip {
  width: 100vw;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: stretch; /* footer-bg se estica até cobrir toda a altura */
  position: relative;
  z-index: 10;
}

.footer-bg {
  width: 100%;
  height: 100%; /* funciona agora que o pai tem height fixo */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
}

.footer-text {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}

.footer-sep {
  opacity: 0.4;
}

.footer-cnpj,
.footer-end {
  opacity: 0.85;
}

/* ���� RESPONSIVO �������������������������������������������������������������� */
@media (max-width: 700px) {
  body {
    /* Zoom no mobile: mostra menos nuvens, foco no centro */
    background-size: 260% auto;
    background-position: 40% top;
  }

  main {
    padding-top: 76px; /* Reduzido: navbar menor */
    padding-bottom: 24px;
  }

  .hero-logo {
    width: 160px; /* Reduzido de 240px: libera espaço para a 1ª dobra */
    margin-bottom: 12px;
  }

  .divider {
    margin: 4px auto 14px; /* Compacta o divisor */
  }

  .tagline {
    font-size: 1.15rem; /* Reduzido de 1.35rem: cabe em 2 linhas */
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px; /* Reduzido de 40px */
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 36px; /* Reduzido de 80px */
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 11px 20px; /* Ligeiramente mais compacto */
  }


  /* Cards: um abaixo do outro, todos centralizados */
  .stats {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .card {
    width: 100%;
    max-width: 320px;
    min-height: unset;
    flex-direction: column;
    /* ícone em cima, texto embaixo � centralizado */
    padding: 22px 20px 20px;
    gap: 8px;
    justify-content: center;
    align-items: center;
  }

  .card-icon {
    margin-bottom: 4px;
    flex-shrink: 0;
  }

  /* Todos os cards com texto centralizado no mobile */
  .card-body,
  #card-entrada .card-body,
  #card-pronac .card-body {
    align-items: center;
    text-align: center;
  }

  .card-value {
    font-size: 1.8rem;
  }

  .card-label {
    font-size: 1.1rem;
  }

  .card-pronac {
    font-size: 1.6rem;
  }

  /* Ajustes para a Seção Rosa no Mobile */
  .cloud-divider {
    margin-top: 40px;
  }

  .section-rosa {
    margin-top: -1px;
    padding: 40px 20px 60px;
  }

  .rosa-logo {
    width: 200px;
    margin-bottom: 24px;
  }

  .rosa-titulo {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .rosa-texto {
    font-size: 1rem;
  }

  .section-rosa-inner {
    margin-top: -80px; /* Reduzido para a logo não sair para fora no mobile */
  }

  .section-final-combined {
    min-height: 70vh;
    padding-bottom: 180px;
    background-size: 160% auto;
  }

  /* Tópicos: 2 por linha no mobile (como os cards do hero) */
  #apoio-textos {
    gap: 12px;
  }

  .apoio-topico {
    width: calc(50% - 6px);
    min-height: 150px;
    padding: 18px 14px;
  }

  .contato-container {
    gap: 40px;
  }

  .contato-cards-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contato-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .contato-info {
    align-items: center;
  }

  .roxo-paragrafo,
  .apoio-paragrafo,
  .rosa-texto {
    text-align: center; /* Centralizado no mobile para melhor estética */
  }
}

@media (max-width: 700px) {
  .cloud-divider-img {
    width: 250%; /* Zoom agressivo na nuvem */
    margin-left: -75%; /* Centraliza o zoom */
  }

  .section-final-combined {
    /* Trava a escala do background para a largura do celular, quebrando o ciclo do 'cover' */
    background-size: 200% auto;
    /* Afasta o texto garantindo que fique acima das cabeças (que agora escalam com a largura) */
    padding-bottom: 95vw; 
  }

  .footer-text {
    font-size: 0.75rem; /* Menor para caber em 1 linha */
    text-align: center;
    white-space: nowrap;
    padding: 0 10px;
  }
}

/* �"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"—   9. SCROLL ANIMATIONS (Reveal Effects)
   �"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"� */

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Quando a classe 'visible' é adicionada via JS */
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Ajuste para o animated-mark que usa ::after */
.animated-mark::after {
  width: 0%;
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animated-mark.visible::after {
  width: 100%;
}
