:root {
  --ink: #122033;
  --ink-soft: #3a4a5c;
  --paper: #f7f4ef;
  --sand: #e8e0d4;
  --gold: #b8893a;
  --gold-deep: #8f6a28;
  --sea: #1a3a52;
  --sea-deep: #0d2436;
  --mist: rgba(247, 244, 239, 0.88);
  --line: rgba(18, 32, 51, 0.12);
  --shadow: 0 24px 60px rgba(13, 36, 54, 0.28);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(184, 137, 58, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(26, 58, 82, 0.1), transparent 50%),
    linear-gradient(180deg, #fbf8f3 0%, var(--paper) 40%, #efe8dc 100%);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--sea);
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 1.5rem, calc(var(--max) + 1rem));
  margin: 0.75rem auto 0;
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  background: rgba(8, 18, 28, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 248, 238, 0.16);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff8ee;
  text-decoration: none;
  transition: transform 0.28s ease, color 0.28s ease;
}

.brand:hover {
  color: #e0b35a;
  transform: translateY(-1px);
}

.brand-emblem {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.brand:hover .brand-emblem {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 0 0 3px rgba(224, 179, 90, 0.35), 0 8px 18px rgba(0, 0, 0, 0.25);
  background: rgba(255, 248, 238, 0.18);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.site-nav a {
  color: rgba(247, 244, 239, 0.9);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.site-nav a:hover {
  color: #0d2436;
  background: #e0b35a;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.site-nav a.nav-sair:hover {
  background: rgba(183, 28, 28, 0.85);
  color: #fff8ee;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 238, 0.22);
  background: rgba(255, 248, 238, 0.08);
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: #fff8ee;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--paper);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 36, 54, 0.28) 0%, rgba(13, 36, 54, 0.72) 70%, rgba(13, 36, 54, 0.9) 100%),
    url("https://images.unsplash.com/photo-1438232992991-995b7058bbb3?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 0 0 18vh;
  animation: rise-in 1.1s ease both;
}

.hero-brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  color: rgba(247, 244, 239, 0.95);
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(247, 244, 239, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--sea-deep);
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: #c99745;
  color: var(--sea-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(247, 244, 239, 0.45);
}

.btn-ghost:hover {
  background: rgba(247, 244, 239, 0.1);
  color: var(--paper);
}

.section {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.section-head h2,
.page-hero h1,
.about-grid h2,
.contact-block h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.section-head p,
.page-hero p,
.about-grid p,
.contact-block p {
  margin: 0;
  color: var(--ink-soft);
}

.section-link {
  margin: 2rem 0 0;
}

.verse-section {
  padding-top: 4.5rem;
  padding-bottom: 1rem;
}

.verse-section blockquote {
  margin: 0;
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--line);
  max-width: 40rem;
  animation: rise-in 1s ease both;
  animation-delay: 0.15s;
}

.verse-section p {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--sea-deep);
}

.verse-section cite {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 4.5rem 0 1rem;
  animation: rise-in 0.8s ease both;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 16ch;
}

.sobre-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  margin: -0; /* content fills naturally */
  color: #f7f4ef;
}

.sobre-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 18, 28, 0.42) 0%, rgba(8, 18, 28, 0.28) 45%, rgba(8, 18, 28, 0.55) 100%),
    url("../images/fundo-sobre.png") center/cover no-repeat;
  background-attachment: fixed;
}

.sobre-content {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: 3rem;
}

.sobre-content .page-hero,
.sobre-content .section {
  position: relative;
}

.sobre-content .eyebrow {
  color: #e0b35a;
}

.sobre-content .page-hero h1,
.sobre-content .section-head h2,
.sobre-content .about-grid h2,
.sobre-content .values-list li {
  color: #fff8ee;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.7);
}

.sobre-content .page-hero p,
.sobre-content .section-head p,
.sobre-content .about-grid p {
  color: rgba(247, 244, 239, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  max-width: 42rem;
}

.sobre-content .about-grid article {
  padding: 1.25rem 1.35rem;
  background: rgba(8, 18, 28, 0.38);
  border: 1px solid rgba(255, 248, 238, 0.14);
  backdrop-filter: blur(4px);
}

.sobre-content .values-list li {
  font-size: 1.35rem;
}

@media (max-width: 800px) {
  .sobre-bg {
    background-attachment: scroll;
  }
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--gold-deep);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-list,
.event-list,
.values-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.schedule-list li,
.event-list li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1.25rem;
  padding: 1.35rem 1rem;
  margin: 0 -1rem;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: 4px;
  animation: rise-in 0.7s ease both;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  cursor: default;
}

