/* ============================================================
   Igreja Cristã Betuel — theme.css
   Montserrat (display) + Mulish (body) · Petróleo + Turquesa
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --teal-950: #0b2a25;
  --teal-900: #0e3a33;
  --teal-800: #14564b;
  --teal-700: #1b6b5e;
  --teal-600: #237a6b;
  --teal-500: #2c8f7e;
  --turq:     #5ccdc3;
  --turq-300: #8fddd5;
  --turq-100: #d6f1ee;

  --ink:      #13191a;
  --ink-soft: #3a4446;
  --slate:    #5d6a6c;
  --gray:     #9aa1a2;
  --silver:   #d2d3d6;
  --line:     #e4e7e6;
  --paper:    #f4f6f5;
  --paper-2:  #eef1f0;
  --white:    #ffffff;

  --display: 'Montserrat', system-ui, sans-serif;
  --body:    'Mulish', system-ui, sans-serif;

  --container: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15,40,36,.06), 0 2px 8px rgba(15,40,36,.05);
  --shadow:    0 10px 30px -12px rgba(13,40,36,.22);
  --shadow-lg: 0 30px 70px -28px rgba(11,42,37,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block }
a { color: inherit; text-decoration: none }
button { font-family: inherit; cursor: pointer }
h1, h2, h3, h4, h5 { font-family: var(--display); margin: 0; line-height: 1.04; letter-spacing: -.02em; font-weight: 800 }
p { margin: 0 }
ul, ol { margin: 0; padding: 0; list-style: none }
::selection { background: var(--turq); color: var(--teal-900) }

/* ===== LAYOUT ===== */
.wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--gut) }
.section { padding-block: clamp(64px, 9vw, 128px) }
.section--tight { padding-block: clamp(48px, 6vw, 84px) }

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--turq); display: inline-block }
.eyebrow--light { color: var(--turq) }
.eyebrow--center { justify-content: center }
.lead { font-size: clamp(18px, 2.1vw, 21px); color: var(--ink-soft); line-height: 1.65; max-width: 62ch }
.h-xl { font-size: clamp(40px, 7.2vw, 84px); font-weight: 900; letter-spacing: -.035em }
.h-lg { font-size: clamp(32px, 4.6vw, 56px); font-weight: 900; letter-spacing: -.03em }
.h-md { font-size: clamp(24px, 3vw, 36px); font-weight: 800 }
.amp { color: var(--turq); font-weight: 800 }
.tk  { color: var(--teal-700) }

/* ===== PILLS ===== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--turq);
  color: var(--teal-900);
  padding: 8px 16px;
  border-radius: 999px;
}
.pill--ghost    { background: transparent; color: var(--turq); border: 1.5px solid rgba(92,205,195,.5) }
.pill--dark     { background: var(--teal-700); color: #fff }
.pill--planned  { background: var(--paper); color: var(--slate); border: 1.5px solid var(--line) }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  background: var(--teal-700);
  color: #fff;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.6px solid var(--teal-700);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow) }
.btn svg { width: 18px; height: 18px }
.btn--turq       { background: var(--turq); color: var(--teal-900); border-color: var(--turq) }
.btn--ghost      { background: transparent; color: var(--teal-700); border-color: var(--silver) }
.btn--ghost:hover{ border-color: var(--teal-700) }
.btn--light      { background: #fff; color: var(--teal-800); border-color: #fff }
.btn--ghost-light{ background: transparent; color: #fff; border-color: rgba(255,255,255,.4) }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08) }
.btn--lg   { padding: 18px 32px; font-size: 16px }
.btn--block { width: 100%; justify-content: center }

/* ===== SURFACES ===== */
.bg-paper    { background: var(--paper) }
.bg-ink      { background: var(--ink); color: #fff }
.bg-teal     { background: var(--teal-700); color: #fff }
.bg-teal-deep {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 48%, var(--teal-950) 100%);
  color: #fff;
}
.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff }
.on-dark .lead { color: rgba(255,255,255,.82) }

/* ===== DUOTONE ===== */
.duo { position: relative; overflow: hidden; background: var(--teal-900) }
.duo > img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04) brightness(.92) }
.duo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(20,86,75,.62), rgba(11,42,37,.35));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.duo--soft::after { background: linear-gradient(150deg, rgba(27,107,94,.4), rgba(14,58,51,.2)) }
.duo--color > img { filter: none }
.duo--color::after { display: none }

/* ===== CARD ===== */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dfe6e4 }

/* ===== REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none }
.reveal[data-d="1"] { transition-delay: .08s }
.reveal[data-d="2"] { transition-delay: .16s }
.reveal[data-d="3"] { transition-delay: .24s }
.reveal[data-d="4"] { transition-delay: .32s }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none } }

/* ===== TOPBAR ===== */
.topbar { background: var(--teal-950); color: rgba(255,255,255,.82); font-size: 13.5px }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 42px }
.topbar a { color: rgba(255,255,255,.82); transition: color .2s }
.topbar a:hover { color: var(--turq) }
.topbar__lema { display: flex; align-items: center; gap: 9px; font-style: italic; opacity: .9 }
.topbar__lema b { color: var(--turq); font-style: normal }
.topbar__right { display: flex; align-items: center; gap: 20px }
.topbar__social { display: flex; align-items: center; gap: 14px }
.topbar__social a { display: inline-flex }
.topbar__social svg { width: 16px; height: 16px }
@media (max-width: 780px) { .topbar__lema { display: none } }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 8px 30px -18px rgba(13,40,36,.3) }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px }
.header .brand, .header .brand__logo { flex-shrink: 0 }
.brand { display: flex; align-items: center; gap: 13px }
.brand__logo { height: 44px; width: auto; display: block }
.brand__txt { display: flex; flex-direction: column; line-height: 1; gap: 3px }
.brand__txt b { font-family: var(--display); font-weight: 900; font-size: 15px; letter-spacing: .02em; color: var(--ink) }
.brand__txt span { font-family: var(--display); font-weight: 600; font-size: 10.5px; letter-spacing: .26em; color: var(--teal-600) }

