/* ==========================================================================
   PROJETO DOZE PEDRAS - FOLHA DE ESTILOS MODERNA, CLEAN & MINIMALISTA
   Paleta: Tons sobrios, azul ardosia profundo, areia suave, ouro sutil e vidro (glassmorphism)
   ========================================================================== */

:root {
  --font-heading: 'Fraunces', serif;
  --font-brand: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Cores Base */
  --bg-main: #0B0E14;
  --bg-surface: #121824;
  --bg-surface-alt: #182030;
  
  --text-primary: #F6F2E9;
  --text-secondary: #ECE5D5;
  --text-muted: #9CA3AF;

  /* Destaques / Acentos */
  --accent-gold: #C9A97E;
  --accent-gold-light: #E7D5B3;
  --accent-jordan: #3D6B63;
  --accent-jordan-light: #6FA89C;

  /* Glassmorphism */
  --glass-bg: rgba(246, 242, 233, 0.05);
  --glass-bg-hover: rgba(246, 242, 233, 0.08);
  --glass-border: rgba(246, 242, 233, 0.12);
  --glass-border-hover: rgba(201, 169, 126, 0.4);
  --glass-shadow: 0 12px 36px 0 rgba(0, 0, 0, 0.4);

  /* Transicoes e Bordas */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset Universal */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================================
   BACKGROUND UNIVERSAL — Desktop e Mobile (iOS/Android)
   
   • Desktop / Android Chrome: background-attachment: fixed no body
     funciona corretamente e mantém a imagem imóvel ao rolar.
   
   • iOS Safari: não suporta background-attachment: fixed em NENHUM
     elemento por design da Apple. O @supports (-webkit-touch-callout)
     detecta iOS exclusivamente e muda para scroll — a imagem aparece
     e acompanha o scroll, o que é aceitável e visualmente correto.
   ========================================================== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  color: var(--text-primary);
  background-color: #000000; /* fallback caso body não carregue */
  min-height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 20px;
  min-height: 100vh;
  min-height: 100dvh;

  /* ---- Imagem de fundo: Desktop e Android ---- */
  background-color: #000000;
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;  /* fixo ao rolar — funciona em desktop e Android */
}

/* ---- Detecção exclusiva de iOS Safari ---- */
/* (-webkit-touch-callout) só existe no WebKit do iOS               */
@supports (-webkit-touch-callout: none) {
  body {
    background-attachment: scroll; /* iOS não suporta fixed; scroll garante visibilidade */
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--accent-gold);
  color: var(--bg-main);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

/* ===== Background Ambiente (River Ribbon) ===== */
.river-ribbon {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.70) 100%),
    radial-gradient(60% 40% at 15% 8%, rgba(61, 107, 99, 0.18), transparent 60%),
    radial-gradient(50% 35% at 90% 20%, rgba(201, 169, 126, 0.10), transparent 60%);
}

/* Container Padrao Alinhado em Todo o Site */
.container {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 2;
}

/* ===== Barra de Progresso ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-jordan-light), var(--accent-gold));
  z-index: 950;
  width: 0%;
  transition: width 0.08s linear;
}

/* ==========================================================================
   CABECALHO PEGAJOSO (STICKY) & MENU HAMBURGUER UNIVERSAL
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 900;
  padding: 10px 0;
  background: #000000;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.scrolled {
  background: #000000;
  padding: 6px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s;
}

.brand:hover {
  opacity: 0.88;
}

.brand-img {
  height: 104px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: height 0.35s var(--ease);
}

.site-header.scrolled .brand-img {
  height: 76px;
}

.brand-text {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--accent-gold-light);
}

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, border-color 0.3s;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-main);
  box-shadow: 0 6px 20px rgba(201, 169, 126, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-gold-light);
  box-shadow: 0 12px 30px rgba(201, 169, 126, 0.38);
}

.btn-ghost {
  border-color: var(--glass-border);
  color: var(--text-primary);
  background: var(--glass-bg);
}

.btn-ghost:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  transform: translateY(-2px);
}

.btn-header-cta {
  background: rgba(201, 169, 126, 0.14);
  border: 1px solid rgba(201, 169, 126, 0.35);
  color: var(--accent-gold-light);
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-header-cta:hover {
  background: var(--accent-gold);
  color: var(--bg-main);
  transform: translateY(-1px);
}

/* Botao Hamburguer Universal */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  cursor: pointer;
  transition: var(--ease);
  outline: none;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
}