.schedule-list li:hover,
.event-list li:hover {
  transform: translateX(8px);
  background: rgba(184, 137, 58, 0.1);
  border-left-color: var(--gold);
  box-shadow: 0 8px 24px rgba(13, 36, 54, 0.08);
}

.schedule-list li:nth-child(2),
.event-list li:nth-child(2) { animation-delay: 0.08s; }
.schedule-list li:nth-child(3),
.event-list li:nth-child(3) { animation-delay: 0.16s; }
.schedule-list li:nth-child(4),
.event-list li:nth-child(4) { animation-delay: 0.24s; }

.schedule-day,
.event-list time {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sea);
  font-weight: 600;
  transition: color 0.28s ease, transform 0.28s ease;
}

.schedule-list li:hover .schedule-day,
.event-list li:hover time {
  color: var(--gold-deep);
  transform: scale(1.06);
  transform-origin: left center;
}

.schedule-list strong,
.event-list strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  transition: color 0.28s ease;
}

.schedule-list li:hover strong,
.event-list li:hover strong {
  color: var(--sea-deep);
}

.schedule-list p,
.event-list p {
  margin: 0.15rem 0 0;
  color: var(--ink-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.about-grid h2 {
  font-size: 2rem;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.values-list li {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sea-deep);
}

.contact-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.contato-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  color: #f7f4ef;
}

.contato-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 18, 28, 0.48) 0%, rgba(8, 18, 28, 0.32) 40%, rgba(8, 18, 28, 0.62) 100%),
    url("../images/contato-pastores.png") center/cover no-repeat;
  background-attachment: fixed;
}

.contato-content {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: 3rem;
}

.contato-content .eyebrow {
  color: #e0b35a;
}

.contato-content .page-hero h1 {
  color: #fff8ee;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.7);
}

.contato-content .page-hero p {
  color: rgba(247, 244, 239, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.contact-card {
  padding: 1.5rem 1.6rem;
  border-radius: 24px;
  background: rgba(8, 18, 28, 0.55);
  border: 1px solid rgba(255, 248, 238, 0.16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  animation: rise-in 0.75s ease both;
}

.contact-card:nth-child(2) {
  animation-delay: 0.08s;
}

.contact-card h2 {
  margin-bottom: 0.9rem;
  color: #fff8ee;
}

.contact-card p,
.contact-card a {
  color: rgba(247, 244, 239, 0.92);
}

.contact-card a:hover {
  color: #e0b35a;
}

.contact-card a {
  word-break: break-word;
}

.midia-access {
  padding-top: 0;
}

.midia-card .hero-actions {
  margin-top: 1.1rem;
}

.midia-card .btn-ghost {
  border-color: rgba(255, 248, 238, 0.45);
  color: #fff8ee;
}

.midia-card .btn-ghost:hover {
  background: rgba(255, 248, 238, 0.12);
  color: #fff8ee;
}

@media (max-width: 800px) {
  .contato-bg {
    background-attachment: scroll;
  }
}

.site-footer {
  margin-top: 2rem;
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(26, 58, 82, 0.08));
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-brand {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--sea-deep);
}

.footer-emblem {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-lema,
.footer-copy {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-copy {
  margin-top: 1.25rem;
  font-size: 0.85rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(0, -1.5%, 0); }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-toggle span {
    background: #fff8ee;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem;
    background: rgba(8, 18, 28, 0.92);
    border: 1px solid rgba(255, 248, 238, 0.16);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
    border-bottom: none;
  }

  .hero-content {
    padding-bottom: 12vh;
  }

  .schedule-list li,
  .event-list li,
  .about-grid,
  .contact-block {
    grid-template-columns: 1fr;
  }

  .schedule-day,
  .event-list time {
    margin-bottom: -0.5rem;
  }
}

/* ---------- Galeria / carrossel ---------- */

.gallery-home--destaque {
  padding-top: 0.5rem;
}

.gallery-home--destaque .section-head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.gallery-home--destaque .section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--sea-deep);
}

.carousel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #0d2436;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}

.carousel--destaque {
  aspect-ratio: 4 / 5;
  max-width: 720px;
  margin-inline: auto;
  min-height: min(68vh, 640px);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(13, 36, 54, 0.32);
  border: 1px solid rgba(224, 179, 90, 0.28);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.06) translateX(2%);
  transition: opacity 0.85s ease, transform 0.95s ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1) translateX(0);
  pointer-events: auto;
}