/* wp_nav_menu resets */
.nav { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap }
.nav ul { display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none }
.nav li { margin: 0; padding: 0; list-style: none }
.nav a, .nav li > a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 9px 13px;
  border-radius: 9px;
  transition: color .2s, background .2s;
  white-space: nowrap;
  display: inline-block;
}
.nav a:hover, .nav li > a:hover { color: var(--teal-700); background: var(--paper-2) }
.nav a.active, .nav li.current-menu-item > a, .nav li.current_page_item > a { color: var(--teal-700) }

.header__cta { display: flex; align-items: center; gap: 12px }
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.burger.open span:nth-child(2) { opacity: 0 }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

@media (max-width: 1080px) {
  .nav, .header__cta .btn { display: none }
  .burger { display: flex }
}

/* Drawer */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: #fff;
  z-index: 90;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  padding: 26px;
}
.drawer.open { transform: none }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px }
.drawer a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  display: block;
}
.drawer ul { list-style: none; margin: 0; padding: 0 }
.drawer li { margin: 0 }
.drawer a:hover { color: var(--teal-700) }
.drawer .btn { margin-top: 20px }
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(11,42,37,.5);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.scrim.open { opacity: 1; visibility: visible }
.x-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--ink);
}

/* ===== FOOTER ===== */
.footer { background: var(--teal-950); color: rgba(255,255,255,.74) }
.footer__logo { height: 54px; width: auto; filter: brightness(0) invert(1) }
.footer a { color: rgba(255,255,255,.74); transition: color .2s }
.footer a:hover { color: var(--turq) }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-block: 64px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__lema {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
  color: #fff;
  margin: 20px 0;
  max-width: 30ch;
}
.footer h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; font-family: var(--display); font-weight: 600; font-size: 14.5px }
.footer__links ul { display: flex; flex-direction: column; gap: 11px; list-style: none; margin: 0; padding: 0 }
.footer__links li { margin: 0 }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-block: 24px;
  font-size: 13px;
  flex-wrap: wrap;
}
.footer__pix {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(92,205,195,.12);
  border: 1px solid rgba(92,205,195,.3);
  color: var(--turq);
  padding: 9px 15px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
}
.footer__pix svg { width: 15px; height: 15px }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 34px } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr } }

/* ===== PAGE HERO (interior) ===== */
.phero { position: relative; color: #fff; padding-block: clamp(70px, 12vw, 130px); overflow: hidden }
.phero .duo { position: absolute; inset: 0; z-index: 0 }
.phero .duo::after { background: linear-gradient(150deg, rgba(20,86,75,.7), rgba(11,42,37,.55)) }
.phero__inner { position: relative; z-index: 2 }
.phero h1 { font-size: clamp(38px, 6.5vw, 76px); font-weight: 900; letter-spacing: -.035em }

/* ===== HERO (home) ===== */
.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 860px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--teal-950);
}
.hero__media { position: absolute; inset: 0; z-index: 0 }
.hero__media > .duo, .hero__slide > .duo { position: absolute; inset: 0 }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease) }
.hero__slide.is-active { opacity: 1 }
.hero__photocap {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  color: #fff;
  background: rgba(11,42,37,.5);
  backdrop-filter: blur(4px);
  padding: 7px 13px;
  border-radius: 999px;
}
.hero--duo .duo > img { filter: grayscale(1) contrast(1.04) brightness(.92) }
.hero--duo .duo::after {
  mix-blend-mode: normal;
  background: linear-gradient(180deg, rgba(11,42,37,.34) 0%, rgba(11,42,37,.25) 38%, rgba(11,42,37,.86) 100%),
              linear-gradient(110deg, rgba(14,58,51,.7), rgba(11,42,37,.1));
}
.hero--clara .duo > img { filter: saturate(1.03) }
.hero--clara .duo::after {
  mix-blend-mode: normal;
  background: linear-gradient(180deg, rgba(11,42,37,0) 22%, rgba(11,42,37,.5) 70%, rgba(11,42,37,.85) 100%);
}
.hero--minima .duo > img { filter: none }
.hero--minima .duo::after {
  mix-blend-mode: normal;
  background: linear-gradient(180deg, rgba(11,42,37,0) 40%, rgba(11,42,37,.26) 74%, rgba(11,42,37,.62) 100%);
}
.hero--clara .hero__inner h1, .hero--minima .hero__inner h1,
.hero--clara .hero__sub, .hero--minima .hero__sub { text-shadow: 0 2px 22px rgba(11,42,37,.55) }

.hero__inner { position: relative; z-index: 3; color: #fff; padding-block: clamp(48px, 8vw, 96px); width: 100% }
.hero h1 { font-size: clamp(46px, 8.4vw, 104px); font-weight: 900; letter-spacing: -.04em; line-height: .96; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.25) }
.hero h1 em { font-style: normal; color: var(--turq) }
.hero__sub { font-size: clamp(18px, 2.2vw, 23px); color: rgba(255,255,255,.9); max-width: 48ch; margin-top: 24px; line-height: 1.55 }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px }
.hero__values { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 46px }
.hero__values > span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.28);
  padding: 9px 16px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero__values > span > b { color: var(--turq); margin-right: 7px }
.hero__dots { display: flex; gap: 9px; margin-top: 36px }
.hero__dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: .25s var(--ease);
}
.hero__dots button:hover { background: rgba(255,255,255,.72) }
.hero__dots button.is-active { background: var(--turq); width: 30px }

/* ===== LEMA ===== */
.lema { background: var(--teal-700); color: #fff }
.lema__inner {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 84px);
}
.lema__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.lema__cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
  color: #fff;
  background: rgba(11,42,37,.5);
  backdrop-filter: blur(4px);
  padding: 8px 14px;
  border-radius: 999px;
}
.lema p { font-family: var(--display); font-weight: 800; font-size: clamp(24px, 3.4vw, 44px); line-height: 1.16; letter-spacing: -.02em; margin: 0; text-wrap: balance }
.lema .turq { color: var(--turq); white-space: nowrap }
.lema cite { display: block; margin-top: 22px; font-family: var(--body); font-style: normal; font-weight: 600; font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--turq-300) }
@media (max-width: 880px) {
  .lema__inner { grid-template-columns: 1fr; gap: 30px }
  .lema__photo { aspect-ratio: 16/10 }
}