.menu-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.menu-toggle.is-active .bar-1 {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .bar-2 {
  opacity: 0;
  transform: translateX(10px);
}

.menu-toggle.is-active .bar-3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   MENU DRAWER LATERAL & BACKDROP
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  z-index: 990;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(340px, 86vw);
  background: rgba(11, 14, 20, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--glass-border);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  z-index: 1000;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 40px rgba(0,0,0,0.6);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--glass-border);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--accent-gold-light);
}

.drawer-logo-img {
  height: 32px;
  width: auto;
}

.drawer-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s;
}

.drawer-close:hover {
  color: var(--text-primary);
}

.drawer-nav {
  margin: 32px 0;
}

.drawer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.drawer-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--accent-gold);
  opacity: 0.7;
}

.drawer-link:hover {
  background: var(--glass-bg);
  color: var(--accent-gold-light);
  transform: translateX(4px);
}

.drawer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.drawer-contact-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-drawer-wa {
  width: 100%;
  background: rgba(61, 107, 99, 0.25);
  border: 1px solid rgba(111, 168, 156, 0.35);
  color: var(--text-primary);
  font-size: 0.9rem;
  padding: 10px 16px;
}

.btn-drawer-wa:hover {
  background: var(--accent-jordan);
}

/* ==========================================================================
   CARDS EM VIDRO (GLASSMORPHISM & TILT)
   ========================================================================== */
.glass {
  background: linear-gradient(155deg, rgba(246, 242, 233, 0.07), rgba(246, 242, 233, 0.02));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}

.glass:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

/* Animacoes de Revelacao no Scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   BLOCO 1: HERO SECTION
   ========================================================================== */
.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0 50px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold-light);
  margin-bottom: 24px;
}

.hero-eyebrow .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-jordan-light);
  box-shadow: 0 0 0 0 rgba(111, 168, 156, 0.7);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(111, 168, 156, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(111, 168, 156, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 168, 156, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.12;
  max-width: 900px;
  margin-bottom: 22px;
}

.accent-gold {
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 500;
}

.hero-lede {
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 34px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--glass-border);
  padding-top: 26px;
  max-width: 780px;
}

.stat {
  flex: 1;
  min-width: 160px;
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent-gold-light);
  line-height: 1.2;
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 38px;
  background: var(--glass-border);
}

/* ==========================================================================
   SECOES GERAIS
   ========================================================================== */
.section {
  padding: 85px 0;
  position: relative;
}

.section-head {
  max-width: 660px;
  margin-bottom: 50px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--accent-jordan-light);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-lede {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ==========================================================================
   BLOCO 2: O MEMORIAL BIBLICO (Josue 4:1-9)
   ========================================================================== */
.memorial-bento {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.scripture-card {
  padding: 40px;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--accent-gold);
  opacity: 0.45;
  line-height: 0.6;
  margin-bottom: 14px;
}

.scripture-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 400;
}

.scripture-ref {
  display: block;
  margin-top: 18px;
  color: var(--accent-jordan-light);
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 600;
}

.reflection {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

.reflection h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--accent-gold-light);
}

.reflection p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.stones-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.stones-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.stones-card .sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.stones-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.stone {
  aspect-ratio: 1;
  border-radius: 12px;
  background: rgba(246, 242, 233, 0.04);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: transform 0.35s var(--ease), background 0.35s, border-color 0.35s;
}

.stone span {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--accent-gold-light);
}

.stone small {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
  text-align: center;
}

.stone:hover, .stone.active, .stone:focus-visible {
  background: rgba(201, 169, 126, 0.18);
  border-color: var(--accent-gold);
  transform: translateY(-3px) scale(1.05);
}

.stone-detail {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(61, 107, 99, 0.15);
  border: 1px solid rgba(111, 168, 156, 0.28);
  font-size: 0.9rem;
  color: var(--text-secondary);
  min-height: 58px;
  transition: opacity 0.25s;
  line-height: 1.5;
}

/* ========================================================= */
/* BLOCO 3: O DESAFIO & A JANELA DE OPORTUNIDADE              */
/* ========================================================= */
.desafio-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.challenge-card {
  padding: 34px;
  grid-column: span 3;
}

.challenge-card.challenge-full {
  grid-column: span 6;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(201, 169, 126, 0.12);
  border: 1px solid rgba(201, 169, 126, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-light);
  margin-bottom: 20px;
}