.carousel-slide.is-active img {
  animation: gallery-kenburns 3.2s ease-out both;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.carousel--destaque .carousel-slide img {
  object-position: center top;
}

.carousel-counter {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  margin: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(8, 18, 28, 0.55);
  color: #fff8ee;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

@keyframes gallery-kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 18, 28, 0.55);
  color: #fff8ee;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.carousel-btn--prev { left: 0.85rem; }
.carousel-btn--next { right: 0.85rem; }

.carousel-btn:hover {
  background: rgba(224, 179, 90, 0.9);
  color: #0d2436;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.45);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.is-active {
  background: #e0b35a;
  transform: scale(1.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0d2436;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-post + .gallery-post {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* ---------- Admin ---------- */

.admin-login-wrap {
  max-width: 420px;
}

.admin-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(8, 18, 28, 0.06);
  border: 1px solid rgba(18, 32, 51, 0.1);
  box-shadow: 0 10px 28px rgba(13, 36, 54, 0.06);
}

.admin-card h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.admin-card label {
  display: block;
  margin: 0.9rem 0 0.35rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.admin-card input,
.admin-card select {
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(18, 32, 51, 0.16);
  border-radius: 12px;
  background: #fff;
  font: inherit;
}

.admin-card .btn {
  margin-top: 1.25rem;
}

.admin-msg {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
}

.admin-msg--ok {
  background: rgba(46, 125, 50, 0.12);
  color: #1b5e20;
}

.admin-msg--erro {
  background: rgba(183, 28, 28, 0.12);
  color: #8b1515;
}

.admin-posts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.admin-post-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.admin-post-head p {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
}

.admin-meta {
  font-size: 0.9rem;
}

.admin-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.admin-thumbs img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--sea-deep);
  border: 1px solid rgba(18, 32, 51, 0.2);
}

.btn-ghost-dark:hover {
  background: rgba(183, 28, 28, 0.08);
  color: #8b1515;
  border-color: rgba(183, 28, 28, 0.3);
}

/* ---------- Evento Batismo ---------- */

.batismo-access {
  padding-bottom: 0;
}

.batismo-access-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.batismo-access-card p {
  margin: 0;
  color: var(--ink-soft);
}

.batismo-access-card .hero-actions {
  margin-top: 1.1rem;
}

.admin-help {
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
}

.admin-thumbs--batismo {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.admin-thumbs--batismo figure {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.admin-thumbs--batismo img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
}

.admin-thumbs--batismo figcaption {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.batismo-export {
  margin: 0 0 1.5rem;
}

.batismo-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(18, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.55);
}

.batismo-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.batismo-table th,
.batismo-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
  font-size: 0.95rem;
}

.batismo-table th {
  background: rgba(8, 18, 28, 0.05);
  font-weight: 600;
}

.batismo-table td span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.batismo-table td strong {
  display: block;
  margin-bottom: 0.2rem;
}

.status-form {
  display: grid;
  gap: 0.45rem;
}

.status-form select {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(18, 32, 51, 0.16);
  padding: 0.35rem 0.5rem;
  font: inherit;
}

.status-form .btn {
  margin-top: 0;
}

.status-pill {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(18, 32, 51, 0.08);
  color: var(--sea-deep);
}

.status-pill--vou {
  background: rgba(46, 125, 50, 0.14);
  color: #1b5e20;
}

.status-pill--analise {
  background: rgba(224, 179, 90, 0.22);
  color: #7a5a12;
}

.status-pill--desistir {
  background: rgba(183, 28, 28, 0.12);
  color: #8b1515;
}

.batismo-form {
  max-width: 640px;
}

.pessoa-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.pessoa-row:first-child {
  margin-top: 0;
}

.filhos-block {
  margin-top: 0.9rem;
}

.filhos-block > label {
  display: block;
  margin: 0 0 0.35rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.filhos-lista {
  display: grid;
  gap: 0.65rem;
}

.filho-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.55rem;
  align-items: center;
}

.filho-row--com-remover {
  grid-template-columns: 1.4fr 1fr auto;
}

.filho-row input {
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(18, 32, 51, 0.16);
  border-radius: 12px;
  background: #fff;
  font: inherit;
}

.filhos-add {
  margin-top: 0.75rem;
}

.filho-remove {
  margin-top: 0;
  white-space: nowrap;
}

.batismo-filhos-resumo {
  margin: 0.25rem 0 0.75rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.batismo-filhos-resumo li {
  margin: 0.2rem 0;
}

@media (max-width: 700px) {
  .pessoa-row,
  .filho-row,
  .filho-row--com-remover {
    grid-template-columns: 1fr;
  }
}

.batismo-fieldset {
  margin: 1.25rem 0 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(18, 32, 51, 0.12);
  border-radius: 16px;
}

.batismo-fieldset legend {
  padding: 0 0.35rem;
  font-weight: 600;
  color: var(--sea-deep);
}

.check-line {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  margin: 0.55rem 0 0 !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  cursor: pointer;
}

.check-line input {
  width: auto !important;
  min-height: auto !important;
  margin: 0;
}

.batismo-resumo p {
  margin: 0.45rem 0;
}

.batismo-resumo .hero-actions {
  margin-top: 1.25rem;
}

.batismo-home .section-head h2 {
  color: var(--sea-deep);
}

.admin-card textarea {
  width: 100%;
  min-height: 90px;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(18, 32, 51, 0.16);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  resize: vertical;
}

.eventos-acessos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.casais-access-card {
  background:
    linear-gradient(160deg, rgba(122, 48, 66, 0.08), rgba(255, 248, 245, 0.9)),
    rgba(255, 255, 255, 0.55);
  border-color: rgba(122, 48, 66, 0.18);
}

/* ---------- Encontro de Casais (ambiente próprio) ---------- */

body.tema-casais {
  --ink: #2a1a20;
  --ink-soft: #6a4a55;
  --paper: #fff8f5;
  --sand: #f0ddd8;
  --gold: #a85a6a;
  --gold-deep: #7a3042;
  --sea: #7a3042;
  --sea-deep: #4a1c2a;
  --mist: rgba(255, 248, 245, 0.9);
  --line: rgba(74, 28, 42, 0.14);
  --shadow: 0 24px 60px rgba(74, 28, 42, 0.22);
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  font-family: var(--font-body);
  background:
    radial-gradient(1000px 520px at 8% -8%, rgba(168, 90, 106, 0.18), transparent 55%),
    radial-gradient(800px 420px at 100% 0%, rgba(74, 28, 42, 0.12), transparent 50%),
    linear-gradient(180deg, #fff9f7 0%, #fff4ef 45%, #f6e4df 100%);
}

body.tema-casais .site-header {
  background: rgba(48, 18, 28, 0.72);
  border-color: rgba(255, 236, 232, 0.2);
}

body.tema-casais .btn-primary,
.btn-casais {
  background: linear-gradient(135deg, #8d3d52, #6b2a3d);
  border-color: transparent;
  color: #fff8f5;
}

body.tema-casais .btn-primary:hover,
.btn-casais:hover {
  background: linear-gradient(135deg, #a04a60, #7a3042);
  color: #fff8f5;
}

.casais-hero h1 {
  max-width: 18ch;
}

.casais-invite {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
  isolation: isolate;
}

.casais-invite::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(168, 90, 106, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(74, 28, 42, 0.2), transparent 45%),
    linear-gradient(145deg, #4a1c2a 0%, #7a3042 45%, #a85a6a 100%);
  animation: casais-glow 10s ease-in-out infinite alternate;
}

.casais-invite-inner {
  width: min(100%, 760px);
  text-align: center;
  color: #fff8f5;
  animation: rise-in 0.8s ease both;
}

.casais-invite .eyebrow {
  color: rgba(255, 248, 245, 0.78);
  letter-spacing: 0.18em;
}

.casais-invite h1 {
  margin: 0.6rem auto 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  line-height: 1.35;
  max-width: 22ch;
  color: #fff8f5;
}

.casais-lead {
  margin: 1.1rem auto 0;
  max-width: 38ch;
  color: rgba(255, 248, 245, 0.9);
  font-size: 1.1rem;
}

.casais-invite .btn-ghost-dark {
  border-color: rgba(255, 248, 245, 0.45);
  color: #fff8f5;
}

.casais-invite .btn-ghost-dark:hover {
  background: rgba(255, 248, 245, 0.12);
  color: #fff8f5;
}

.casais-card {
  background: rgba(255, 248, 245, 0.72);
  border-color: rgba(122, 48, 66, 0.14);
  box-shadow: 0 14px 36px rgba(74, 28, 42, 0.08);
}

.casais-carousel {
  background: #3a1824;
  box-shadow: 0 20px 48px rgba(74, 28, 42, 0.28);
}

.casais-programacao {
  padding: 1.6rem 1.5rem;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(122, 48, 66, 0.08), rgba(255, 248, 245, 0.95));
  border: 1px solid rgba(122, 48, 66, 0.16);
  animation: rise-in 0.7s ease both;
}

.casais-programacao h2,
.casais-programacao h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  color: var(--sea-deep);
}

.casais-programacao-texto {
  white-space: pre-wrap;
  color: var(--ink-soft);
  line-height: 1.7;
}

.casais-programacao--home {
  margin-top: 1.25rem;
}

.casais-cta-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(74, 28, 42, 0.92), rgba(122, 48, 66, 0.88));
  color: #fff8f5;
  box-shadow: var(--shadow);
}

.casais-cta-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff8f5;
}

.casais-cta-card p {
  margin: 0.7rem auto 1.25rem;
  max-width: 36ch;
  color: rgba(255, 248, 245, 0.88);
}

.casais-form {
  max-width: 820px;
}

.casais-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.casais-pessoa {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(122, 48, 66, 0.05);
  border: 1px solid rgba(122, 48, 66, 0.12);
}

.casais-pessoa h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--sea-deep);
}

