/* =========================================================
   NOITE EDITORIAL — Cláudio Duarte · Aparecida de Goiânia
   ========================================================= */

:root {
  /* paleta */
  --paper:    #FFFFFF;
  --ivory:    #F6F1E6;
  --ivory-2:  #EFE7D4;
  --tobacco:  #2A1A12;
  --tobacco-2:#1B100A;
  --wine:     #7A1F1F;
  --wine-2:   #5E1414;
  --amber:    #C18A2C;
  --amber-2:  #A4711B;
  --moss:     #3B4A2E;
  --rule:     rgba(42, 26, 18, 0.14);
  --rule-light: rgba(244, 236, 219, 0.22);

  /* fontes */
  --display: "Montserrat", system-ui, sans-serif;
  --body:    "Montserrat", system-ui, -apple-system, sans-serif;
  --mono:    "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* layout */
  --container: 1240px;
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 32px;
  --gap-lg: 64px;
  --gap-xl: 112px;

  --radius-sm: 4px;
  --radius-md: 10px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
*::selection { background: var(--wine); color: var(--ivory); }

html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--tobacco);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* textura de papel global, bem sutil */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.165 0 0 0 0 0.102 0 0 0 0 0.071 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* =========================================================
   TIPOGRAFIA EDITORIAL
   ========================================================= */
.display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--tobacco);
  hyphens: manual;
  -webkit-hyphens: manual;
  overflow-wrap: normal;
  word-break: normal;
}
.display i {
  font-style: normal;
  font-weight: 800;
  color: var(--wine);
  letter-spacing: -0.045em;
}
.display__line {
  display: block;
}

.display--xl { font-size: clamp(44px, 6vw, 96px); letter-spacing: -0.04em; }
.display--md { font-size: clamp(30px, 3.2vw, 52px); line-height: 1.04; letter-spacing: -0.03em; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tobacco);
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(244, 236, 219, 0.6);
  margin-bottom: 28px;
}
.kicker--light {
  color: var(--ivory);
  border-color: var(--rule-light);
  background: rgba(244, 236, 219, 0.06);
}
.kicker__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 3px rgba(122,31,31,.12);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(122,31,31,0.12); }
  50% { box-shadow: 0 0 0 8px rgba(122,31,31,0); }
}

.section-mark {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule-light);
}
.section-mark--dark { color: var(--tobacco); border-bottom-color: var(--rule); }

.section-head {
  max-width: 880px;
  margin-bottom: var(--gap-lg);
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-deck {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--tobacco);
  opacity: 0.78;
  margin-top: 16px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.btn--small  { padding: 10px 16px; font-size: 12px; }
.btn--large  { padding: 18px 28px; font-size: 14px; }
.btn--xl     { padding: 22px 36px; font-size: 15px; }
.btn--block  { width: 100%; }

.btn--wine {
  background: var(--wine);
  color: var(--ivory);
}
.btn--wine:hover {
  background: var(--wine-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(122,31,31,.55);
}
.btn--amber {
  background: var(--amber);
  color: var(--tobacco);
}
.btn--amber:hover {
  background: var(--amber-2);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(193,138,44,.55);
}
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--rule-light);
}
.btn--ghost:hover {
  background: var(--ivory);
  color: var(--tobacco);
  transform: translateY(-2px);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--tobacco);
  border-color: var(--rule);
}
.btn--ghost-dark:hover {
  background: var(--tobacco);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.topbar__mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--tobacco);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.topbar__brand-text {
  display: flex; flex-direction: column;
  line-height: 1.05;
}
.topbar__brand-text em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--tobacco);
}
.topbar__brand-text small {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tobacco);
  opacity: 0.65;
  margin-top: 2px;
}

.topbar__nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  margin-right: auto;
}
.topbar__nav a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tobacco);
  opacity: 0.7;
  position: relative;
  transition: opacity .2s ease;
}
.topbar__nav a:hover { opacity: 1; }
.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.topbar__nav a:hover::after { transform: scaleX(1); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 32px 0 56px;
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(193,138,44,0.10), transparent 60%),
    radial-gradient(50% 40% at 0% 100%, rgba(122,31,31,0.05), transparent 60%),
    var(--paper);
  overflow: hidden;
  z-index: 2;
}
.hero__rule {
  max-width: var(--container);
  margin: 0 auto 36px;
  padding: 14px 32px 14px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tobacco);
  opacity: 0.75;
  flex-wrap: wrap;
}

