/* ============================================================
   Igreja de Cristo – Orizona, GO
   Arquivo: style.css
   ============================================================ */

/* ─── VARIÁVEIS ─── */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --mid: #333333;
  --light: #e8e3da;
  --white: #f5f2ed;
  --gold: #c8a96e;
  --gold-light: #e2c98a;
  --gold-dim: rgba(200, 169, 110, 0.15);
  --blue: #2563c8;
  --text-muted: #888880;
  --border: rgba(200, 169, 110, 0.18);
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--light);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── SELEÇÃO ─── */
::selection { background: var(--gold); color: var(--black); }


/* ============================================================
   NAVEGAÇÃO
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 4rem;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.55rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: background 0.3s, transform 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: var(--transition);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.65) 60%, rgba(10,10,10,1) 100%),
    url('fotos/igreja.jpg') center / cover no-repeat;
}

/* Grain overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(232, 227, 218, 0.72);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 1.8s 1.5s ease-in-out infinite;
}


/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(232, 227, 218, 0.35);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}


/* ============================================================
   SEÇÕES — ELEMENTOS COMUNS
   ============================================================ */
section { padding: 7rem 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-text {
  color: rgba(232, 227, 218, 0.65);
  font-size: 1rem;
  font-weight: 300;
  max-width: 580px;
  line-height: 1.9;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}


/* ============================================================
   SOBRE
   ============================================================ */
.about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  filter: brightness(0.88) contrast(1.05);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.8rem;
  border-radius: 2px;
  text-align: center;
}

.about-img-badge .year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
}

.about-img-badge .label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color 0.3s;
}

.value-card:hover { border-color: var(--gold); }

.value-icon { font-size: 1.4rem; margin-bottom: 0.6rem; }

.value-card h4 {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============================================================
   HORÁRIOS DE CULTO
   ============================================================ */
.services { background: var(--black); }

.services-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.times-grid { display: grid; gap: 1rem; }

.time-card {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.time-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.time-card:hover {
  border-color: rgba(200, 169, 110, 0.4);
  transform: translateX(4px);
}

.time-card:hover::before { transform: scaleY(1); }

.time-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  min-width: 80px;
  line-height: 1;
}

.time-info h4 { font-size: 0.9rem; font-weight: 500; color: var(--white); }
.time-info p  { font-size: 0.82rem; color: var(--text-muted); }

.time-tag {
  margin-left: auto;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .time-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

  .time-tag {
    margin-left: 0;
  }

  .time-day {
    min-width: auto;
  }
}


/* ============================================================
   MINISTÉRIOS
   ============================================================ */
.ministries { background: var(--dark); }

.min-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
}

.min-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.min-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.7);
  transition: var(--transition);
}

.min-card:hover img {
  filter: brightness(0.6) saturate(0.9);
  transform: scale(1.05);
}

.min-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%);
}

.min-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }

.min-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.min-card p {
  font-size: 0.8rem;
  color: rgba(232, 227, 218, 0.65);
  line-height: 1.5;
}

.min-card .min-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.8rem;
  transition: gap 0.3s;
  text-decoration: none;
}

.min-card:hover .min-link { gap: 0.7rem; }


/* ============================================================
   SERMÕES
   ============================================================ */
.sermons {
  background: #0b0b0b;
}

.sermons-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.sermon-grid.sermon-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.sermon-card {
  background: #171717;
  border: 1px solid rgba(201, 168, 106, 0.12);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: none;
  transform: none;
  opacity: 1;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.sermon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 106, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.sermon-media {
  position: relative;
}

.sermon-thumb,
.sermon-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.sermon-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.16) 40%,
    rgba(0, 0, 0, 0.32) 100%
  );
  pointer-events: none;
}

.sermon-thumb img,
.sermon-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.sermon-video iframe {
  aspect-ratio: 16 / 9;
}

.sermon-video[hidden] {
  display: none;
}

.sermon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(183, 145, 71, 0.92);
  color: #fff;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.25s ease, background 0.25s ease;
}

.sermon-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #c7a05c;
}