.casais-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.casais-home .section-head h2 {
  color: #4a1c2a;
}

@keyframes casais-glow {
  from { filter: saturate(1) brightness(1); }
  to { filter: saturate(1.08) brightness(1.05); }
}

@media (max-width: 800px) {
  .eventos-acessos,
  .casais-duo,
  .casais-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Pastores / Obreiros ---------- */

body.tema-pastores {
  --ink: #152028;
  --ink-soft: #455560;
  --paper: #f4f7f5;
  --sand: #d9e3dc;
  --gold: #3d7a5f;
  --gold-deep: #245a42;
  --sea: #245a42;
  --sea-deep: #16382a;
  --mist: rgba(244, 247, 245, 0.9);
  --line: rgba(22, 56, 42, 0.14);
  --shadow: 0 24px 60px rgba(22, 56, 42, 0.2);
  background:
    radial-gradient(1000px 520px at 12% -10%, rgba(61, 122, 95, 0.16), transparent 55%),
    radial-gradient(800px 420px at 100% 0%, rgba(22, 56, 42, 0.1), transparent 50%),
    linear-gradient(180deg, #f7faf8 0%, #eef4f0 45%, #e2ebe5 100%);
}

body.tema-pastores .site-header {
  background: rgba(16, 36, 28, 0.72);
}

.btn-pastores,
body.tema-pastores .btn-primary {
  background: linear-gradient(135deg, #3d7a5f, #245a42);
  border-color: transparent;
  color: #f4f7f5;
}

.btn-pastores:hover,
body.tema-pastores .btn-primary:hover {
  background: linear-gradient(135deg, #4a8f70, #2d6b4f);
  color: #f4f7f5;
}

.pastores-access-card {
  background:
    linear-gradient(160deg, rgba(61, 122, 95, 0.1), rgba(244, 247, 245, 0.92)),
    rgba(255, 255, 255, 0.55);
  border-color: rgba(36, 90, 66, 0.18);
}

.pastores-card {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(36, 90, 66, 0.14);
}

.pastores-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.pastores-tab {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(36, 90, 66, 0.18);
  background: rgba(255, 255, 255, 0.65);
  color: var(--sea-deep);
  text-decoration: none;
  font-weight: 500;
}

.pastores-tab.is-active,
.pastores-tab:hover {
  background: #245a42;
  color: #f4f7f5;
  border-color: #245a42;
}

.escala-table tr.is-hoje {
  background: rgba(46, 125, 50, 0.12);
}

.escala-table tr.is-proximo {
  background: rgba(61, 122, 95, 0.08);
}

.escala-table tr.is-domingo td {
  color: #8b2e2e;
  font-weight: 600;
}

.campanha-banner {
  padding: 1.75rem 1.5rem;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(22, 56, 42, 0.94), rgba(61, 122, 95, 0.88));
  color: #f4f7f5;
  box-shadow: var(--shadow);
  animation: rise-in 0.7s ease both;
}

.campanha-banner--home {
  text-align: center;
}

.campanha-banner .eyebrow {
  color: rgba(244, 247, 245, 0.75);
}

.campanha-banner h2 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: #f4f7f5;
}

.campanha-banner cite {
  display: block;
  margin-top: 0.55rem;
  color: rgba(244, 247, 245, 0.8);
  font-style: italic;
}

.obreiros-hoje {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 90, 66, 0.16);
  box-shadow: 0 12px 32px rgba(22, 56, 42, 0.08);
}

.obreiros-hoje.is-hoje {
  border-color: rgba(46, 125, 50, 0.4);
  box-shadow: 0 14px 36px rgba(46, 125, 50, 0.14);
}

.obreiros-hoje h2,
.obreiros-hoje h3 {
  margin: 0.25rem 0 1rem;
  font-family: var(--font-display);
  color: var(--sea-deep);
}

.obreiros-hoje-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.obreiros-hoje-grid span {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.obreiros-hoje-grid strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.05rem;
}

.pregador-destaque {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(36, 90, 66, 0.14);
}

.pregador-destaque--home {
  margin-top: 1rem;
}

.pregador-destaque img,
.pregador-thumb {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(61, 122, 95, 0.35);
}

.pregador-destaque strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--sea-deep);
}

