:root {
  --night: #070812;
  --night-soft: #10111f;
  --paper: #f5f3ef;
  --white: #fff;
  --muted: #7b7b87;
  --red: #ff253d;
  --gold: #ffc517;
  --blue: #159ed6;
  --purple: #a454c5;
  --border: #e3e0d9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--night);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
}
[hidden] {
  display: none !important;
}
.site-header {
  height: 84px;
  padding: 0 clamp(22px, 6vw, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--night);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  position: relative;
  z-index: 50;
}
.brand {
  width: 215px;
  height: 64px;
  display: flex;
  align-items: center;
}
.brand img {
  width: 212px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 12px;
  font-weight: 700;
  color: #92929e;
}
.desktop-nav a {
  padding: 34px 0 31px;
  border-bottom: 2px solid transparent;
}
.desktop-nav a:hover {
  color: #fff;
  border-color: var(--red);
}
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.icon-button,
.menu-trigger {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  border: 1px solid #30313d;
  font-size: 24px;
}
.admin-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
}
.menu-trigger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.menu-trigger span {
  width: 15px;
  height: 1px;
  background: #fff;
}
.search-panel {
  position: absolute;
  top: 83px;
  left: clamp(22px, 6vw, 96px);
  right: clamp(22px, 6vw, 96px);
  padding: 22px 26px 26px;
  background: #12131f;
  border: 1px solid #2a2b37;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  z-index: 60;
}
.search-panel label {
  display: block;
  margin-bottom: 11px;
  color: #7f808c;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
  font-weight: 800;
}
.search-panel > div {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #3a3b47;
}
.search-panel > div > span {
  font-size: 25px;
  color: #858692;
}
.search-panel input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 9px 0 14px;
  font-size: 18px;
}
.search-panel input::placeholder {
  color: #5d5e69;
}
.search-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 27px;
}
.mobile-nav {
  display: none;
}
.hero {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 6vw;
  padding: 80px clamp(24px, 7vw, 110px) 88px;
  background: var(--night);
  color: #fff;
}
.hero:before {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -340px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(255, 255, 255, 0.016),
    0 0 0 200px rgba(255, 255, 255, 0.009);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.glow-one {
  width: 360px;
  height: 360px;
  right: 25%;
  top: 4%;
  background: var(--purple);
}
.glow-two {
  width: 260px;
  height: 260px;
  right: 0;
  bottom: 0;
  background: var(--blue);
}
.hero-copy,
.hero-stage {
  position: relative;
  z-index: 2;
}
.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #93949f;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 9px;
  font-weight: 900;
}
.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 37, 61, 0.14);
}
.hero h1 {
  font-size: clamp(62px, 7.6vw, 108px);
  line-height: 0.86;
  letter-spacing: -0.075em;
  margin: 32px 0 30px;
  max-width: 740px;
}
.hero h1 em,
.light-heading h2 em,
.instagram-intro h2 em {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.65);
  font-style: normal;
}
.hero-copy > p {
  max-width: 560px;
  color: #a6a7b2;
  font-size: 16px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}