/* ===== PROGRAMAÇÃO ===== */
.prog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px }
.day {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.day:hover { transform: translateY(-4px); box-shadow: var(--shadow) }
.day.is-today { border-color: var(--teal-600); box-shadow: 0 0 0 2px var(--teal-600) inset, var(--shadow) }
.day__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--turq-100);
  padding: 5px 11px;
  border-radius: 999px;
  opacity: 0;
  transition: .3s;
}
.day.is-today .day__tag { opacity: 1 }
.day h3 { font-size: 26px; font-weight: 900; color: var(--ink) }
.day__day { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 8px }
.day__list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px }
.day__row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding-bottom: 14px; border-bottom: 1px dashed var(--line) }
.day__row:last-child { border-bottom: 0; padding-bottom: 0 }
.day__row b { font-family: var(--body); font-weight: 600; font-size: 15.5px; color: var(--ink-soft) }
.day__row time { font-family: var(--display); font-weight: 800; font-size: 18px; color: var(--teal-700); white-space: nowrap }

/* ===== SOBRE + VALORES ===== */
.about { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 76px); align-items: center }
.about__img { border-radius: var(--radius-lg); aspect-ratio: 4/5; box-shadow: var(--shadow-lg) }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px }
.value { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px }
.value__ico { width: 42px; height: 42px; border-radius: 11px; background: var(--teal-700); display: grid; place-items: center; margin-bottom: 14px }
.value__ico svg { color: #fff; width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round }
.value h4 { font-size: 16px; font-weight: 800; letter-spacing: .04em; color: var(--ink); text-transform: uppercase }
.value p { font-size: 14.5px; color: var(--slate); margin-top: 6px }

/* ===== CAROUSEL ===== */
.carousel { position: relative; overflow: hidden }
.carousel__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s var(--ease); pointer-events: none }
.carousel__slide.is-active { opacity: 1; pointer-events: auto }
.carousel__slide > .duo { position: absolute; inset: 0 }
.carousel__cap {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  color: #fff;
  background: rgba(11,42,37,.55);
  backdrop-filter: blur(4px);
  padding: 8px 14px;
  border-radius: 999px;
}
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background .2s, transform .2s;
}
.carousel__nav:hover { background: #fff; transform: translateY(-50%) scale(1.06) }
.carousel__nav.prev { left: 14px }
.carousel__nav.next { right: 14px }
.carousel__nav svg { color: var(--teal-700); width: 22px; height: 22px; stroke: var(--teal-700); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round }
.carousel__nav.prev svg { transform: rotate(90deg) }
.carousel__nav.next svg { transform: rotate(-90deg) }
.carousel__dots { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 4; display: flex; gap: 8px }
.carousel__dots button { width: 9px; height: 9px; border-radius: 999px; border: 0; padding: 0; background: rgba(255,255,255,.55); cursor: pointer; transition: .25s var(--ease) }
.carousel__dots button.is-active { background: #fff; width: 26px }
@media (prefers-reduced-motion: reduce) { .carousel__slide { transition: none } }

/* ===== EVENTOS teaser ===== */
.ev-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap }
.events { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 42px }
.ev { display: flex; flex-direction: column }
.ev__img { aspect-ratio: 16/10; border-radius: 14px 14px 0 0; overflow: hidden; position: relative; background: var(--teal-900) }
.ev__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease) }
.ev:hover .ev__img img { transform: scale(1.05) }
.ev__date { position: absolute; top: 12px; left: 12px; background: #fff; border-radius: 10px; padding: 7px 11px; text-align: center; line-height: 1; box-shadow: var(--shadow-sm); z-index: 3 }
.ev__date b { display: block; font-family: var(--display); font-weight: 900; font-size: 20px; color: var(--teal-700) }
.ev__date span { font-family: var(--display); font-weight: 700; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--slate) }
.ev__body { background: #fff; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 14px 14px; padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px }
.ev__body h4 { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -.01em }
.ev__time { font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--teal-600); display: flex; align-items: center; gap: 7px }
.ev__time svg { color: var(--teal-600); width: 14px; height: 14px; stroke: var(--teal-600); fill: none; stroke-width: 1.8 }

/* ===== ASSISTA ===== */
.watch { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 68px); align-items: center }
.watch__player { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-lg); background: var(--teal-900) }
.watch__player .duo { position: absolute; inset: 0 }
.watch__live { position: absolute; top: 16px; left: 16px; z-index: 3; display: flex; align-items: center; gap: 8px; background: #e23b3b; color: #fff; font-family: var(--display); font-weight: 800; font-size: 12px; letter-spacing: .1em; padding: 7px 13px; border-radius: 999px }
.watch__live i { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.4s infinite }
.watch__live-badge { display: inline-flex; align-items: center; gap: 8px; background: #e23b3b; color: #fff; font-family: var(--display); font-weight: 800; font-size: 12px; letter-spacing: .1em; padding: 7px 13px; border-radius: 999px; margin-top: 14px; text-decoration: none }
.watch__live-badge i { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.4s infinite; flex-shrink: 0 }
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: .3 } }
.play { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center }
.play span { width: 78px; height: 78px; border-radius: 50%; background: #fff; display: grid; place-items: center; transition: transform .3s, background .3s; box-shadow: 0 8px 40px rgba(0,0,0,.55), 0 0 0 5px rgba(255,255,255,.2) }
.play span svg { width: 30px; height: 30px; color: var(--teal-900); margin-left: 4px }
.watch__player:hover .play span { transform: scale(1.08); background: #fff }
.watch__feed { min-width: 0 }
.watch__embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--teal-900) }
.watch__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0 }