.sermon-body {
  padding: 1.2rem 1.2rem 1.35rem;
  background: #171717;
}

.sermon-series {
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b99252;
}

.sermon-body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  line-height: 1.3;
  color: #f3ede4;
  font-weight: 500;
}

.sermon-meta {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(243, 237, 228, 0.65);
}

.sermon-card.is-active {
  border-color: rgba(201, 168, 106, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

@media (max-width: 980px) {
  .sermons-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sermon-grid.sermon-carousel {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   PARTICIPAR
   ============================================================ */
.involved { background: var(--dark); }

.involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.involved-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.involved-card:hover {
  border-color: var(--gold);
  background: var(--dark3);
  transform: translateY(-4px);
}

.involved-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 0.8rem;
}

.involved-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.involved-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}


/* ============================================================
   CONTATO
   ============================================================ */
.contact { background: var(--black); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-item h4 {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.info-item p { font-size: 0.85rem; color: var(--text-muted); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.prayer-note {
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.82rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

#formSuccess {
  display: none;
  margin-top: 1rem;
  padding: 1.2rem;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.88rem;
  text-align: center;
}


/* ============================================================
   MAPA
   ============================================================ */
.map-section {
  background: var(--dark);
  padding: 0;
}

.map-wrap { position: relative; }

.map-frame {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(0.4) contrast(1.1);
  display: block;
}

.map-card {
  position: absolute;
  top: 2rem; left: 2rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  min-width: 240px;
}

.map-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.map-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.map-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  margin-top: 0.8rem;
  letter-spacing: 0.06em;
  transition: gap 0.3s;
}

.map-card a:hover { gap: 0.7rem; }


/* ============================================================
   BANNER COM CITAÇÃO
   ============================================================ */
.quote-banner {
  background: var(--gold);
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.quote-banner::before {
  content: '"';
  position: absolute;
  top: -2rem; left: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.quote-banner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.35;
}

.quote-banner cite {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 1rem;
  color: rgba(0, 0, 0, 0.55);
}


/* ============================================================
   RODAPÉ
   ============================================================ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand .logo span { color: var(--gold); }

.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 260px;
}

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 38px; height: 38px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  font-size: 0.83rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollDrop {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  30%, 70%  { opacity: 1; transform: scaleY(1); }
}

/* Reveal ao rolar */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 75vw; max-width: 300px;
    background: var(--dark);
    padding: 5rem 2rem 2rem;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.4s;
  }

  .nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  .nav-links li { border-bottom: 1px solid var(--border); }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  .hamburger { display: flex; z-index: 300; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-badge { right: 0; bottom: -1rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }

  .services-layout { grid-template-columns: 1fr; gap: 3rem; }

  .min-grid { grid-template-columns: 1fr 1fr; }

  .sermon-grid { grid-template-columns: 1fr 1fr; }
  .sermons-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .involved-grid { grid-template-columns: 1fr 1fr; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }

  .map-card { position: static; margin: 1.5rem; width: calc(100% - 3rem); }
  .map-frame { height: 300px; }
}

@media (max-width: 600px) {
  section { padding: 5rem 0; }
  .min-grid { grid-template-columns: 1fr; }
  .sermon-grid { grid-template-columns: 1fr; }
  .involved-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MINISTRY PAGES — shared components
   Used by: children.html, youth.html, couples.html,
            women.html, men.html, missions.html, cells.html
   ============================================================ */

/* ── Ministry Hero (full-height cinematic banner) ── */
.min-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.min-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.min-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.30) 0%,
    rgba(10,10,10,0.62) 55%,
    rgba(10,10,10,1.00) 100%
  );
}

/* grain */
.min-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.55;
  pointer-events: none;
}

/* top accent line */
.min-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  opacity: 0.55;
  z-index: 3;
}

.min-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 2rem;
}