.hero__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 56px;
  align-items: end;
}

.hero__lead-col { min-width: 0; }

.display__line.reveal { opacity: 0; transform: translateY(28px); }

.hero__deck {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  max-width: 540px;
  margin: 28px 0 36px;
  color: var(--tobacco);
}
.hero__deck strong { font-weight: 500; }

.meta-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 0 0 32px;
  padding: 18px 0;
}
.meta-strip > div {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 16px;
  border-right: 1px solid var(--rule);
}
.meta-strip > div:first-child { padding-left: 0; }
.meta-strip > div:last-child { border-right: none; }
.meta-strip dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tobacco);
  opacity: 0.6;
}
.meta-strip dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--tobacco);
}

.hero__cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__proof p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--tobacco);
  opacity: 0.78;
  max-width: 360px;
}
.hero__proof strong { font-weight: 500; color: var(--wine); }

.hero__avatars {
  display: flex;
}
.hero__avatars span {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--ivory);
  background: linear-gradient(135deg, var(--c1), var(--c2));
  margin-right: -10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.portrait {
  margin: 0;
  position: relative;
  border: 1px solid var(--rule);
  padding: 14px 14px 18px;
  background: var(--ivory-2);
  box-shadow: 0 30px 60px -30px rgba(42,26,18,0.5);
  transform: rotate(-0.6deg);
}
.portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: sepia(18%) saturate(110%) contrast(102%);
}
.portrait figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tobacco);
  opacity: 0.7;
}
.portrait figcaption i { font-style: normal; font-weight: 600; }

.countdown {
  border: 1px solid var(--rule);
  background: var(--ivory);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.countdown__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tobacco);
  opacity: 0.65;
}
.countdown__cells {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.countdown__cells > div {
  display: flex; flex-direction: column; align-items: center;
  border-right: 1px solid var(--rule);
  padding: 6px 4px 0;
  position: relative;
}
.countdown__cells > div:last-child { border-right: none; }
.countdown__cells strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--wine);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.countdown__cells strong.tick {
  transform: translateY(-3px);
  opacity: 0.7;
}
.countdown__cells small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tobacco);
  opacity: 0.6;
  margin-top: 6px;
}

/* MARQUEE */
.marquee {
  margin-top: 56px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--tobacco);
  color: var(--ivory);
  overflow: hidden;
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 28px);
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   LEDE / MANCHETE EDITORIAL
   ========================================================= */
.lede {
  padding: var(--gap-xl) 0;
  background: var(--paper);
  position: relative;
  z-index: 2;
}
.lede__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.lede__copy {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.42;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--tobacco);
  max-width: 540px;
}
.lede__copy i { color: var(--wine); font-weight: 700; font-style: normal; }

.lede__media {
  margin: 0;
  border: 1px solid var(--rule);
  padding: 14px 14px 18px;
  background: var(--ivory);
  box-shadow: 0 30px 60px -30px rgba(42,26,18,0.4);
}
.lede__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.lede__media figcaption {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tobacco);
  opacity: 0.7;
}

/* =========================================================
   PASTOR
   ========================================================= */
.pastor {
  background: var(--tobacco);
  color: var(--ivory);
  padding: var(--gap-xl) 0;
  position: relative;
  z-index: 2;
}
.pastor .display { color: var(--ivory); }
.pastor .display i { color: var(--amber); }

.pastor__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.pastor__media {
  position: relative;
  margin: 0;
  border: 1px solid var(--rule-light);
  padding: 14px 14px 18px;
  background: rgba(244, 236, 219, 0.04);
  transform: rotate(0.4deg);
}
.pastor__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(40%) sepia(20%);
}
.pastor__media figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.7;
}

.pastor__copy p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ivory);
  opacity: 0.92;
  max-width: 540px;
}
.pastor__copy strong { color: var(--amber); font-weight: 500; }