/* ===== TRANSPARÊNCIA teaser ===== */
.tr { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px }
.proj { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column }
.proj__img { aspect-ratio: 16/10; position: relative; overflow: hidden }
.proj__img .duo { position: absolute; inset: 0 }
.proj__status {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--teal-700);
  z-index: 3;
}
.proj__status.done    { background: var(--teal-700); color: #fff }
.proj__status.planned { background: var(--paper); color: var(--slate); border: 1px solid var(--line) }
.proj__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 14px; flex: 1 }
.proj__body h4 { font-size: 18px; font-weight: 800; color: var(--ink) }
.proj__body p { font-size: 14px; color: var(--slate) }
.bar { height: 9px; border-radius: 999px; background: var(--paper-2); overflow: hidden; margin-top: auto }
.bar__fill { height: 100%; background: linear-gradient(90deg, var(--teal-600), var(--turq)); border-radius: 999px; transition: width 1.1s var(--ease) }
.proj__pct { display: flex; justify-content: space-between; font-family: var(--display); font-weight: 700; font-size: 12.5px; color: var(--ink-soft) }
.proj__pct .tk { color: var(--teal-700) }

/* ===== CONTRIBUA band ===== */
.give { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(34px, 5vw, 64px); align-items: center }
.give__qr { background: #fff; border-radius: var(--radius-lg); padding: 26px; display: flex; gap: 22px; align-items: center; box-shadow: var(--shadow-lg) }
.give__qr img { width: 130px; height: 130px; border-radius: 12px; flex: 0 0 auto }
.give__pix b { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-600) }
.give__pix .key { font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--ink); margin: 6px 0 4px; word-break: break-all }
.give__pix small { color: var(--slate); font-size: 13.5px }

/* ===== VISITE ===== */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 56px); align-items: stretch }
.visit__map { border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; border: 1px solid var(--line) }
.visit__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.3) contrast(1.05) }
.info-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line) }
.info-row:last-child { border-bottom: 0 }
.info-row__ico { width: 44px; height: 44px; border-radius: 12px; background: var(--turq-100); display: grid; place-items: center; flex: 0 0 auto }
.info-row__ico svg { color: var(--teal-700); width: 22px; height: 22px; stroke: var(--teal-700); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round }
.info-row b { font-family: var(--display); font-weight: 800; font-size: 16px; color: var(--ink); display: block; margin-bottom: 3px }
.info-row p, .info-row a { color: var(--slate); font-size: 15px }
.info-row a:hover { color: var(--teal-700) }

/* ===== CONTRIBUA page ===== */
.give-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 5vw, 64px); align-items: start }
.scripture { border-left: 3px solid var(--turq); padding: 6px 0 6px 24px; margin: 28px 0 }
.scripture p { font-family: var(--display); font-weight: 700; font-size: clamp(19px, 2.4vw, 24px); line-height: 1.4; color: var(--ink); letter-spacing: -.01em }
.scripture cite { display: block; margin-top: 12px; font-style: normal; font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-600); font-family: var(--display) }
.pix-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden }
.pix-card__head { background: var(--teal-700); color: #fff; padding: 22px 26px; display: flex; align-items: center; gap: 13px }
.pix-card__head svg { color: #fff; width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round }
.pix-card__head b { font-family: var(--display); font-weight: 800; font-size: 19px }
.pix-card__head span { font-family: var(--display); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--turq-300); display: block }
.pix-card__body { padding: 28px 26px 30px; text-align: center }
.pix-card__qr { width: 208px; height: 208px; border-radius: 16px; margin: 0 auto 22px; border: 1px solid var(--line); padding: 10px; background: #fff }
.pix-key { display: flex; align-items: center; gap: 10px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 5px 5px 5px 18px; max-width: 340px; margin: 0 auto }
.pix-key code { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--ink); flex: 1; text-align: left; word-break: break-all }
.copy-btn { background: var(--teal-700); color: #fff; border: 0; border-radius: 9px; padding: 11px 16px; font-family: var(--display); font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; transition: background .2s; cursor: pointer }
.copy-btn:hover { background: var(--teal-800) }
.copy-btn.ok { background: var(--teal-600) }
.copy-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2 }
.pix-card__note { margin-top: 18px; font-size: 13.5px; color: var(--slate) }
.ways { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 46px }
.way { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; transition: .3s var(--ease) }
.way:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dfe6e4 }
.way__ico { width: 48px; height: 48px; border-radius: 13px; background: var(--turq-100); display: grid; place-items: center; margin-bottom: 18px }
.way__ico svg { color: var(--teal-700); width: 24px; height: 24px; stroke: var(--teal-700); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round }
.way h3 { font-size: 19px; font-weight: 800; color: var(--ink); margin-bottom: 8px }
.way p { font-size: 14.5px; color: var(--slate); line-height: 1.6 }
.way b { color: var(--ink-soft); font-weight: 700 }
.faq { max-width: 780px; margin: 0 auto }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0 }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 4px; font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink) }
.faq summary::-webkit-details-marker { display: none }
.faq summary .chev { width: 24px; height: 24px; flex: 0 0 auto; transition: transform .3s; stroke: var(--teal-600); fill: none; stroke-width: 2 }
.faq details[open] summary .chev { transform: rotate(180deg) }
.faq p { padding: 0 4px 22px; color: var(--slate); font-size: 15.5px; line-height: 1.65; max-width: 64ch }