.pregador-destaque span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.avisos-lista {
  display: grid;
  gap: 0.85rem;
}

.aviso-card {
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(36, 90, 66, 0.14);
}

.aviso-card.is-hoje {
  border-color: rgba(61, 122, 95, 0.45);
  background: rgba(61, 122, 95, 0.1);
}

.aviso-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.aviso-card span,
.aviso-card p {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
}

.aviso-inline {
  color: #245a42 !important;
  font-weight: 600;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.cal-head {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.35rem 0;
}

.cal-day {
  min-height: 92px;
  padding: 0.45rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(36, 90, 66, 0.1);
}

.cal-day.is-empty {
  background: transparent;
  border-color: transparent;
}

.cal-day.is-hoje {
  border-color: #3d7a5f;
  box-shadow: 0 0 0 2px rgba(61, 122, 95, 0.2);
}

.cal-day.has-escala {
  background: rgba(61, 122, 95, 0.08);
}

.cal-day.has-evento {
  background: rgba(184, 137, 58, 0.1);
}

.cal-num {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.cal-chip {
  display: block;
  margin-top: 0.2rem;
  padding: 0.15rem 0.35rem;
  border-radius: 8px;
  font-size: 0.68rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(18, 32, 51, 0.08);
}

.cal-chip--escala {
  background: rgba(61, 122, 95, 0.18);
  color: #16382a;
}

.cal-chip--evento {
  background: rgba(184, 137, 58, 0.2);
  color: #5c4314;
}

.event-list li.is-proximo {
  border-color: rgba(61, 122, 95, 0.35);
  background: rgba(61, 122, 95, 0.06);
}

@media (max-width: 800px) {
  .obreiros-hoje-grid {
    grid-template-columns: 1fr;
  }

  .cal-day {
    min-height: 72px;
  }

  .cal-chip {
    font-size: 0.58rem;
  }
}

/* ---------- Arraiá Gospel / Cantina ---------- */

body.tema-arraial {
  --ink: #1a2440;
  --ink-soft: #4a5570;
  --paper: #f7f3ea;
  --sand: #e6d7b8;
  --gold: #e0a030;
  --gold-deep: #c47a1a;
  --sea: #1e3a6e;
  --sea-deep: #12284f;
  --mist: rgba(247, 243, 234, 0.9);
  --line: rgba(30, 58, 110, 0.14);
  --shadow: 0 24px 60px rgba(18, 40, 79, 0.24);
  background:
    radial-gradient(900px 480px at 10% -8%, rgba(224, 160, 48, 0.18), transparent 55%),
    radial-gradient(800px 420px at 100% 0%, rgba(30, 58, 110, 0.16), transparent 50%),
    linear-gradient(180deg, #fbf7ef 0%, #f3ebe0 50%, #e8dcc8 100%);
}

body.tema-arraial .site-header {
  background: rgba(18, 40, 79, 0.78);
}

.btn-arraial,
body.tema-arraial .btn-primary {
  background: linear-gradient(135deg, #e0a030, #c47a1a);
  border-color: transparent;
  color: #1a2440;
}

.btn-arraial:hover,
body.tema-arraial .btn-primary:hover {
  background: linear-gradient(135deg, #f0b040, #d48920);
  color: #12284f;
}

.arraial-access-card {
  background:
    linear-gradient(160deg, rgba(30, 58, 110, 0.12), rgba(247, 243, 234, 0.95)),
    rgba(255, 255, 255, 0.55);
  border-color: rgba(196, 122, 26, 0.28);
}

.arraial-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(30, 58, 110, 0.14);
}

.arraial-login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 220px);
  gap: 1.25rem;
  align-items: start;
}

.arraial-lider-foto,
.arraial-card-foto {
  margin: 0;
  text-align: center;
}

.arraial-lider-foto img,
.arraial-card-foto img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
  border: 3px solid rgba(224, 160, 48, 0.55);
  box-shadow: 0 14px 30px rgba(18, 40, 79, 0.18);
}

.arraial-card-foto {
  margin-top: 1rem;
}

.midia-login-foto {
  margin-top: 1.25rem;
}

.midia-login-foto img {
  max-width: 140px;
  border-color: rgba(18, 40, 79, 0.35);
  object-position: center top;
}

.arraial-card-foto img {
  max-width: 120px;
  object-position: center top;
}

.arraial-card-foto figcaption,
.casais-card-foto figcaption {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sea-deep);
}