.pastor__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
  margin: 36px 0 36px;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  padding: 22px 0;
}
.pastor__stats li {
  display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--rule-light);
  padding-left: 16px;
}
.pastor__stats li:first-child { padding-left: 0; }
.pastor__stats li:last-child { border-right: none; }
.pastor__stats strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 3.2vw, 48px);
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pastor__stats span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.6;
}

.pull-quote {
  margin: 0;
  border-left: 2px solid var(--amber);
  padding: 8px 0 8px 24px;
  max-width: 520px;
}
.pull-quote p {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.42;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ivory);
  opacity: 1;
}
.pull-quote p i {
  color: var(--amber);
  font-weight: 700;
  font-style: normal;
}
.pull-quote cite {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.7;
}

/* =========================================================
   PARA QUEM É
   ========================================================= */
.for-who {
  padding: var(--gap-xl) 0;
  background: var(--paper);
  position: relative;
  z-index: 2;
}
.for-who__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.for-who__list li {
  display: flex; flex-direction: column;
  gap: 18px;
  padding: 32px 28px 32px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background .3s var(--ease);
}
.for-who__list li:nth-child(3n) { border-right: none; }
.for-who__list li:hover {
  background: rgba(122,31,31,0.03);
}
.for-who__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--wine);
  padding-left: 28px;
}
.for-who__list p {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin: 0;
  padding-left: 28px;
  max-width: 320px;
  color: var(--tobacco);
}

/* =========================================================
   PROMESSAS
   ========================================================= */
.promises {
  padding: var(--gap-xl) 0;
  background: var(--tobacco);
  color: var(--ivory);
  position: relative;
  z-index: 2;
}
.promises .display { color: var(--ivory); }
.promises .display i { color: var(--amber); }

.promises__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
}
.promise {
  background: var(--tobacco);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  gap: 16px;
  transition: background .35s var(--ease);
}
.promise:hover { background: var(--tobacco-2); }
.promise__num {
  font-family: var(--mono);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  line-height: 1;
}
.promise h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ivory);
}
.promise p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ivory);
  opacity: 0.78;
  max-width: 480px;
}

/* =========================================================
   TESTEMUNHOS
   ========================================================= */
.testimonials {
  padding: var(--gap-xl) 0;
  background: var(--ivory-2);
  position: relative;
  z-index: 2;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  margin: 0;
  background: var(--ivory);
  border: 1px solid var(--rule);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 22px;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 4px;
  left: 22px;
  font-family: var(--display);
  font-size: 110px;
  line-height: 1;
  color: var(--wine);
  opacity: 0.2;
}
.testimonial blockquote {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--tobacco);
  position: relative;
  z-index: 1;
}
.testimonial figcaption {
  display: flex; flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.testimonial figcaption strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--wine);
}
.testimonial figcaption span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tobacco);
  opacity: 0.65;
}

/* =========================================================
   PROGRAMACAO
   ========================================================= */
.schedule {
  padding: var(--gap-xl) 0;
  background: var(--paper);
  position: relative;
  z-index: 2;
}
.schedule__list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--rule);
}
.schedule__list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: padding-left .3s var(--ease);
}
.schedule__list li:hover { padding-left: 12px; }
.schedule__time {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(30px, 2.8vw, 44px);
  letter-spacing: -0.035em;
  color: var(--wine);
  line-height: 1;
}
.schedule__body h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 1.9vw, 28px);
  letter-spacing: -0.025em;
  margin: 0 0 6px;
  color: var(--tobacco);
}
.schedule__body p {
  margin: 0;
  font-size: 17px;
  color: var(--tobacco);
  opacity: 0.75;
  max-width: 600px;
}

/* =========================================================
   VENUE
   ========================================================= */