/* ===== PRIMEIRA VEZ ===== */
.expect { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px }
.xcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; transition: .3s var(--ease) }
.xcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dfe6e4 }
.xcard__ico { width: 50px; height: 50px; border-radius: 14px; background: var(--teal-700); display: grid; place-items: center; margin-bottom: 18px }
.xcard__ico svg { color: #fff; width: 25px; height: 25px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round }
.xcard h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 8px }
.xcard p { font-size: 14.5px; color: var(--slate); line-height: 1.62 }
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: center }
.steplist { display: flex; flex-direction: column; gap: 8px; margin-top: 10px }
.step { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.14) }
.step:last-child { border-bottom: 0 }
.step__n { font-family: var(--display); font-weight: 900; font-size: 22px; color: var(--teal-900); background: var(--turq); width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; flex: 0 0 auto }
.step b { display: block; font-family: var(--display); font-weight: 800; font-size: 18px; color: #fff; margin-bottom: 5px }
.step p { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.55 }
.steps__img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg) }
.cta-band { background: var(--teal-700); color: #fff; border-radius: var(--radius-lg); padding: clamp(38px, 6vw, 68px); text-align: center }
.cta-band h2 { color: #fff }

/* ===== SOBRE NÓS ===== */
.significado { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(32px, 5vw, 64px); align-items: center }
.significado__img { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg) }
.sig-body { margin-top: 18px }
.sig-body > p:first-child { font-size: clamp(17px, 1.9vw, 20px); line-height: 1.62; color: var(--ink); font-weight: 500 }
.sig-body > p + p { margin-top: 16px; font-size: 16px; color: var(--ink-soft); line-height: 1.72 }
.sig-body b { font-weight: 700 }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px }
.about-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px }
.about-card__ico { width: 48px; height: 48px; border-radius: 13px; background: var(--turq-100); display: grid; place-items: center; margin-bottom: 16px }
.about-card__ico svg { color: var(--teal-700); width: 24px; height: 24px; stroke: var(--teal-700); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round }
.about-card h4 { font-size: 19px; font-weight: 800; color: var(--ink); margin-bottom: 9px }
.about-card p { font-size: 14.5px; color: var(--slate); line-height: 1.62 }
.about-card em { color: var(--teal-700); font-style: italic }
.leaders { display: grid; grid-template-columns: .62fr .62fr 1.1fr; gap: clamp(18px, 3vw, 32px); align-items: center }
.leaders__photos { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg) }
.leaders__text .lead { color: var(--ink-soft) }
.leaders__photos .duo,
.min__img .duo,
.significado__img .duo,
.week__img .duo { position: absolute; inset: 0; }
.mins { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 44px }
.min { text-align: center }
.min__img { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: .3s var(--ease) }
.min:hover .min__img { transform: translateY(-4px); box-shadow: var(--shadow) }
.min h4 { font-size: 17px; font-weight: 800; color: var(--ink); margin-top: 16px }
.min p { font-size: 13px; color: var(--slate); margin-top: 3px; font-family: var(--display); font-weight: 600; letter-spacing: .02em }
.contact { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 5vw, 64px); align-items: start }
.contact__info { margin-top: 30px }
.contact .info-row { border-bottom-color: rgba(255,255,255,.14) }
.contact .info-row b { color: #fff }
.contact .info-row p, .contact .info-row a { color: rgba(255,255,255,.78) }
.contact .info-row a:hover { color: var(--turq) }
.contact .info-row__ico { background: rgba(92,205,195,.16) }
.contact .info-row__ico svg { color: var(--turq); stroke: var(--turq) }
.contact__card { background: #fff; border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 36px); box-shadow: var(--shadow-lg) }
.contact__card .wpcf7-form { display: flex; flex-direction: column; gap: 16px }
.cfield { display: flex; flex-direction: column; gap: 7px; width: 100% }
.cfield span { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-700) }
.cfield .wpcf7-form-control-wrap { display: block; width: 100% }
.cfield input, .cfield textarea { display: block; width: 100%; box-sizing: border-box; font-family: var(--body); font-size: 15px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; outline: none; transition: border-color .2s, box-shadow .2s; resize: vertical }
.cfield input:focus, .cfield textarea:focus { border-color: var(--teal-600); box-shadow: 0 0 0 3px var(--turq-100) }
.contact__card .wpcf7-submit {
  align-self: flex-start;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  background: var(--teal-700);
  color: #fff;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.6px solid var(--teal-700);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.contact__card .wpcf7-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow) }
.contact__card .wpcf7-submit[disabled] { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none }
.contact__card .wpcf7-spinner { margin: 0 0 0 4px }
.contact__card .wpcf7-response-output { display: none !important }
.contact__card .wpcf7-not-valid-tip { font-size: 12px; font-weight: 600; color: #b02020; margin-top: 4px }
.contact__info--light .info-row { border-bottom-color: var(--line) }
.contact__info--light .info-row b { color: var(--ink) }
.contact__info--light .info-row p, .contact__info--light .info-row a { color: var(--slate) }
.contact__info--light .info-row a:hover { color: var(--teal-700) }
.contact__info--light .info-row__ico { background: var(--turq-100) }
.contact__info--light .info-row__ico svg { color: var(--teal-700); stroke: var(--teal-700) }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 380px; box-shadow: var(--shadow-sm) }
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.3) contrast(1.05) }