.casais-card-foto img,
.casais-lider-foto img {
  object-position: center top;
}

.arraial-lider-foto figcaption {
  margin-top: 0.55rem;
  font-weight: 600;
  color: var(--sea-deep);
}

.arraial-festa {
  position: relative;
  min-height: min(68vh, 560px);
  display: grid;
  place-items: center;
  padding: 3.5rem 1.5rem;
  overflow: hidden;
  isolation: isolate;
  color: #fff8ee;
}

.arraial-festa::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 25%, rgba(224, 160, 48, 0.35), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(196, 70, 50, 0.28), transparent 42%),
    linear-gradient(150deg, #12284f 0%, #1e3a6e 45%, #2a4f8a 100%);
  animation: arraial-glow 8s ease-in-out infinite alternate;
}

.arraial-festa-inner {
  width: min(100%, 720px);
  text-align: center;
  animation: rise-in 0.85s ease both;
}

.arraial-festa h1 {
  margin: 0.5rem auto 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.2rem);
  line-height: 1.35;
  max-width: 22ch;
  color: #fff8ee;
}

.arraial-convite {
  margin: 1rem 0 0;
  color: #f0b040;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.arraial-data {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff8ee;
}

.arraial-local,
.arraial-pedido {
  margin: 0.45rem 0 0;
  color: rgba(255, 248, 238, 0.88);
}