.card-kicker {
  display: block;
  font-size: 0.78rem;
  color: var(--accent-jordan-light);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.challenge-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.challenge-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.stat-box .hi {
  color: var(--accent-gold-light);
  font-weight: 600;
  font-size: 0.98rem;
}

.stat-box .ctx {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ========================================================= */
/* BLOCO 4: A ESTRATEGIA DOS VINCULOS                         */
/* ========================================================= */
.strategy-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 22px;
}

.step {
  padding: 32px;
}

.step-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--bg-main);
  background: var(--accent-gold);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  font-weight: 700;
}

.step-icon {
  color: var(--accent-jordan-light);
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.strategy-banner {
  padding: 34px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.banner-text h4 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  color: var(--accent-gold-light);
}

.banner-text p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  max-width: 560px;
  line-height: 1.6;
}

/* ========================================================= */
/* BLOCO 5: FRUTOS & FIDELIDADE (Carrossel)                   */
/* ========================================================= */
.testimonial-wrap {
  position: relative;
}

.testimony-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  scrollbar-width: none;
}

.testimony-track::-webkit-scrollbar {
  display: none;
}

.testimony-card {
  min-width: min(420px, 85vw);
  scroll-snap-align: start;
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.testimony-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent-jordan-light);
  border: 1px solid rgba(111, 168, 156, 0.35);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  width: fit-content;
  font-weight: 600;
}

.testimony-quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 22px;
  flex: 1;
}

.testimony-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--accent-jordan-light), var(--accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--bg-main);
  font-weight: 700;
}

.testimony-footer strong {
  display: block;
  font-size: 0.92rem;
}

.testimony-footer small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.track-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 6px;
}

.track-dots {
  display: flex;
  gap: 8px;
}

.track-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s, transform 0.3s;
}

.track-dots .dot.active {
  background: var(--accent-gold);
  transform: scale(1.2);
}

.track-nav {
  display: flex;
  gap: 10px;
}

.track-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.track-btn:hover:not(:disabled) {
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  background: rgba(201, 169, 126, 0.15);
}

.track-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ========================================================= */
/* BLOCO 6: FORMAS DE PARCERIA                                */
/* ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar {
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.pillar-num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: rgba(246, 242, 233, 0.15);
  margin-bottom: 8px;
  font-weight: 700;
}

.pillar h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  margin-bottom: 22px;
  flex: 1;
  line-height: 1.65;
}

.link-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--accent-gold-light);
  font-weight: 600;
  transition: gap 0.3s var(--ease);
}

.link-action:hover {
  gap: 10px;
  color: var(--accent-gold);
}

/* ========================================================= */
/* BLOCO 6 NOVO: INVOLVEMENT GRID (Formas de Parceria)        */
/* ========================================================= */
.involvement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

.involvement-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.involvement-card:hover {
  transform: translateY(-4px);
}

/* Ícone do card */
.inv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  background: rgba(201, 169, 126, 0.10);
  border: 1px solid rgba(201, 169, 126, 0.20);
  color: var(--accent-gold-light);
  transition: background 0.3s, border-color 0.3s;
}

.inv-icon--green,
.inv-icon--presencial,
.inv-icon--mobilizacao {
  background: rgba(61, 107, 99, 0.18);
  border-color: rgba(111, 168, 156, 0.28);
  color: var(--accent-jordan-light);
}

.inv-icon--gold,
.inv-icon--discipulado,
.inv-icon--midia {
  background: rgba(201, 169, 126, 0.12);
  border-color: rgba(201, 169, 126, 0.28);
  color: var(--accent-gold);
}

.inv-icon--intercession,
.inv-icon--online {
  background: rgba(246, 242, 233, 0.06);
  border-color: rgba(246, 242, 233, 0.14);
  color: var(--text-secondary);
}

.involvement-card:hover .inv-icon {
  background: rgba(201, 169, 126, 0.18);
  border-color: rgba(201, 169, 126, 0.40);
}

/* Badge de categoria */
.inv-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(246, 242, 233, 0.08);
  border: 1px solid rgba(246, 242, 233, 0.16);
  color: var(--text-muted);
  margin-bottom: 14px;
  width: fit-content;
}

.inv-badge--green {
  background: rgba(61, 107, 99, 0.18);
  border-color: rgba(111, 168, 156, 0.30);
  color: var(--accent-jordan-light);
}