/* ===== TRANSPARÊNCIA page ===== */
.alloc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px }
.reports { display: flex; flex-direction: column; gap: 12px }
.report { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; text-decoration: none; transition: .25s var(--ease) }
.report:hover { border-color: #dfe6e4; box-shadow: var(--shadow-sm); transform: translateY(-2px) }
.report__ico { width: 42px; height: 42px; border-radius: 11px; background: var(--turq-100); display: grid; place-items: center; flex: 0 0 auto }
.report__ico svg { color: var(--teal-700); width: 22px; height: 22px; stroke: var(--teal-700); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round }
.report__txt { flex: 1; min-width: 0 }
.report__txt b { display: block; font-family: var(--display); font-weight: 800; font-size: 15.5px; color: var(--ink) }
.report__txt span { font-family: var(--display); font-weight: 600; font-size: 12px; letter-spacing: .04em; color: var(--slate) }
.report__dl { width: 36px; height: 36px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; flex: 0 0 auto; transition: .25s var(--ease) }
.report__dl svg { color: var(--teal-700); width: 18px; height: 18px; stroke: var(--teal-700); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transform: rotate(90deg) }
.report:hover .report__dl { background: var(--teal-700) }
.report:hover .report__dl svg { color: #fff; stroke: #fff }

/* ===== TRANSPARÊNCIA single ===== */
.tsingle__tags { display: flex; gap: 10px; flex-wrap: wrap; align-items: center }
.tsingle__top { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px, 5vw, 64px); align-items: center }
.tsingle__progress { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px }
.tsingle__stat { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px }
.tsingle__stat b { font-family: var(--display); font-weight: 900; font-size: 42px; color: var(--teal-700); line-height: 1 }
.tsingle__stat span { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-600) }
.tsingle__nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px }
.tsingle__nums span { font-family: var(--display); font-weight: 700; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); display: block; margin-bottom: 3px }
.tsingle__nums b { font-family: var(--display); font-weight: 800; font-size: 16px; color: var(--ink) }
.tsingle__note { margin-top: 16px; font-size: 12px; color: var(--gray) }
.tsingle__count { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--teal-600) }
.tsingle__count svg { color: var(--teal-600); stroke: var(--teal-600); fill: none; stroke-width: 1.8 }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 14px }
.gallery__item { position: relative; border: 0; padding: 0; cursor: pointer; border-radius: var(--radius); overflow: hidden; background: var(--teal-900); box-shadow: var(--shadow-sm) }
.gallery__item--lg { grid-column: span 2; grid-row: span 2 }
.gallery__item .duo > img { transition: transform .5s var(--ease) }
.gallery__item:hover .duo > img { transform: scale(1.06) }
.gallery__cap { position: absolute; left: 12px; bottom: 12px; z-index: 3; font-family: var(--display); font-weight: 700; font-size: 12px; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.6); text-align: left; max-width: 80% }
.gallery__zoom { position: absolute; top: 10px; right: 10px; z-index: 3; width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,.92); display: grid; place-items: center; opacity: 0; transform: translateY(-4px); transition: .25s var(--ease) }
.gallery__zoom svg { color: var(--teal-700); stroke: var(--teal-700); fill: none; stroke-width: 1.8 }
.gallery__item:hover .gallery__zoom { opacity: 1; transform: none }
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(7,26,23,.93); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; gap: 14px; padding: 24px }
.lb__fig { position: relative; width: min(86vw, 1000px); aspect-ratio: 16/10; margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg) }
.lb__fig figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 16px 20px; background: linear-gradient(transparent, rgba(7,26,23,.8)); color: #fff; font-family: var(--display); font-weight: 600; font-size: 14px }
.lb__x { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 20px; cursor: pointer; transition: background .2s }
.lb__x:hover { background: rgba(255,255,255,.28) }
.lb__nav { width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); display: grid; place-items: center; cursor: pointer; flex: 0 0 auto; transition: background .2s }
.lb__nav:hover { background: rgba(255,255,255,.28) }
.lb__nav svg { stroke: #fff; fill: none; stroke-width: 2.2 }
.lb__nav.prev svg { transform: rotate(90deg) }
.lb__nav.next svg { transform: rotate(-90deg) }
.timeline { list-style: none; margin: 0; padding: 0; position: relative }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line) }
.timeline__item { position: relative; padding: 0 0 26px 36px }
.timeline__item:last-child { padding-bottom: 0 }
.timeline__dot { position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--teal-700); border: 3px solid var(--paper); box-shadow: 0 0 0 2px var(--teal-700) }
.timeline__date { font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-600) }
.timeline__body h4 { font-size: 18px; font-weight: 800; color: var(--ink); margin: 4px 0 5px }
.timeline__body p { font-size: 14.5px; color: var(--slate); line-height: 1.6; max-width: 62ch }
.tsingle__bottom { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px, 5vw, 60px); align-items: start }
.tsingle__cta { background: linear-gradient(135deg, #0e3a33, #14564b); color: #fff; border-radius: var(--radius-lg); padding: 32px }
.tsingle__cta-ico { width: 54px; height: 54px; border-radius: 14px; background: rgba(92,205,195,.18); display: grid; place-items: center; margin-bottom: 16px }
.tsingle__cta-ico svg { color: var(--turq); stroke: var(--turq); fill: none; stroke-width: 1.8 }
.tsingle__cta h3 { font-size: 23px; font-weight: 800; color: #fff; margin-bottom: 8px }
.tsingle__cta p { color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.6; margin-bottom: 20px }
.esingle__back { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.85); font-family: var(--display); font-weight: 600; font-size: 13.5px; margin-bottom: 18px; text-decoration: none }
.esingle__back svg { transform: rotate(90deg); fill: none; stroke-width: 2 }
.esingle__back:hover { color: #fff }
.esingle__badge { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .04em; color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); padding: 7px 13px; border-radius: 999px; backdrop-filter: blur(4px) }
.esingle__badge svg { fill: none; stroke-width: 1.8 }
.esingle__badge.ok { background: rgba(92,205,195,.22); border-color: rgba(92,205,195,.55); color: #eafffb }

/* ===== ENCONTROS ===== */
.enc { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px }
.enc-card { display: flex; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; transition: .3s var(--ease) }
.enc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dfe6e4 }
.enc-card__ico { width: 60px; height: 60px; border-radius: 15px; background: var(--teal-700); display: grid; place-items: center; flex: 0 0 auto }
.enc-card__ico svg { width: 30px; height: 30px; color: #fff; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round }
.enc-card__when { font-family: var(--display); font-weight: 700; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-600) }
.enc-card__body h3 { font-size: 21px; font-weight: 800; color: var(--ink); margin: 5px 0 7px; letter-spacing: -.01em }
.enc-card__body p { font-size: 14.5px; color: var(--slate); line-height: 1.58 }
.enc-card__yt { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--teal-700) }
.enc-card__yt svg { fill: var(--teal-700) }
.enc-card__yt:hover { color: var(--teal-800) }
.week { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(34px, 5vw, 64px); align-items: center }
.week__img { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg) }
.vals4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 42px }