.min-hero-content .hero-eyebrow {
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.min-hero-content .hero-title {
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.min-hero-content .hero-subtitle {
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.min-hero-content .hero-btns {
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

/* ── Ministry About (two-col intro) ── */
.min-about { background: var(--dark); }

.min-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.min-about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  filter: brightness(0.85) contrast(1.05);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  display: block;
}

/* ── Ministry Activities grid ── */
.min-activities { background: var(--black); }

.min-act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.min-act-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.min-act-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s;
}

.min-act-card:hover {
  border-color: rgba(200,169,110,0.4);
  transform: translateY(-4px);
}

.min-act-card:hover::before { transform: scaleY(1); }

.min-act-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  display: block;
}

.min-act-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.min-act-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.min-act-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}

.min-act-meta::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ── Ministry Gallery ── */
.min-gallery { background: var(--dark); }

.min-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
  margin-top: 3rem;
}

.min-gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--dark2);
  border-radius: 2px;
  cursor: pointer;
}

.min-gallery-item.tall { grid-row: span 2; }

.min-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) saturate(0.75);
  transition: filter 0.4s, transform 0.5s;
}

.min-gallery-item:hover img {
  filter: brightness(0.9) saturate(1.05);
  transform: scale(1.06);
}

.min-gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s;
}

.min-gallery-item:hover .min-gallery-caption { opacity: 1; }

.min-gallery-caption span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

/* ── Ministry CTA (join section) ── */
.min-cta { background: var(--black); }

.min-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.min-cta-text .section-text { margin-bottom: 2rem; }

.min-contact-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.2rem;
  transition: border-color 0.3s;
}

.min-contact-card:hover { border-color: rgba(200,169,110,0.4); }

.min-contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.min-contact-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.min-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* WhatsApp button reused from worship.css pattern but inline here */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  background: #25d366;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-wa:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.28);
}

/* ── Breadcrumb nav ── */
.min-breadcrumb {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232,227,218,0.45);
  z-index: 4;
  white-space: nowrap;
}

.min-breadcrumb a {
  color: rgba(232,227,218,0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.min-breadcrumb a:hover { color: var(--gold); }

.min-breadcrumb span { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .min-about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .min-act-grid   { grid-template-columns: 1fr 1fr; }
  .min-cta-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .min-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .min-gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 600px) {
  .min-act-grid  { grid-template-columns: 1fr; }
  .min-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
}

/* =========================================
   SOCIAL VIDEOS
========================================= */

.social-videos {
  background: #0b0b0b;
}

.social-videos-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

/* GRID */
.social-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
  justify-items: center;
}

/* CARD */
.social-video-card {
  width: 100%;
  max-width: 340px;

  background: #171717;

  border: 1px solid rgba(201, 168, 106, 0.12);
  border-radius: 4px;

  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.social-video-card:hover {
  transform: translateY(-4px);

  border-color: rgba(201, 168, 106, 0.28);

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

/* MEDIA */
.social-video-media {
  position: relative;
}

.social-video-thumb {
  position: relative;

  width: 100%;

  /* vídeo vertical estilo celular */
  aspect-ratio: 10 / 16;

  background: #000;

  overflow: hidden;
}

.social-video-thumb::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.12) 45%,
    rgba(0, 0, 0, 0.25) 100%
  );

  pointer-events: none;
}

/* VIDEO */
.social-video-thumb video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  border: 0;

  background: #000;
}

/* BODY */
.social-video-body {
  padding: 1.2rem 1.2rem 1.35rem;

  background: #171717;
}

.social-video-category {
  margin-bottom: 0.85rem;

  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #b99252;
}

.social-video-body h3 {
  margin: 0 0 0.55rem;

  font-size: 1.02rem;
  line-height: 1.3;

  color: #f3ede4;
  font-weight: 500;
}

.social-video-meta {
  margin: 0;

  font-size: 0.82rem;

  color: rgba(243, 237, 228, 0.65);
}

.social-video-card.is-active {
  border-color: rgba(201, 168, 106, 0.28);

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

/* RESPONSIVO */
@media (max-width: 980px) {

  .social-videos-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-video-grid {
    grid-template-columns: 1fr;
  }

  .social-video-card {
    max-width: 320px;
  }

}

