/* ═══════════════════════════════════════════════════════════════════
   TEMA — variáveis globais do template
   Para mudar a identidade visual, edite APENAS esta seção.
   As cores espelham os valores de SITE_CONFIG no config.js.
   ═══════════════════════════════════════════════════════════════════ */
:root {
  --cor-primaria: #690122;
  /* Fundo hero, faixas e footer */
  --cor-secundaria: #b02846;
  /* Gradientes das faixas */
  --cor-destaque: #D26687;
  /* Títulos seção escura e efeito pincel */
  --cor-texto-claro: #800126;
  /* Textos nas seções brancas */
  --cor-fundo-branco: #fdfdfd;
  /* Fundo das seções texturizadas */

  /* Imagens de fundo (não mudar se não mover os arquivos) */
  --img-bg: url('assets/images/bg.png');
  --img-textura-branca: url('assets/images/brancofolha.png');
}

html {
  scrollbar-color: #500000 #050000;
  scrollbar-width: thin;
}

/* Scrollbar Personalizada (Vinho) - Webkit */
::-webkit-scrollbar {
  width: 10px !important;
}

::-webkit-scrollbar-track {
  background: #050000 !important;
}

::-webkit-scrollbar-thumb {
  background: #500000 !important;
  border-radius: 5px !important;
  border: 1px solid #300000 !important;
}

::-webkit-scrollbar-thumb:hover {
  background: #700000 !important;
}

::selection {
  background-color: var(--cor-destaque);
  color: #fff;
}

*,
*::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) ao arrastar cursor */
}

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

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-primaria);
  /* Camada de cima: bg.png */
  position: relative;
  display: flex;
  flex-direction: column;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--img-bg) center top / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

/* Canvas de estrelas (decorativo) */
#art-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 {
  position: absolute;
  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-brand {
  font-family: 'Namdhinggo', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

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

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 {
  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-title {
  font-family: 'Namdhinggo', serif;
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 1s ease forwards;
  letter-spacing: -0.03em;
}

@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 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;
}

.animated-mark {
  position: relative;
  background: transparent;
  color: #fff;
  padding: 0 4px;
  border-radius: 6px;
  display: inline-block;
}

.animated-mark::after {
  content: '';
  position: absolute;
  left: -2px;
  top: 8%;
  height: 88%;
  width: 0%;
  background: var(--cor-destaque);
  border-radius: 3px;
  z-index: -1;
  transition: none;
  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: 0 auto 40px;
  max-width: 700px;
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.65s;
}

.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.2);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px) brightness(1.1);
  -webkit-backdrop-filter: blur(15px) brightness(1.1);

  /* Glow sutil */
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.08),
    inset 0 0 15px rgba(255, 255, 255, 0.1);

  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);
}

.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 {
  /* Para evitar o tom rosa, aumentamos a opacidade do branco e usamos brilho no filtro */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(30px) brightness(1.1) saturate(120%);
  -webkit-backdrop-filter: blur(30px) brightness(1.1) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;

  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);


  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 */
}

.scroll-arrow {
  margin-top: 80px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.82;
  cursor: pointer;
  pointer-events: auto !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: 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);
  /* Padronizado */
  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;
  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-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);
  }
}

/* Scrollbar Webkit — segunda declaração removida (duplicata) */

/* ���� NUVEM SEPARADORA ���������������������������������������������� */
/* PAPER SECTION */
.paper-divider {
  display: none;
  /* Removendo o divisor de imagem para alinhar reto como no novo print */
}

.paper-title {
  font-family: 'Namdhinggo', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--cor-texto-claro);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.paper-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--cor-texto-claro);
  font-weight: 700;
  margin-bottom: 15px;
}

.paper-divider-small {
  width: 150px;
  height: 1.5px;
  background-color: var(--cor-texto-claro);
  margin: 20px auto 30px;
  opacity: 0.8;
}


/*    SE!ÒO ROSA                               */
.section-paper-desc {
  background-color: var(--cor-fundo-branco);
  background-image: var(--img-textura-branca);
  background-size: cover;
  background-position: center;
  padding: 80px 24px 100px;
  position: relative;
  z-index: 10;
  margin-top: -1px;
}

.paper-desc-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.paper-texto {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.8;
  color: var(--cor-texto-claro);
  font-weight: 400;
  margin-bottom: 24px;
}

.paper-texto strong {
  font-weight: 800;
}

.section-rosa {
  display: none;
}

.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;
  /* Texto mais largo para fluir melhor */
  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, var(--cor-primaria), var(--cor-secundaria));
  display: flex;
  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-family: 'Poppins', sans-serif;
  font-size: 24px;

  color: #ffffff;
  margin: 0 40px;
}

.strip-content .dot {
  font-size: 1.4rem;
  margin: 0;
  color: #fff;
  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) center top / cover no-repeat;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}