/* ===== ESTUDOS ===== */
.est-meta { display: flex; flex-wrap: wrap; gap: 9px 20px; font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--slate) }
.est-meta span { display: inline-flex; align-items: center; gap: 7px }
.est-meta svg { color: var(--teal-600); stroke: var(--teal-600); fill: none; stroke-width: 1.8 }
.est-meta--light { color: rgba(255,255,255,.86) }
.est-meta--light svg { color: var(--turq); stroke: var(--turq) }
.studies { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px }
.study { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: .3s var(--ease) }
.study:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dfe6e4 }
.study__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--teal-900) }
.study__img .duo { position: absolute; inset: 0; transition: transform .5s var(--ease) }
.study:hover .study__img .duo { transform: scale(1.05) }
.study__tag { position: absolute; left: 12px; top: 12px; z-index: 3; font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: rgba(11,42,37,.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-radius: 999px; padding: 6px 12px }
.study__tag.is-alt { background: var(--turq); color: var(--teal-950) }
.study__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1 }
.study__ref { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 700; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-600) }
.study__ref svg { stroke: var(--teal-600); fill: none; stroke-width: 1.8 }
.study__body h4 { font-family: var(--display); font-weight: 800; font-size: 20px; line-height: 1.2; color: var(--ink); letter-spacing: -.015em; text-wrap: balance }
.study__excerpt { font-size: 14.5px; line-height: 1.6; color: var(--slate); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden }
.study__meta { margin-top: auto; display: flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 600; font-size: 13px; color: var(--slate); flex-wrap: wrap }
.study__dot { color: var(--line); font-weight: 900 }
.study--feature { display: grid; grid-template-columns: 1.08fr .92fr; gap: 0; overflow: hidden; align-items: stretch }
.study--feature .study__img { aspect-ratio: auto; min-height: 340px }
.study--feature .study__body { padding: clamp(28px, 3.4vw, 44px); gap: 12px; justify-content: center }
.study--feature .study__body h3 { font-family: var(--display); font-weight: 900; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.04; letter-spacing: -.03em; color: var(--ink); text-wrap: balance }
.study__sub { font-family: var(--display); font-weight: 700; font-size: clamp(16px, 1.8vw, 19px); color: var(--teal-700); letter-spacing: -.01em }
.study--feature .study__excerpt { -webkit-line-clamp: 4; font-size: 16px }
.study__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; font-family: var(--display); font-weight: 800; font-size: 14.5px; letter-spacing: .02em; color: var(--teal-700) }
.study__more svg { stroke: var(--teal-700); fill: none; stroke-width: 2.2; transition: transform .3s var(--ease) }
.study--feature:hover .study__more svg { transform: translateX(4px) }

/* Estudos single */
.art-hero { background: linear-gradient(135deg, #0e3a33, #14564b); color: #fff; padding-block: clamp(30px, 4.5vw, 52px) }
.art-hero h1 { font-size: clamp(34px, 5.4vw, 64px); font-weight: 900; letter-spacing: -.04em; line-height: 1.0; max-width: 18ch; margin-top: 16px }
.art-hero__sub { font-family: var(--display); font-weight: 700; font-size: clamp(18px, 2.2vw, 24px); color: var(--turq-300); letter-spacing: -.01em; margin-top: 12px }
.art-hero__ref { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 7px 14px }
.art-hero__ref svg { stroke: var(--turq); fill: none; stroke-width: 1.8 }
.crumbs { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin: 16px 0 20px; font-family: var(--display); font-weight: 600; font-size: 13px; color: rgba(255,255,255,.6) }
.crumbs a { color: rgba(255,255,255,.78) }
.crumbs a:hover { color: #fff }
.crumbs b { color: #fff; font-weight: 700 }
.crumbs span { color: rgba(255,255,255,.4) }
.art-cover { display: block; border-radius: var(--radius-lg); aspect-ratio: 21/9; box-shadow: var(--shadow-lg); margin-top: clamp(-40px,-3vw,-28px); position: relative; z-index: 2 }
.art-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(34px, 5vw, 64px); align-items: start; margin-top: clamp(34px, 4vw, 52px) }
.prose { max-width: 68ch; font-size: 17px; line-height: 1.74; color: var(--ink-soft) }
.prose > * + * { margin-top: 18px }
.prose__lead { font-size: clamp(19px, 2.1vw, 22px); line-height: 1.6; color: var(--ink); font-weight: 500 }
.prose__h { font-family: var(--display); font-weight: 800; font-size: clamp(21px, 2.4vw, 27px); line-height: 1.2; letter-spacing: -.02em; color: var(--ink); margin-top: 36px }
.prose ul, .prose ol { padding-left: 24px; display: flex; flex-direction: column; gap: 9px }
.prose li { padding-left: 4px }
.prose li::marker { color: var(--teal-600); font-weight: 700 }
.prose__ref { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-700); background: var(--turq-100); border-radius: 8px; padding: 8px 13px; align-self: flex-start }
.prose__ref svg { stroke: var(--teal-700); fill: none; stroke-width: 1.9 }
.prose__quote { border-left: 3px solid var(--turq); padding: 6px 0 6px 26px; margin: 30px 0 }
.prose__quote p { font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2.5vw, 26px); line-height: 1.38; color: var(--ink); letter-spacing: -.015em }
.prose__quote cite { display: block; margin-top: 12px; font-style: normal; font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-600); font-family: var(--display) }
.author-card { display: flex; align-items: center; gap: 18px; margin-top: 40px; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg) }
.author-card__ava { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; background: var(--teal-700); display: grid; place-items: center }
.author-card__ava svg { color: #fff; stroke: #fff; fill: none; stroke-width: 1.8 }
.author-card__role { font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-600) }
.author-card b { display: block; font-family: var(--display); font-weight: 800; font-size: 18px; color: var(--ink); margin-top: 2px }
.author-card p { font-size: 14px; color: var(--slate); margin-top: 4px; line-height: 1.5 }
.author-card__share { flex: 0 0 auto; margin-left: auto; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; background: #fff; transition: .25s var(--ease) }
.author-card__share:hover { border-color: var(--teal-600); background: var(--turq-100) }
.author-card__share svg { stroke: var(--teal-700); fill: none; stroke-width: 1.9 }
a.author-card { transition: .25s var(--ease) }
a.author-card:hover { border-color: #dfe6e4; box-shadow: var(--shadow); transform: translateY(-2px) }
a.author-card:hover .author-card__share { border-color: var(--teal-600); background: var(--turq-100) }
a.author-card:hover .author-card__share svg { transform: translateX(3px) }
.art-hero__author, .art-side__link { color: inherit; border-bottom: 1px solid transparent; transition: border-color .2s }
.art-hero__author:hover { color: #fff; border-bottom-color: var(--turq) }
.art-side__link:hover { color: var(--teal-700); border-bottom-color: var(--teal-600) }
.author-hero { background: linear-gradient(135deg, #0e3a33, #14564b); color: #fff; padding-block: clamp(30px, 4.5vw, 52px) }
.author-hero__inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(26px, 4vw, 52px); align-items: center; margin-top: clamp(20px, 3vw, 32px) }
.author-hero__ava { position: relative; flex: 0 0 auto; width: clamp(120px, 16vw, 180px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--teal-900); box-shadow: 0 0 0 5px rgba(255,255,255,.1), var(--shadow-lg) }
.author-hero__eyebrow { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--turq) }
.author-hero h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 900; letter-spacing: -.035em; line-height: 1.02; margin-top: 8px }
.author-hero__role { font-family: var(--display); font-weight: 700; font-size: clamp(15px, 1.7vw, 18px); color: var(--turq-300); margin-top: 8px }
.author-hero__bio { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.86); max-width: 64ch; margin-top: 16px }
.author-hero__stats { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 22px; font-family: var(--display); font-weight: 600; font-size: 14.5px; color: rgba(255,255,255,.8) }
.author-hero__stats b { color: var(--turq); font-weight: 800 }
.art-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px }
.art-side__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px }
.art-side__h { font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px }
.art-side__row { display: flex; align-items: flex-start; gap: 13px; padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px dashed var(--line) }
.art-side__row:nth-last-child(2) { border-bottom: 0; padding-bottom: 6px; margin-bottom: 6px }
.art-side__ico { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 10px; background: var(--turq-100); display: grid; place-items: center }
.art-side__ico svg { color: var(--teal-700); stroke: var(--teal-700); fill: none; stroke-width: 1.8 }
.art-side__row > div span { display: block; font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 3px }
.art-side__row > div b { font-family: var(--body); font-weight: 700; font-size: 15px; color: var(--ink) }
.latest { display: flex; flex-direction: column; gap: 14px }
.latest__item { display: flex; align-items: center; gap: 13px }
.latest__thumb { position: relative; flex: 0 0 auto; width: 64px; height: 52px; border-radius: 10px; overflow: hidden; background: var(--teal-900) }
.latest__txt b { display: block; font-family: var(--display); font-weight: 700; font-size: 14.5px; line-height: 1.25; color: var(--ink); transition: color .2s }
.latest__item:hover .latest__txt b { color: var(--teal-700) }
.latest__txt span { font-family: var(--display); font-weight: 600; font-size: 12px; color: var(--slate) }
.est-points-h { font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--ink); margin: 40px 0 16px }
.est-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px }
.est-points li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--ink-soft) }
.est-points__ico { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; background: var(--turq-100); display: grid; place-items: center; margin-top: 1px }
.est-points__ico svg { color: var(--teal-700); stroke: var(--teal-700); fill: none; stroke-width: 2.2 }