.arraial-precos {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.arraial-precos span {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(224, 160, 48, 0.2);
  border: 1px solid rgba(224, 160, 48, 0.45);
  font-weight: 600;
}

.arraial-flyer {
  margin: 0 auto;
  width: min(100%, 820px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: arraial-float 5s ease-in-out infinite;
}

.arraial-flyer img,
.arraial-flyer-preview {
  width: 100%;
  display: block;
}

.arraial-flyer-preview {
  margin-top: 0.75rem;
  max-width: 320px;
  border-radius: 16px;
  border: 1px solid rgba(30, 58, 110, 0.16);
}

.cantina-aviso,
.cantina-texto--home {
  padding: 1.4rem 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(196, 122, 26, 0.22);
}

.cantina-aviso h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  color: var(--sea-deep);
}

.cantina-texto {
  white-space: pre-wrap;
  color: var(--ink-soft);
  line-height: 1.7;
}

.arraial-cta-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(18, 40, 79, 0.94), rgba(30, 58, 110, 0.9));
  color: #fff8ee;
}

.arraial-cta-card h2 {
  margin: 0;
  font-family: var(--font-display);
  color: #fff8ee;
}

.arraial-cta-card p {
  color: rgba(255, 248, 238, 0.88);
}

.arraial-home-aviso {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 280px);
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(18, 40, 79, 0.95), rgba(30, 58, 110, 0.9));
  color: #fff8ee;
  box-shadow: var(--shadow);
  animation: rise-in 0.8s ease both;
}

.arraial-home-aviso.is-urgente .arraial-home-flyer {
  animation: arraial-float 3.2s ease-in-out infinite;
}