.primary-button,
.light-button,
.instagram-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(255, 37, 61, 0.18);
  transition: transform 0.2s;
}
.primary-button:hover,
.light-button:hover,
.instagram-button:hover {
  transform: translateY(-2px);
}
.outline-link {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #dedee5;
  font-size: 12px;
  font-weight: 700;
}
.outline-link > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid #444550;
  border-radius: 50%;
}
.hero-signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  max-width: 400px;
}
.hero-signature strong {
  font-size: 25px;
}
.hero-signature span {
  padding-left: 15px;
  border-left: 1px solid #353641;
  color: #6f707c;
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-stage {
  height: 520px;
  display: grid;
  place-items: center;
  perspective: 900px;
}
.hero-stage:after {
  content: "";
  position: absolute;
  width: 70%;
  height: 13%;
  bottom: 6%;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(32px);
  opacity: 0.13;
}
.hero-stage > img {
  position: relative;
  z-index: 4;
  width: 78%;
  filter: drop-shadow(0 34px 45px rgba(0, 0, 0, 0.75));
  animation: float 5.5s ease-in-out infinite;
}
.stage-orbit {
  position: absolute;
  border: 1px solid rgba(164, 84, 197, 0.32);
  border-radius: 50%;
  transform: rotateX(65deg);
}
.orbit-a {
  width: 95%;
  height: 95%;
  animation: spin 14s linear infinite;
}
.orbit-b {
  width: 68%;
  height: 68%;
  border-color: rgba(21, 158, 214, 0.3);
  animation: spinReverse 10s linear infinite;
}
.stage-orbit:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 22px var(--purple);
}
.orbit-b:after {
  background: var(--blue);
  box-shadow: 0 0 22px var(--blue);
}
.stage-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
  animation: drift 4s ease-in-out infinite;
}
.dot-a {
  left: 3%;
  top: 28%;
}
.dot-b {
  right: 6%;
  top: 13%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
  animation-delay: -1.2s;
}
.dot-c {
  right: 13%;
  bottom: 19%;
  background: var(--blue);
  box-shadow: 0 0 18px var(--blue);
  animation-delay: -2.4s;
}
.stage-caption {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 6%;
  padding: 16px 18px;
  background: rgba(9, 10, 17, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}
.stage-caption span,
.stage-caption small {
  color: #7e7f8b;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.stage-caption strong {
  font-size: 17px;
  margin: 4px 0;
}
.departments-section {
  position: relative;
  overflow: hidden;
  padding: 105px clamp(24px, 7vw, 110px) 120px;
  background: #0c0d17;
  color: #fff;
}
.departments-section:before {
  content: "DEPARTAMENTOS";
  position: absolute;
  top: 55px;
  right: -30px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  font-size: clamp(80px, 11vw, 170px);
  font-weight: 900;
  letter-spacing: -0.07em;
  white-space: nowrap;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.section-heading h2 {
  font-size: clamp(38px, 4.8vw, 62px);
  letter-spacing: -0.06em;
  margin: 12px 0 0;
}
.light-heading h2 {
  font-size: clamp(48px, 5.8vw, 78px);
  line-height: 0.93;
}
.section-heading > p {
  max-width: 440px;
  margin: 0;
  color: #858692;
  line-height: 1.7;
  font-size: 14px;
}
.section-heading > a {
  color: #747580;
  border-bottom: 1px solid #cfccc5;
  padding-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
}
.department-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
  margin: 62px 0 24px;
  border-top: 1px solid #292a35;
  border-bottom: 1px solid #292a35;
}
.department-tabs button {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 40px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  color: #858691;
  background: transparent;
  border: 0;
  border-right: 1px solid #292a35;
  text-align: left;
}
.department-tabs button:last-child {
  border-right: 0;
}
.department-tabs button > span {
  font-size: 8px;
  color: #555661;
}
.department-tabs button img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  opacity: 0.55;
  transition: 0.2s;
}
.department-tabs button b {
  font-size: 11px;
}
.department-tabs button i {
  opacity: 0;
  color: var(--red);
  font-style: normal;
  font-size: 18px;
}
.department-tabs button:hover,
.department-tabs button.active {
  color: #fff;
  background: #141520;
}
.department-tabs button.active img,
.department-tabs button:hover img {
  opacity: 1;
  transform: scale(1.08);
}
.department-tabs button.active i {
  opacity: 1;
}
.department-panel {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) 1.1fr;
  position: relative;
  z-index: 2;
  background: var(--paper);
  color: var(--night);
  border-top: 3px solid var(--department-accent);
}
.department-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 45%,
      color-mix(in srgb, var(--department-accent) 16%, transparent),
      transparent 44%
    ),
    linear-gradient(145deg, #0d0e17, #030407 70%);
  perspective: 900px;
}
.department-visual:before {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: var(--department-accent);
  filter: blur(140px);
  opacity: 0.2;
  animation: pulse 5s ease-in-out infinite;
}
.department-visual:after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.department-logo-stage {
  width: min(82%, 410px);
  aspect-ratio: 1;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}