.inv-badge--gold {
  background: rgba(201, 169, 126, 0.12);
  border-color: rgba(201, 169, 126, 0.28);
  color: var(--accent-gold);
}

/* Título do card */
.inv-title {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.inv-title em {
  font-style: italic;
  color: var(--accent-gold-light);
  font-weight: 400;
}

/* Descrição */
.inv-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.68;
  flex: 1;
  margin-bottom: 24px;
}

/* Rodapé do card (botão) */
.inv-footer {
  margin-top: auto;
}

/* Botão de WhatsApp do card */
.btn-involvement {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(246, 242, 233, 0.18);
  background: rgba(246, 242, 233, 0.06);
  color: var(--text-secondary);
  transition: background 0.3s var(--ease), border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}

.btn-involvement:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.40);
  color: #fff;
  transform: translateY(-1px);
}

.btn-involvement--green {
  border-color: rgba(111, 168, 156, 0.30);
  background: rgba(61, 107, 99, 0.14);
  color: var(--accent-jordan-light);
}

.btn-involvement--green:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.45);
  color: #fff;
}

.btn-involvement--gold {
  border-color: rgba(201, 169, 126, 0.28);
  background: rgba(201, 169, 126, 0.09);
  color: var(--accent-gold-light);
}

.btn-involvement--gold:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.40);
  color: #fff;
}

/* Nota de rodapé do bloco */
.involvement-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  background: rgba(246, 242, 233, 0.04);
  border: 1px solid rgba(246, 242, 233, 0.10);
  line-height: 1.55;
}

.involvement-note svg {
  flex-shrink: 0;
  color: var(--accent-gold-light);
  opacity: 0.7;
}

/* Responsividade do involvement-grid */
@media (max-width: 992px) {
  .involvement-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .involvement-grid {
    grid-template-columns: 1fr;
  }
  .involvement-card {
    padding: 26px;
  }
}
.cta-master {
  padding: 52px;
  position: relative;
}

.cta-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201, 169, 126, 0.22), transparent 70%);
  pointer-events: none;
}

.cta-master h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  max-width: 640px;
  margin-bottom: 16px;
}

.cta-master > p {
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 34px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.wa-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 30px;
  border-radius: var(--radius-md);
  background: rgba(61, 107, 99, 0.18);
  border: 1px solid rgba(111, 168, 156, 0.35);
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.wa-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(111, 168, 156, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-jordan-light);
  flex-shrink: 0;
}

.wa-info {
  flex: 1;
  min-width: 220px;
}

.wa-info .label {
  display: block;
  font-size: 0.82rem;
  color: var(--accent-jordan-light);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.wa-info .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.wa-info .sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.kit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 30px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.kit-box h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--accent-gold-light);
}

.kit-box p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.confidentiality {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.confidentiality svg {
  flex-shrink: 0;
  color: var(--accent-gold-light);
}

/* ========================================================= */
/* RODAPE                                                    */
/* ========================================================= */
.site-footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--glass-border);
  margin-top: 36px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-img {
  height: 38px;
  width: auto;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-brand);
  letter-spacing: 0.12em;
  color: var(--accent-gold-light);
}

.footer-brand small {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
}

.footer-copy {
  text-align: right;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* ========================================================= */
/* BOTAO FLUTUANTE DO WHATSAPP                               */
/* ========================================================= */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 850;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-jordan);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.35s var(--ease), background 0.3s;
}

.float-wa:hover {
  transform: scale(1.08) translateY(-2px);
  background: var(--accent-jordan-light);
}

/* ========================================================= */
/* RESPONSIVIDADE                                            */
/* ========================================================= */
@media (max-width: 992px) {
  .memorial-bento {
    grid-template-columns: 1fr;
  }
  .desafio-bento {
    grid-template-columns: 1fr;
  }
  .challenge-card, .challenge-card.challenge-full {
    grid-column: span 1;
  }
  .strategy-flow {
    grid-template-columns: 1fr;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .stones-matrix {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .btn-header-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .btn-header-cta {
    display: none;
  }
  .section {
    padding: 60px 0;
  }
  .hero {
    padding: 50px 0 35px;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .brand-img {
    height: 70px;
  }
  .site-header.scrolled .brand-img {
    height: 56px;
  }
  .cta-master {
    padding: 30px 20px;
  }
  .wa-highlight, .kit-box {
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .stones-matrix {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-copy {
    text-align: left;
  }
  .float-wa {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
}