.arraial-home-copy h2 {
  margin: 0.3rem 0 0.55rem;
  font-family: var(--font-display);
  color: #fff8ee;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}

.arraial-home-copy p {
  margin: 0.3rem 0;
  color: rgba(255, 248, 238, 0.9);
}

.arraial-home-copy .eyebrow {
  color: rgba(240, 176, 64, 0.95);
}

.arraial-home-flyer {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  animation: arraial-float 4.5s ease-in-out infinite;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.arraial-home-flyer img {
  width: 100%;
  display: block;
}

.cantina-texto--home {
  margin: 0.85rem 0 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 248, 238, 0.2);
  color: #fff8ee;
}

.cantina-texto--home strong {
  color: #f0b040;
}

.home-casal {
  display: grid;
  grid-template-columns: minmax(180px, 300px) 1fr;
  gap: 1.5rem;
  align-items: center;
}

.home-casal-foto {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(13, 36, 54, 0.16);
}

.home-casal-foto img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.home-casal h2 {
  margin: 0.25rem 0 0.45rem;
  font-family: var(--font-display);
  color: var(--sea-deep);
}

.pastores-hero--com-foto {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 340px);
  gap: 1.4rem;
  align-items: end;
}

.pastores-hero-foto {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(22, 56, 42, 0.2);
  max-height: 420px;
}

.pastores-hero-foto img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@keyframes arraial-glow {
  from { filter: saturate(1) brightness(1); }
  to { filter: saturate(1.1) brightness(1.06); }
}

@keyframes arraial-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Mocidade (cor da camisa) ---------- */

body.tema-mocidade {
  --ink: #2a1f18;
  --ink-soft: #6b5648;
  --paper: #f7f2ec;
  --sand: #e4d5c6;
  --gold: #8b6954;
  --gold-deep: #5c4033;
  --sea: #5c4033;
  --sea-deep: #3d2a22;
  --mist: rgba(247, 242, 236, 0.92);
  --line: rgba(61, 42, 34, 0.14);
  --shadow: 0 24px 60px rgba(61, 42, 34, 0.22);
  background:
    radial-gradient(900px 480px at 12% -8%, rgba(139, 105, 84, 0.2), transparent 55%),
    radial-gradient(800px 420px at 100% 0%, rgba(92, 64, 51, 0.14), transparent 50%),
    linear-gradient(180deg, #faf6f1 0%, #f3ebe2 50%, #e8dccf 100%);
}

body.tema-mocidade .site-header {
  background: rgba(61, 42, 34, 0.82);
}

.btn-mocidade,
body.tema-mocidade .btn-primary {
  background: linear-gradient(135deg, #6b4a3a, #5c4033);
  border-color: transparent;
  color: #f7f2ec;
}

.btn-mocidade:hover,
body.tema-mocidade .btn-primary:hover {
  background: linear-gradient(135deg, #7a5644, #6b4a3a);
  color: #fff8f2;
}

.mocidade-access-card {
  background:
    linear-gradient(160deg, rgba(92, 64, 51, 0.12), rgba(247, 242, 236, 0.95)),
    rgba(255, 255, 255, 0.55);
  border-color: rgba(92, 64, 51, 0.22);
}

.mocidade-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(92, 64, 51, 0.14);
}

.mocidade-preview {
  width: 100%;
  max-width: 280px;
  margin-top: 0.75rem;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.mocidade-post-card,
.mocidade-home-post {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 300px);
  gap: 1.25rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(61, 42, 34, 0.94), rgba(92, 64, 51, 0.9));
  color: #f7f2ec;
  box-shadow: var(--shadow);
  animation: rise-in 0.75s ease both;
}

.mocidade-post-card {
  grid-template-columns: 1fr;
}

.mocidade-post-card h2,
.mocidade-home-copy h2 {
  margin: 0.35rem 0 0.65rem;
  font-family: var(--font-display);
  color: #f7f2ec;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.mocidade-post-card p,
.mocidade-home-copy p {
  color: rgba(247, 242, 236, 0.9);
}

.mocidade-post-card .eyebrow,
.mocidade-home-copy .eyebrow {
  color: rgba(232, 196, 160, 0.95);
}

.mocidade-post-card img,
.mocidade-home-foto {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
}

.mocidade-post-card img,
.mocidade-home-foto img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.mocidade-cta-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(61, 42, 34, 0.94), rgba(92, 64, 51, 0.9));
  color: #f7f2ec;
}

.mocidade-cta-card h2 {
  margin: 0;
  font-family: var(--font-display);
  color: #f7f2ec;
}

@media (max-width: 800px) {
  .arraial-login-layout,
  .arraial-home-aviso,
  .mocidade-home-post,
  .home-casal,
  .pastores-hero--com-foto {
    grid-template-columns: 1fr;
  }

  .arraial-lider-foto img,
  .home-casal-foto {
    max-width: 280px;
    margin-inline: auto;
  }

  .pastores-hero-foto {
    max-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