.department-logo-stage > img {
  position: relative;
  z-index: 4;
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 27px 38px rgba(0, 0, 0, 0.75))
    drop-shadow(
      0 0 22px color-mix(in srgb, var(--department-accent) 35%, transparent)
    );
  animation: float 5.5s ease-in-out infinite;
}
.department-logo-stage > i {
  position: absolute;
  bottom: 6%;
  width: 62%;
  height: 13%;
  border-radius: 50%;
  background: var(--department-accent);
  filter: blur(28px);
  opacity: 0.15;
}
.logo-ring {
  position: absolute;
  border: 1px solid
    color-mix(in srgb, var(--department-accent) 45%, transparent);
  border-radius: 50%;
  transform: rotateX(66deg);
}
.ring-one {
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
}
.ring-two {
  width: 70%;
  height: 70%;
  opacity: 0.45;
  animation: spinReverse 9s linear infinite;
}
.logo-ring:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--department-accent);
  box-shadow: 0 0 20px var(--department-accent);
}
.panel-number,
.panel-word {
  position: absolute;
  z-index: 3;
  left: 50px;
  font-size: 9px;
}
.panel-number {
  top: 46px;
  color: rgba(255, 255, 255, 0.4);
}
.panel-word {
  bottom: 45px;
  color: var(--department-accent);
  font-weight: 900;
  letter-spacing: 0.22em;
}
.department-content {
  padding: clamp(52px, 6vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.department-label {
  color: var(--department-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 9px;
  font-weight: 900;
}
.department-content h3 {
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 15px 0 18px;
}
.department-content > p {
  max-width: 630px;
  color: #70717c;
  line-height: 1.75;
  font-size: 14px;
}
.department-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 27px 0;
}
.department-chips span {
  padding: 8px 11px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--border);
  color: #6c6d77;
  font-size: 9px;
  font-weight: 700;
}
.department-link {
  width: fit-content;
  display: inline-flex;
  gap: 35px;
  border-bottom: 1px solid var(--department-accent);
  padding-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
}
.content-section,
.listing-section,
.related-section {
  padding: 100px clamp(24px, 7vw, 110px) 120px;
}
.content-tabs {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 45px 0 34px;
}
.content-tabs button {
  padding: 10px 17px;
  border: 1px solid #dcd9d2;
  border-radius: 100px;
  background: transparent;
  color: #747580;
  font-size: 11px;
}
.content-tabs button.active,
.content-tabs button:hover {
  background: var(--night);
  border-color: var(--night);
  color: #fff;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: #fff;
  border: 1px solid #e4e1da;
  transition: 0.25s;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(18, 18, 27, 0.1);
}
.post-cover {
  height: 235px;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 22px;
  background-size: cover;
  background-position: center;
}
.post-cover:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(255, 255, 255, 0.14),
      transparent 32%
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 50%);
}
.post-cover:after {
  content: "JK";
  position: absolute;
  right: -20px;
  bottom: -43px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  font-size: 165px;
  font-weight: 900;
  letter-spacing: -0.12em;
}
.tone-article {
  background-color: #261117;
}
.tone-material {
  background-color: #28210c;
}
.tone-video {
  background-color: #0b2232;
}
.tone-live {
  background-color: #281033;
}
.tone-notice {
  background-color: #20212b;
}
.post-type,
.post-department {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.post-type {
  color: #fff;
}
.post-department {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.52);
}
.post-arrow {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.post-copy {
  padding: 23px;
}
.post-date {
  color: #9999a1;
  font-size: 9px;
}
.post-copy h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin: 9px 0;
}
.post-copy p {
  color: #747580;
  font-size: 13px;
  line-height: 1.65;
  min-height: 43px;
}
.read-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 19px;
  padding-top: 14px;
  border-top: 1px solid #eeeae4;
  font-size: 10px;
  font-weight: 800;
}
.filter-empty,
.public-empty {
  text-align: center;
  padding: 60px;
  background: #fff;
  border: 1px solid var(--border);
  color: #72737d;
}
.instagram-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 5vw;
  padding: 105px clamp(24px, 7vw, 110px);
  background: #10111b;
  color: #fff;
}
.instagram-intro {
  align-self: center;
}
.instagram-intro h2 {
  font-size: clamp(45px, 5vw, 70px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  margin: 17px 0 22px;
}
.instagram-intro p {
  max-width: 420px;
  color: #90919c;
  line-height: 1.7;
  font-size: 14px;
}
.instagram-button {
  margin-top: 20px;
  background: linear-gradient(115deg, #7e3fff, #db2b75, #ff8a1d);
}
.instagram-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.instagram-frame {
  height: 360px;
  overflow: hidden;
  border: 1px solid #2e2f3a;
  background: #080912;
}
.instagram-frame.featured-frame {
  grid-row: span 2;
  height: 734px;
}
.instagram-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}
.live-band {
  min-height: 400px;
  padding: 75px clamp(24px, 8vw, 130px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: var(--red);
  color: #fff;
}
.live-band h2 {
  font-size: clamp(42px, 5vw, 65px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin: 15px 0;
}
.live-band p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.light-button {
  background: #fff;
  color: var(--red);
  box-shadow: none;
  margin-top: 14px;
}
.pastors-card {
  min-width: 380px;
  padding: 30px;
  background: var(--night);
  display: flex;
  flex-direction: column;
  box-shadow: 0 28px 60px rgba(60, 0, 10, 0.22);
}
.pastors-card span,
.pastors-card small {
  color: #838490;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
}
.pastors-card strong {
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 14px 0;
}
.site-footer {
  padding: 70px clamp(24px, 7vw, 110px) 35px;
  background: var(--night);
  color: #fff;
  text-align: center;
}
.site-footer > img {
  width: 260px;
  height: 96px;
  object-fit: contain;
}
.site-footer > p {
  color: #858691;
  font-size: 13px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 30px 0 52px;
  font-size: 11px;
}
.footer-links a:hover {
  color: var(--red);
}
.site-footer > small {
  display: block;
  padding-top: 25px;
  border-top: 1px solid #24252f;
  color: #585964;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.inner-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 60px;
  padding: 80px clamp(24px, 8vw, 130px);
  background: #090a13;
  color: #fff;
}
.inner-hero h1 {
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  margin: 17px 0;
}
.inner-hero p {
  max-width: 600px;
  color: #92939e;
  line-height: 1.7;
}
.back-link {
  display: block;
  margin-bottom: 45px;
  color: #777884;
  font-size: 10px;
}
.inner-logo {
  position: relative;
  height: 390px;
  display: grid;
  place-items: center;
}
.inner-logo:before,
.inner-logo span {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.inner-logo:before {
  width: 330px;
  height: 330px;
  background: var(--department-accent);
  filter: blur(120px);
  opacity: 0.2;
}
.inner-logo span {
  width: 90%;
  height: 90%;
  border: 1px solid
    color-mix(in srgb, var(--department-accent) 45%, transparent);
  transform: rotateX(65deg);
}
.inner-logo img {
  position: relative;
  z-index: 2;
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.7));
  animation: float 5s ease-in-out infinite;
}
.post-page {
  padding: 90px clamp(24px, 18vw, 290px) 110px;
  background: #fff;
}
.post-page-header {
  text-align: center;
}
.post-page-type {
  display: block;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
  font-weight: 900;
}
.post-page h1 {
  font-size: clamp(45px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: 20px 0;
}
.post-page-header > p {
  max-width: 760px;
  margin: 0 auto;
  color: #70717c;
  font-size: 17px;
  line-height: 1.7;
}
.post-page-header small {
  display: block;
  margin-top: 20px;
  color: #aaa7ac;
}
.post-page-cover {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  margin: 55px 0;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 55px 0;
  background: #080912;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.post-body {
  max-width: 820px;
  margin: 55px auto 0;
  color: #33343b;
  font-size: 17px;
  line-height: 1.9;
  white-space: pre-wrap;
}
.resource-button {
  display: flex;
  width: fit-content;
  margin: 40px auto 0;
}
.related-section {
  background: var(--paper);
}
.search-page {
  min-height: 70vh;
}
.search-hero {
  padding: 85px clamp(24px, 12vw, 190px);
  background: #0a0b14;
  color: #fff;
}
.search-hero h1 {
  font-size: clamp(45px, 6vw, 76px);
  letter-spacing: -0.06em;
}
.search-hero form {
  max-width: 760px;
  display: flex;
  border-bottom: 1px solid #454651;
}
.search-hero input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  padding: 18px 0;
  font-size: 18px;
}
.search-hero button {
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 800;
}
.search-summary {
  margin: 0 0 30px;
  color: #767782;
}
.status-page {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.status-page > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.status-page h1 {
  font-size: clamp(38px, 5vw, 65px);
  letter-spacing: -0.06em;
  margin: 18px 0;
}
.status-page p {
  color: #747580;
  margin: 0 0 26px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(11px);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.16;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.08);
  }
}
@keyframes spin {
  from {
    transform: rotateX(66deg) rotateZ(0);
  }
  to {
    transform: rotateX(66deg) rotateZ(360deg);
  }
}
@keyframes spinReverse {
  from {
    transform: rotateX(66deg) rotateZ(360deg);
  }
  to {
    transform: rotateX(66deg) rotateZ(0);
  }
}
@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-18px);
    opacity: 1;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .menu-trigger {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-stage {
    max-width: 650px;
    width: 100%;
  }
  .department-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .department-tabs button:nth-child(2) {
    border-right: 0;
  }
  .department-tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid #292a35;
  }
  .department-panel {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram-section {
    grid-template-columns: 1fr;
  }
  .instagram-intro {
    max-width: 700px;
  }
  .inner-hero {
    grid-template-columns: 1fr 0.65fr;
  }
}
@media (max-width: 700px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }
  .brand {
    width: 155px;
  }
  .brand img {
    width: 152px;
    height: 46px;
  }
  .admin-link {
    display: none;
  }
  .icon-button,
  .menu-trigger {
    width: 38px;
    height: 38px;
  }
  .search-panel {
    top: 71px;
    left: 0;
    right: 0;
    padding: 20px;
  }
  .search-panel input {
    font-size: 14px;
  }
  .mobile-nav {
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 12px 20px 18px;
    background: #10111c;
    border-top: 1px solid #292a34;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  }
  .mobile-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid #252631;
    color: #d3d3dc;
    font-size: 13px;
  }
  .hero {
    padding: 62px 20px 72px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-stage {
    height: 390px;
  }
  .stage-caption {
    right: 0;
    bottom: 0;
  }
  .departments-section,
  .content-section,
  .listing-section,
  .related-section {
    padding: 76px 20px 86px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .light-heading h2 {
    font-size: 49px;
  }
  .department-tabs {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }
  .department-tabs button {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid #292a35;
  }
  .department-tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid #292a35;
  }
  .department-panel {
    grid-template-columns: 1fr;
  }
  .department-visual {
    min-height: 390px;
  }
  .department-visual:after {
    inset: 18px;
  }
  .department-logo-stage {
    width: min(82%, 330px);
  }
  .panel-number {
    left: 35px;
    top: 33px;
  }
  .panel-word {
    left: 35px;
    bottom: 33px;
  }
  .department-content {
    padding: 45px 26px 52px;
  }
  .department-content h3 {
    font-size: 40px;
  }
  .content-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .content-tabs button {
    white-space: nowrap;
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .instagram-section {
    padding: 76px 20px;
  }
  .instagram-intro h2 {
    font-size: 49px;
  }
  .instagram-gallery {
    grid-template-columns: 1fr;
  }
  .instagram-frame,
  .instagram-frame.featured-frame {
    height: 560px;
    grid-row: auto;
  }
  .live-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 64px 20px;
  }
  .pastors-card {
    min-width: 0;
    width: 100%;
  }
  .inner-hero {
    grid-template-columns: 1fr;
    padding: 65px 20px;
  }
  .inner-logo {
    height: 320px;
  }
  .post-page {
    padding: 70px 20px 85px;
  }
  .post-page h1 {
    font-size: 46px;
  }
  .post-body {
    font-size: 16px;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}

/* Direção visual 2026 — acrílico fosco + madeira contemporânea */
:root {
  --wood: #2b2118;
  --wood-deep: #120f0c;
  --sand: #d5c5ad;
  --glass: rgba(255, 255, 255, 0.075);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}
body {
  background: #11100e;
  color: #f4efe7;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(10, 10, 13, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(145%);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}
.desktop-nav { color: #bcb6ae; }
.admin-link,
.primary-button,
.instagram-button {
  border-radius: 4px;
  background: linear-gradient(135deg, #ff2b43, #bc142b);
  box-shadow: 0 16px 38px rgba(217, 24, 51, 0.22), inset 0 1px rgba(255, 255, 255, 0.24);
}
.hero {
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.96), rgba(8, 8, 10, 0.55)),
    repeating-linear-gradient(97deg, #211910 0, #211910 2px, #17120d 2px, #17120d 8px);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 42%, rgba(255, 255, 255, 0.035) 42.2%, transparent 43%), radial-gradient(circle at 75% 45%, rgba(164, 84, 197, 0.18), transparent 25%);
}
.hero-copy { padding: 38px 0; }
.hero h1 { text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45); }
.hero h1 em { -webkit-text-stroke-color: var(--sand); }
.hero-stage {
  border: 1px solid var(--glass-border);
  border-radius: 28px 6px 28px 6px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(20px) saturate(135%);
  box-shadow: var(--glass-shadow), inset 0 1px rgba(255, 255, 255, 0.12);
}
.stage-caption {
  right: 22px;
  bottom: 22px;
  border-radius: 12px 2px 12px 2px;
  background: rgba(13, 11, 10, 0.68);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
}
.departments-section {
  background:
    linear-gradient(rgba(10, 10, 13, 0.84), rgba(10, 10, 13, 0.93)),
    repeating-linear-gradient(91deg, #33261b 0, #33261b 2px, #211810 2px, #211810 9px);
}
.department-tabs {
  gap: 10px;
  border: 0;
}
.department-tabs button {
  min-height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  border-radius: 14px 3px 14px 3px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}
.department-tabs button:hover,
.department-tabs button.active {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  border-color: rgba(255, 255, 255, 0.24) !important;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.12);
}
.department-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 4px solid var(--department-accent);
  border-radius: 28px 5px 28px 5px;
  background: rgba(255, 255, 255, 0.065);
  color: #fff;
  backdrop-filter: blur(22px) saturate(135%);
  box-shadow: var(--glass-shadow), inset 0 1px rgba(255, 255, 255, 0.1);
}
.department-content {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025));
}
.department-content::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.department-content > * { position: relative; z-index: 1; }
.department-content > p { color: #b7b0a8; }
.department-chips span {
  color: #e2ddd5;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}
.leadership-section {
  position: relative;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 37, 61, 0.12), transparent 24%),
    linear-gradient(135deg, #201912, #0d0d10 68%);
  color: #fff;
}
.leadership-section::before,
.content-section::before,
.instagram-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background: repeating-linear-gradient(94deg, transparent 0, transparent 6px, rgba(255, 255, 255, 0.025) 7px, transparent 8px);
}
.leadership-heading > p { color: #aaa39b; }
.pastoral-profile,
.department-profile {
  border: 1px solid var(--glass-border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(20px) saturate(130%);
  box-shadow: var(--glass-shadow), inset 0 1px rgba(255, 255, 255, 0.1);
}
.pastoral-profile { border-radius: 24px 4px 24px 4px; }
.pastoral-profile > div:last-child { background: rgba(18, 15, 12, 0.48); }
.department-lineup-heading { border-top-color: rgba(255, 255, 255, 0.12); }
.department-lineup-heading span { color: #aaa39b; }
.department-profile { border-radius: 18px 3px 18px 3px; }
.department-profile-top { background: rgba(8, 8, 11, 0.72); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.department-profile-copy { background: rgba(16, 14, 12, 0.68); }
.department-profile-copy h4 { color: #fff; }
.department-profile-copy strong { color: #aaa39b; }
.department-profile-copy a { border-top-color: rgba(255, 255, 255, 0.11); }
.content-section {
  position: relative;
  background:
    linear-gradient(rgba(19, 16, 12, 0.91), rgba(19, 16, 12, 0.96)),
    repeating-linear-gradient(90deg, #3b2d20 0, #3b2d20 3px, #241b13 3px, #241b13 11px);
  color: #f5f0e8;
}
.content-section .section-heading > a { color: #d0c6b9; border-color: rgba(255, 255, 255, 0.2); }
.content-tabs button {
  color: #c7bfb5;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}
.content-tabs button.active,
.content-tabs button:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.28); }
.post-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px 3px 18px 3px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18), inset 0 1px rgba(255, 255, 255, 0.08);
}
.post-card:hover { transform: translateY(-8px); border-color: rgba(255, 255, 255, 0.25); box-shadow: 0 30px 75px rgba(0, 0, 0, 0.32); }
.post-copy { color: #f5f0e8; background: rgba(10, 10, 12, 0.38); }
.post-date,
.post-copy p { color: #aaa39b; }
.read-link { border-top-color: rgba(255, 255, 255, 0.12); }
.instagram-section {
  position: relative;
  grid-template-columns: 0.62fr 1.38fr;
  background:
    radial-gradient(circle at 90% 12%, rgba(126, 63, 255, 0.15), transparent 25%),
    linear-gradient(135deg, #0c0c11, #18130f);
}
.instagram-intro,
.instagram-gallery { position: relative; z-index: 1; }
.official-profile-seal {
  width: fit-content;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px 3px 12px 3px;
  background: var(--glass);
  backdrop-filter: blur(15px);
}
.official-profile-seal > span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: #168af1; font-weight: 900; }
.official-profile-seal div { display: flex; flex-direction: column; gap: 2px; }
.official-profile-seal strong { font-size: 12px; }
.official-profile-seal small { color: #8f8b88; font-size: 8px; }
.official-instagram-gallery { grid-template-columns: 1fr 1fr; }
.instagram-frame {
  height: 690px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px 3px 18px 3px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  box-shadow: var(--glass-shadow);
}
.instagram-frame.featured-frame { height: 690px; grid-row: auto; }
.instagram-frame-label {
  height: 62px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(14, 13, 14, 0.74);
}
.instagram-frame-label span { color: #938d87; font-size: 7px; letter-spacing: 0.14em; }
.instagram-frame-label strong { font-size: 10px; }
.instagram-frame iframe { height: calc(100% - 62px); }
.instagram-profile-card {
  grid-column: 1/-1;
  min-height: 190px;
  padding: 30px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 8px 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px 3px 18px 3px;
  background: linear-gradient(125deg, rgba(126, 63, 255, 0.18), rgba(219, 43, 117, 0.12), rgba(255, 138, 29, 0.12));
  backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
}
.instagram-profile-card img { grid-row: 1/4; width: 150px; height: 100px; object-fit: contain; }
.instagram-profile-card > span { color: #c4bcb4; font-size: 8px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.instagram-profile-card h3 { margin: 0; font-size: 27px; letter-spacing: -0.04em; }
.instagram-profile-card > div { display: flex; justify-content: space-between; padding-top: 13px; border-top: 1px solid rgba(255, 255, 255, 0.13); }
.instagram-profile-card i { font-style: normal; }
.live-band {
  background:
    linear-gradient(115deg, rgba(158, 13, 35, 0.95), rgba(58, 24, 18, 0.94)),
    repeating-linear-gradient(90deg, #3d291c 0, #3d291c 3px, #23170f 3px, #23170f 10px);
}
.pastors-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px 3px 18px 3px;
  background: rgba(12, 12, 15, 0.58);
  backdrop-filter: blur(22px);
  box-shadow: var(--glass-shadow), inset 0 1px rgba(255, 255, 255, 0.1);
}
.site-footer { background: #08080b; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.inner-hero { background: linear-gradient(120deg, #09090c, #241b13); }
.department-leader-strip { background: rgba(28, 23, 18, 0.96); color: #fff; border-color: rgba(255, 255, 255, 0.1); }

/* Área de visita e conexão */
.visit-section {
  position: relative;
  overflow: hidden;
  padding: 110px clamp(24px, 7vw, 110px) 120px;
  color: #f8f3ec;
  background:
    radial-gradient(circle at 88% 12%, rgba(164, 84, 197, 0.2), transparent 28%),
    radial-gradient(circle at 12% 95%, rgba(255, 37, 61, 0.14), transparent 26%),
    linear-gradient(135deg, #0b0b10 8%, #241b13 100%);
}
.visit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background: repeating-linear-gradient(93deg, transparent 0, transparent 8px, rgba(255, 255, 255, 0.025) 9px, transparent 11px);
}
.visit-heading,
.visit-grid { position: relative; z-index: 1; }
.visit-heading { margin-bottom: 46px; display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: 50px; }
.visit-heading h2 { margin: 14px 0 0; font-size: clamp(42px, 5.3vw, 76px); line-height: 0.96; letter-spacing: -0.06em; }
.visit-heading h2 em { color: #ff5267; font-style: normal; }
.visit-heading > p { max-width: 520px; margin: 0 0 8px; color: #b9afa5; font-size: 14px; line-height: 1.75; }
.visit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.visit-card {
  min-height: 330px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px 4px 20px 4px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(22px) saturate(135%);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 180ms ease, border-color 180ms ease;
}
.visit-card:hover { transform: translateY(-7px); border-color: rgba(255, 255, 255, 0.29); }
.visit-card-featured { background: linear-gradient(145deg, rgba(255, 37, 61, 0.24), rgba(255, 255, 255, 0.045)); }
.visit-card > span { align-self: flex-end; color: #766e68; font-size: 10px; font-weight: 900; }
.visit-card > small { margin-top: 42px; color: #ff6678; font-size: 8px; font-weight: 900; letter-spacing: 0.17em; text-transform: uppercase; }
.visit-card h3 { margin: 13px 0 14px; font-size: clamp(23px, 2vw, 31px); line-height: 1.03; letter-spacing: -0.045em; }
.visit-card p { margin: 0; color: #aaa098; font-size: 11px; line-height: 1.6; }
.visit-card a,
.visit-pending { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 10px; font-weight: 900; }
.visit-card a { display: flex; justify-content: space-between; color: #fff; }
.visit-card a i { color: #ff6678; font-style: normal; }
.visit-pending { color: #766f69; }
.service-times { display: block; margin: 20px 0 5px; color: #fff; font-size: 15px; }
.live-band h2 { max-width: 820px; }
@media (max-width: 1100px) {
  .visit-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .visit-section { padding: 78px 22px 84px; }
  .visit-heading { grid-template-columns: 1fr; gap: 24px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-card { min-height: 280px; }
}
@media (max-width: 1100px) {
  .instagram-section { grid-template-columns: 1fr; }
  .official-instagram-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hero-stage { border-radius: 20px 4px 20px 4px; }
  .department-panel { border-radius: 20px 4px 20px 4px; }
  .official-instagram-gallery { grid-template-columns: 1fr; }
  .instagram-frame { height: 650px; }
  .instagram-profile-card { grid-column: auto; grid-template-columns: 1fr; text-align: center; }
  .instagram-profile-card img { grid-row: auto; margin: 0 auto; }
  .instagram-profile-card > div { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Liderança pastoral e departamentos */
.leadership-section {
  padding: 105px clamp(24px, 7vw, 110px) 120px;
  background: #edebe5;
  overflow: hidden;
}
.leadership-heading { margin-bottom: 52px; }
.leadership-heading em { color: var(--red); }
.pastoral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.pastoral-profile {
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(240px, 0.88fr) 1.12fr;
  align-items: stretch;
  background: var(--night);
  color: #fff;
  overflow: hidden;
}
.pastoral-profile > div:last-child {
  padding: 48px clamp(28px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pastoral-profile > div:last-child > span,
.department-profile-copy small {
  color: var(--red);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pastoral-profile h3 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 15px 0 22px;
}
.pastoral-profile p {
  max-width: 350px;
  color: #8c8d98;
  font-size: 13px;
  line-height: 1.7;
}
.leadership-photo {
  position: relative;
  overflow: hidden;
  background: #171823;
}
.leadership-photo > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.pastoral-photo { min-height: 470px; }
.pastoral-photo > small {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 10px;
  background: rgba(8, 9, 18, 0.8);
  color: #fff;
  font-size: 7px;
  letter-spacing: 0.13em;
}
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  background: radial-gradient(circle at 50% 32%, rgba(255, 37, 61, 0.22), transparent 26%), linear-gradient(145deg, #1d1e2a, #0d0e17);
  color: #fff;
}
.photo-placeholder::before,
.photo-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.photo-placeholder::before { width: 240px; height: 240px; }
.photo-placeholder::after { width: 320px; height: 320px; }
.photo-placeholder span,
.photo-placeholder i { position: relative; z-index: 2; }
.photo-placeholder span { font-size: 8px; letter-spacing: 0.18em; color: #8d8e99; }
.photo-placeholder i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  font-style: normal;
  font-size: 22px;
  font-weight: 900;
}
.department-lineup-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 90px 0 30px;
  padding-top: 35px;
  border-top: 1px solid #d5d2ca;
}
.department-lineup-heading span { color: #8a8991; font-size: 8px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.department-lineup-heading h3 { font-size: 35px; letter-spacing: -0.05em; margin: 0; }
.department-lineup {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.department-profile {
  position: relative;
  background: #fff;
  border: 1px solid #dedbd3;
  overflow: hidden;
}
.department-profile::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--department-accent);
}
.department-profile-top {
  height: 108px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0f1019;
}
.department-profile-top > span { color: #5f606b; font-size: 10px; font-weight: 900; }
.department-profile-top img { width: 54%; height: 66px; object-fit: contain; }
.department-photo { height: 340px; }
.department-photo .photo-placeholder { background: radial-gradient(circle at 50% 32%, color-mix(in srgb, var(--department-accent) 28%, transparent), transparent 27%), linear-gradient(145deg, #242532, #11121b); }
.department-photo .photo-placeholder i { background: var(--department-accent); }
.department-profile-copy { padding: 25px 22px 23px; }
.department-profile-copy h4 { min-height: 58px; font-size: 25px; line-height: 1.04; letter-spacing: -0.04em; margin: 10px 0; }
.department-profile-copy strong { display: block; color: #777883; font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; }
.department-profile-copy a { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 15px; border-top: 1px solid #ebe8e2; font-size: 9px; font-weight: 900; }
.department-profile-copy a span { color: var(--department-accent); font-size: 16px; }
.department-leader-strip {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 30px clamp(24px, 8vw, 130px);
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.department-leader-photo {
  position: relative;
  width: 130px;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: #11121b;
  color: #fff;
}
.department-leader-photo::before { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: var(--department-accent); }
.department-leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.department-leader-photo span,
.department-leader-photo i { position: relative; }
.department-leader-photo span { font-size: 7px; line-height: 1.5; text-align: center; letter-spacing: 0.14em; color: #8d8e98; }
.department-leader-photo i { font-style: normal; font-size: 24px; font-weight: 900; color: var(--department-accent); }
.department-leader-strip > div:nth-child(2) > span { color: var(--department-accent); font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; }
.department-leader-strip h2 { font-size: 34px; letter-spacing: -0.05em; margin: 8px 0; }
.department-leader-strip p { margin: 0; color: #7c7d86; font-size: 11px; }
.department-leader-strip > a { display: flex; gap: 35px; padding: 15px 0; border-bottom: 1px solid #d9d6cf; font-size: 10px; font-weight: 900; }
.department-leader-strip > a b { color: var(--department-accent); }
@media (max-width: 1150px) {
  .pastoral-profile { grid-template-columns: 1fr; }
  .pastoral-photo { min-height: 390px; }
  .pastoral-profile > div:last-child { min-height: 260px; }
  .department-lineup { grid-template-columns: repeat(4, 280px); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; }
  .department-profile { scroll-snap-align: start; }
}
@media (max-width: 700px) {
  .leadership-section { padding: 76px 20px 86px; }
  .pastoral-grid { grid-template-columns: 1fr; }
  .pastoral-profile { min-height: 0; }
  .pastoral-photo { min-height: 430px; }
  .pastoral-profile > div:last-child { min-height: 235px; padding: 36px 26px; }
  .department-lineup-heading { align-items: flex-start; flex-direction: column; gap: 10px; margin-top: 68px; }
  .department-lineup { grid-template-columns: repeat(4, 82vw); margin-right: -20px; }
  .department-photo { height: 360px; }
  .department-leader-strip { grid-template-columns: 95px 1fr; padding: 24px 20px; gap: 18px; }
  .department-leader-photo { width: 90px; height: 112px; }
  .department-leader-strip h2 { font-size: 25px; }
  .department-leader-strip > a { grid-column: 1/-1; justify-content: space-between; }
}

/* Precedência final da área de lideranças */
.leadership-section {
  position: relative;
  background: radial-gradient(circle at 8% 8%, rgba(255, 37, 61, 0.12), transparent 24%), linear-gradient(135deg, #201912, #0d0d10 68%);
  color: #fff;
}
.leadership-heading em { color: var(--red); }
.leadership-heading > p { color: #aaa39b; }
.pastoral-profile,
.department-profile {
  color: #fff;
  border: 1px solid var(--glass-border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(20px) saturate(130%);
  box-shadow: var(--glass-shadow), inset 0 1px rgba(255, 255, 255, 0.1);
}
.pastoral-profile { border-radius: 24px 4px 24px 4px; }
.pastoral-profile > div:last-child { background: rgba(18, 15, 12, 0.48); }
.department-lineup-heading { border-top-color: rgba(255, 255, 255, 0.12); }
.department-lineup-heading span { color: #aaa39b; }
.department-profile { border-radius: 18px 3px 18px 3px; }
.department-profile-top { background: rgba(8, 8, 11, 0.72); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.department-profile-copy { background: rgba(16, 14, 12, 0.68); }
.department-profile-copy h4 { color: #fff; }
.department-profile-copy strong { color: #aaa39b; }
.department-profile-copy a { border-top-color: rgba(255, 255, 255, 0.11); }
.department-leader-strip { background: rgba(28, 23, 18, 0.96); color: #fff; border-color: rgba(255, 255, 255, 0.1); }