/* ===== FORM FEEDBACK MODAL ===== */
.icb-modal { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px }
.icb-modal.is-open { display: flex }
.icb-modal__overlay { position: absolute; inset: 0; background: rgba(15,23,22,.55); backdrop-filter: blur(2px) }
.icb-modal__box { position: relative; background: #fff; border-radius: var(--radius-lg); padding: 40px 32px 32px; max-width: 380px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); animation: icbModalIn .25s var(--ease) }
@keyframes icbModalIn { from { opacity: 0; transform: translateY(12px) scale(.97) } to { opacity: 1; transform: none } }
.icb-modal__close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; border: 0; background: var(--paper); color: var(--slate); font-size: 20px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s }
.icb-modal__close:hover { background: var(--line) }
.icb-modal__icon { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 800; font-size: 24px }
.icb-modal--ok .icb-modal__icon { background: var(--turq-100); color: var(--teal-700) }
.icb-modal--err .icb-modal__icon { background: #fff3f3; color: #b02020 }
.icb-modal__text { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--ink); line-height: 1.5; margin: 0 }

/* ===== 404 ===== */
.page-404 { text-align: center; padding-block: clamp(80px, 14vw, 160px) }
.page-404 h1 { font-size: clamp(80px, 16vw, 180px); font-weight: 900; color: var(--teal-700); line-height: 1; letter-spacing: -.05em }
.page-404 p { font-size: 20px; color: var(--slate); margin: 20px auto 36px; max-width: 44ch }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .events { grid-template-columns: 1fr 1fr }
  .mins   { grid-template-columns: repeat(3, 1fr) }
  .enc    { grid-template-columns: 1fr }
  .vals4  { grid-template-columns: 1fr 1fr }
}
@media (max-width: 880px) {
  .prog, .tr, .ways, .expect, .alloc { grid-template-columns: 1fr }
  .about, .watch, .give, .visit, .give-grid, .steps, .contact, .significado, .week { grid-template-columns: 1fr }
  .about__img, .steps__img, .significado__img, .week__img { aspect-ratio: 16/11; order: -1 }
  .agenda__day { grid-template-columns: 1fr; gap: 18px }
  .agenda__date { display: flex; align-items: baseline; gap: 10px; text-align: left; border-right: 0; border-bottom: 1px dashed var(--line); padding: 0 0 14px }
  .agenda__date b { font-size: 32px }
  .agenda__date em { margin-top: 0 }
  .give__qr { flex-direction: column; text-align: center }
  .about-cols { grid-template-columns: 1fr }
  .leaders { grid-template-columns: 1fr 1fr }
  .leaders__text { grid-column: 1 / -1 }
  .tsingle__top, .tsingle__bottom, .art-grid { grid-template-columns: 1fr }
  .art-side { position: static }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px }
  .study--feature { grid-template-columns: 1fr }
  .study--feature .study__img { min-height: 240px }
  .art-cover { aspect-ratio: 16/9; margin-top: -24px }
  .studies { grid-template-columns: 1fr 1fr }
  .author-hero__inner { grid-template-columns: 1fr; text-align: center; justify-items: center }
  .author-hero__bio { margin-left: auto; margin-right: auto }
}
@media (max-width: 680px) {
  .author-hero__inner { grid-template-columns: 1fr; text-align: center; justify-items: center }
}
@media (max-width: 560px) {
  .events, .values, .mins, .vals4 { grid-template-columns: 1fr 1fr }
  .gallery__item--lg { grid-column: span 2 }
  .studies { grid-template-columns: 1fr }
  .tsingle__nums { grid-template-columns: 1fr }
}