.venue {
  padding: var(--gap-xl) 0;
  background: var(--ivory-2);
  position: relative;
  z-index: 2;
}
.venue__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.venue__copy p {
  font-size: 18px;
  max-width: 460px;
  margin: 0 0 28px;
  color: var(--tobacco);
}
.venue__info {
  list-style: none; padding: 0; margin: 0 0 32px;
  border-top: 1px solid var(--rule);
}
.venue__info li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.venue__info li span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tobacco);
  opacity: 0.6;
}
.venue__info li strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--tobacco);
}
.venue__media {
  margin: 0;
  border: 1px solid var(--rule);
  padding: 14px 14px 18px;
  background: var(--ivory);
}
.venue__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: sepia(20%);
}
.venue__media figcaption {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tobacco);
  opacity: 0.7;
}

/* =========================================================
   INGRESSOS
   ========================================================= */
.tickets {
  padding: var(--gap-xl) 0;
  background: var(--tobacco);
  color: var(--ivory);
  position: relative;
  z-index: 2;
}
.tickets .display { color: var(--ivory); }
.tickets .display i { color: var(--amber); }
.tickets .section-deck { color: var(--ivory); opacity: 0.7; }

.tickets__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.tickets__row--two {
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
}
.ticket {
  background: var(--ivory);
  color: var(--tobacco);
  border-radius: 0;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 22px;
  position: relative;
  border: 1px solid var(--rule);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  /* ticket-stub corner via clip */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}
.ticket:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
}
.ticket--featured {
  background: var(--ivory-2);
  border-color: var(--amber);
  transform: scale(1.04);
  z-index: 2;
}
.ticket--featured:hover { transform: scale(1.04) translateY(-4px); }
.ticket__ribbon {
  position: absolute;
  top: 0; right: 0;
  background: var(--amber);
  color: var(--tobacco);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
}
.ticket__head { display: flex; flex-direction: column; gap: 8px; }
.ticket__lot {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
}
.ticket__head h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  color: var(--tobacco);
}
.ticket__price {
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px dashed var(--rule);
  border-bottom: 1px dashed var(--rule);
  padding: 18px 0;
}
.ticket__price-from {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tobacco);
  opacity: 0.6;
}
.ticket__price strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(44px, 3.6vw, 58px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--wine);
}
.ticket--featured .ticket__price strong { color: var(--amber-2); }
.ticket__price-info {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tobacco);
  opacity: 0.65;
}
.ticket__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.ticket__list li {
  font-size: 16px;
  line-height: 1.4;
  padding-left: 22px;
  position: relative;
  color: var(--tobacco);
}
.ticket__list li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 0;
  color: var(--wine);
  font-size: 13px;
}

.tickets__seals {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  border-top: 1px solid var(--rule-light);
  padding-top: 28px;
}
.tickets__seals li {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.85;
}
.tickets__seals svg { color: var(--amber); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: var(--gap-xl) 0;
  background: var(--paper);
  position: relative;
  z-index: 2;
}
.faq__inner {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq__list { display: flex; flex-direction: column; }
.faq__list details {
  border-bottom: 1px solid var(--rule);
}
.faq__list details:first-child { border-top: 1px solid var(--rule); }
.faq__list summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 23px);
  letter-spacing: -0.02em;
  color: var(--tobacco);
  transition: color .25s ease;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary:hover { color: var(--wine); }
.faq__plus {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--tobacco);
  transition: transform .3s var(--ease);
}
.faq__plus::before {
  width: 14px; height: 1px;
  transform: translate(-50%,-50%);
}
.faq__plus::after {
  width: 1px; height: 14px;
  transform: translate(-50%,-50%);
}
details[open] .faq__plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
details[open] summary { color: var(--wine); }

.faq__list details p {
  margin: 0 0 24px;
  padding-right: 60px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--tobacco);
  opacity: 0.78;
  max-width: 640px;
}

/* =========================================================
   CLOSING CTA
   ========================================================= */