.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: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.image-frame {
  width: min(450px, 90vw);
  height: min(450px, 90vw);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  background: transparent;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Mostra a imagem inteira com sua moldura própria */
}

.roxo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-frame:hover .roxo-img {
  transform: scale(1.05);
}


.roxo-titulo {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--cor-destaque);
  letter-spacing: -0.01em;
}

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

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

.roxo-block.block-reverse {
  flex-direction: row-reverse;
}

/* ── 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 var(--cor-destaque);
  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: var(--cor-destaque);
  display: block;
}

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

/* Removendo estilos antigos dos personagens */
.roxo-character-img,
.floating-dots,
.character-placeholder {
  display: none;
}

/* ─────────────────────────────────────────────
   MOBILE RESPONSIVITY (CONSOLIDADA)
   ───────────────────────────────────────────── */
@media (max-width: 900px) {

  /* Layout Global e Containers */
  .container-roxo,
  .container-apoio,
  .contato-container {
    width: 100% !important;
    padding: 0 20px !important;
  }

  /* Seção Roxa (Ziguezague no mobile) */
  .roxo-block {
    flex-direction: column !important;
    text-align: center !important;
    gap: 30px !important;
  }

  .roxo-block.block-girl {
    flex-direction: column-reverse !important;
  }

  .roxo-image-side,
  .image-frame {
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    order: -1;
  }

  .roxo-character-img,
  .image-frame img {
    width: auto !important;
    max-width: 85vw !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }

  /* Faixas Animadas (Minimalistas no Mobile) */
  .trust-strip {
    height: 40px !important;
    background: var(--cor-texto-claro) !important;
  }

  .strip-content {
    animation: scroll-strip 40s linear infinite !important;
  }

  .strip-content span {
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important;
    margin: 0 6px !important;
    letter-spacing: 0.03em !important;
  }

  .strip-content .dot {
    font-size: 0.4rem !important;
    margin: 0 1px !important;
    opacity: 0.5 !important;
  }

  /* Seções Brancas (Textura zoom e margens negativas para frestas) */
  .section-paper-desc,
  .section-final-combined {
    width: 100% !important;
    min-height: 50vh !important;
    padding: 60px 24px 80px !important;
    margin-top: -2px !important;
    margin-bottom: -2px !important;
    background-image: var(--img-textura-branca) !important;
    background-size: 500% auto !important;
    background-position: center !important;
    background-repeat: repeat !important;
    background-attachment: scroll !important;
  }

  /* Títulos */
  .paper-title {
    font-size: 2.2rem !important;
  }
}

.section-final-combined {
  width: 100vw;
  min-height: 100vh;
  background-color: var(--cor-fundo-branco);
  background-image: var(--img-textura-branca);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 100px;
}

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

.apoio-titulo {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--cor-texto-claro);
  letter-spacing: -0.01em;
}

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

.apoio-paragrafo strong {
  font-weight: 800;
  color: var(--cor-texto-claro);
}

/* ── 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(210, 102, 135, 0.82), rgba(105, 1, 34, 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(105, 1, 34, 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(210, 102, 135, 0.25),
    0 8px 32px rgba(105, 1, 34, 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;
}

.apoio-image-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.apoio-img-lixo {
  width: 280px;
  max-width: 80vw;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

.apoio-img-lixo:hover {
  transform: scale(1.05) rotate(2deg);
}

/* ���� 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) center top / cover no-repeat;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

.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-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.contato-subtitulo {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}


.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;
  transition: transform 0.3s ease;
}

.contato-social a {
  color: #fff;
}

.contato-social:hover {
  transform: scale(1.1);
}

/*   /*    RODAP0    */
.footer-strip {
  width: 100vw;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 10;
}

.footer-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #D4D2CF, #DBDBDB);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
}

.footer-text {
  color: #444;
  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: libera espaço para a 1ª dobra */
    margin-bottom: 12px;
  }

  .tagline {
    font-size: 1.15rem;
    /* Reduzido para caber melhor na primeira dobra */
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .description {
    font-size: 0.9rem;
    line-height: 1.5;
    text-wrap: balance;
    max-width: 600px;
    margin-bottom: 20px;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 36px;
    /* Reduzido para aproximar os cards no mobile */
  }

  .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;
  }



  .section-paper-desc,
  .section-final-combined {
    width: 100% !important;
    min-height: 50vh !important;
    padding: 60px 24px 80px !important;
    margin-top: -2px !important;
    margin-bottom: -2px !important;
    background-image: var(--img-textura-branca) !important;
    background-size: 500% auto !important;
    background-position: center !important;
    background-repeat: repeat !important;
    background-attachment: scroll !important;
  }

  .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;
  }

  /* 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;
  }

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



/* �"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"—   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%;
}