.closing {
  padding: var(--gap-xl) 0;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(193,138,44,0.18), transparent 60%),
    var(--tobacco);
  color: var(--ivory);
  text-align: center;
  position: relative;
  z-index: 2;
}
.closing__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.closing .display {
  color: var(--ivory);
  margin-top: 18px;
}
.closing .display i { color: var(--amber); }
.closing p {
  font-size: clamp(18px, 1.5vw, 22px);
  margin: 24px 0 36px;
  color: var(--ivory);
  opacity: 0.82;
}
.closing p i { color: var(--amber); font-style: italic; }
.closing .section-mark { margin: 0 auto; display: inline-block; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--tobacco-2);
  color: var(--ivory);
  padding: 56px 0 22px;
  position: relative;
  z-index: 2;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule-light);
}
.footer__brand {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.footer__brand em { color: var(--amber); font-style: normal; font-weight: 700; }
.footer p {
  font-size: 15px;
  color: var(--ivory);
  opacity: 0.7;
  max-width: 320px;
  margin: 0;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.65;
  margin: 0 0 16px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 16px;
  color: var(--ivory);
  opacity: 0.85;
  transition: color .2s ease;
}
.footer ul a:hover { color: var(--amber); }
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 32px 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--wine);
  color: var(--ivory);
  text-align: center;
  padding: 16px 20px;
  z-index: 60;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  /* hero passa a empilhar e reorganizar: título → deck → CTA → imagem → meta → countdown → prova */
  .hero__grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .hero__lead-col,
  .hero__visual { display: contents; }

  .hero .kicker     { order: 1; align-self: flex-start; }
  .hero .display    { order: 2; align-self: stretch; }
  .hero__deck       { order: 3; margin: 0; max-width: 100%; align-self: stretch; }
  .hero__cta-row    { order: 4; margin: 0; align-self: stretch; }
  .portrait         { order: 5; transform: none; align-self: stretch; width: 100%; }
  .meta-strip       { order: 6; margin: 0; width: 100%; align-self: stretch; }
  .countdown        { order: 7; width: 100%; align-self: stretch; }
  .hero__proof      { order: 8; align-self: stretch; }

  .pastor__grid { grid-template-columns: 1fr; gap: 48px; }
  .lede__grid { grid-template-columns: 1fr; gap: 40px; }
  .venue__grid { grid-template-columns: 1fr; gap: 40px; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .for-who__list { grid-template-columns: repeat(2, 1fr); }
  .for-who__list li:nth-child(3n) { border-right: 1px solid var(--rule); }
  .for-who__list li:nth-child(2n) { border-right: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .promises__grid { grid-template-columns: 1fr; }
  .tickets__row { grid-template-columns: 1fr; }
  .ticket--featured { transform: none; }
  .ticket--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 760px) {
  body { font-size: 16.5px; }
  .container { padding: 0 22px; }
  .topbar__inner { padding: 12px 22px; gap: 12px; }
  .topbar__nav { display: none; }
  .topbar__cta { margin-left: auto; }

  .hero { padding: 18px 0 36px; }
  .hero__rule { padding: 12px 22px; gap: 12px; font-size: 9.5px; }
  .hero__rule span:nth-child(2) { display: none; }

  /* tightening do hero no mobile (ordem já vem do breakpoint 1080) */
  .hero__grid { padding: 0 22px; gap: 22px; }
  .hero .kicker { margin-bottom: 0; }

  .meta-strip { grid-template-columns: repeat(2, 1fr); }
  .meta-strip > div:nth-child(2) { border-right: none; }
  .meta-strip > div:nth-child(3) { padding-left: 0; }
  .schedule__list li { grid-template-columns: 1fr; gap: 8px; }
  .for-who__list { grid-template-columns: 1fr; }
  .for-who__list li { border-right: none !important; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; padding: 20px 22px 0; }
  .pastor__stats { grid-template-columns: 1fr 1fr; }
  .pastor__stats li:nth-child(2) { border-right: none; }
  .pastor__stats li:nth-child(3) { border-top: 1px solid var(--rule-light); padding-top: 18px; margin-top: 18px; padding-left: 0; }
  .tickets__seals { gap: 20px; }
  .sticky-cta { display: flex; }
  .topbar__cta { display: none; }
  .closing { padding: 80px 0; }
  .lede { padding: 80px 0; }
  .pastor, .for-who, .promises, .testimonials, .schedule, .venue, .tickets, .faq { padding: 80px 0; }
  .countdown__cells strong { font-size: 32px; }
  .display { font-size: clamp(38px, 11vw, 64px); }
  .display--md { font-size: clamp(30px, 8.5vw, 46px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
