/* =============================================
   MISSÃO CRISTÃ PLENA — STYLESHEET
   Design: Austero, Elegante, Espiritual
   Paleta: #7d796d / #000000 / #ffffff
   ============================================= */

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

:root {
  --stone:       #7d796d;
  --stone-light: #a09c94;
  --stone-dark:  #5a5751;
  --stone-pale:  #f0ede8;
  --stone-mid:   #e8e4de;
  --black:       #0a0a0a;
  --black-soft:  #111111;
  --white:       #ffffff;
  --white-off:   #f9f7f4;
  --gold:        #c4a96a;
  --gold-light:  #d4b97a;

  --font-display: 'Roboto', sans-serif;
  --font-serif:   'Roboto', sans-serif;
  --font-body:    'Roboto', sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.22);

  --radius: 4px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === TYPOGRAPHY === */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--black);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header--light .section-title,
.section-header--light .section-eyebrow { color: var(--white); }
.section-header--light .section-eyebrow { color: var(--gold-light); opacity: 0.85; }

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--stone);
  margin: 20px auto 0;
}

.section-header--light .section-divider { background: var(--gold); }

.section-desc {
  margin-top: 20px;
  color: var(--stone);
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--stone);
  color: var(--white);
  border-color: var(--stone);
}
.btn--primary:hover {
  background: var(--stone-dark);
  border-color: var(--stone-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--stone);
  border-color: var(--stone);
}
.btn--outline:hover {
  background: var(--stone);
  color: var(--white);
  transform: translateY(-2px);
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.navbar__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo { display: flex; align-items: center; }
.navbar__logo-img { height: 48px; width: auto; object-fit: contain; }
.navbar__logo-dark { display: none; }

.navbar__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar__link:hover { color: var(--white); }
.navbar__link:hover::after { transform: scaleX(1); }

.navbar__link--cta {
  background: var(--stone);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
}
.navbar__link--cta::after { display: none; }
.navbar__link--cta:hover { background: var(--stone-dark); color: var(--white); }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(125,121,109,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(196,169,106,0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10,10,10,0.72) 0%, rgba(26,25,22,0.68) 50%, rgba(10,10,10,0.75) 100%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 780px;
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  font-style: normal;
  color: rgba(255,255,255,0.72);
  margin-bottom: 44px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite 1.5s;
  z-index: 3;
}

.hero__scroll-hint i { font-size: 0.9rem; }

/* === VERSE BANNER === */
.verse-banner {
  background: var(--stone-pale);
  padding: 56px 24px;
  border-top: 1px solid var(--stone-mid);
  border-bottom: 1px solid var(--stone-mid);
}

.verse-banner__container { max-width: 800px; margin: 0 auto; text-align: center; }

.verse-banner blockquote { position: relative; }

.verse-banner .fa-quote-left {
  color: var(--stone);
  font-size: 1.5rem;
  opacity: 0.35;
  margin-bottom: 16px;
}

.verse-banner p {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 16px;
}

.verse-banner cite {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

/* === ABOUT === */
.about {
  padding: 100px 0;
  background: var(--white-off);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about__text p {
  color: #444;
  margin-bottom: 20px;
  font-size: 0.93rem;
  line-height: 1.8;
}

.about__lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem) !important;
  font-style: normal;
  color: var(--black) !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
}

.about__text .btn { margin-top: 8px; }

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-mid);
  transition: var(--transition);
}

.pillar:hover {
  border-color: var(--stone);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}

.pillar__icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--stone-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-dark);
  font-size: 1rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

.pillar p { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* === MVV === */
.mvv {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.mvv__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black) 0%, #1e1c19 50%, var(--black-soft) 100%);
}

.mvv > .container { position: relative; z-index: 1; }

.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mvv__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
}

.mvv__card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,169,106,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.mvv__card-icon {
  width: 52px; height: 52px;
  background: rgba(125,121,109,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.mvv__card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 14px;
}

.mvv__card p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

.mvv__values-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mvv__values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.mvv__values-list .fa-check { color: var(--gold); font-size: 0.75rem; }

/* === MINISTÉRIOS === */
.ministerios {
  padding: 100px 0;
  background: var(--white-off);
}

.ministerios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ministerio-card {
  background: var(--white);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ministerio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--stone), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}

.ministerio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.ministerio-card:hover::before { transform: scaleX(1); }

.ministerio-card__icon {
  width: 64px; height: 64px;
  background: var(--stone-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--stone-dark);
  transition: var(--transition);
}

.ministerio-card:hover .ministerio-card__icon {
  background: var(--stone);
  color: var(--white);
}

.ministerio-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  color: var(--black);
}

.ministerio-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* === PASTORES === */
.pastores {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.pastores__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #15130f 0%, #1e1b16 40%, #0f0e0c 100%);
}

.pastores > .container { position: relative; z-index: 1; }

.pastores__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.pastores__photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pastores__photo-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--stone), var(--gold), var(--stone-dark));
  border-radius: var(--radius-lg);
  z-index: -1;
}

.pastores__photo-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  filter: grayscale(15%);
  transition: var(--transition);
}

.pastores__photo-frame:hover img { filter: grayscale(0%); }

.pastores__bio h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 16px;
}

.pastores__bio-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  color: var(--gold-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.pastores__bio p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.pastores__bio strong { color: var(--gold-light); }

.pastores__quote {
  margin: 28px 0 32px;
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: rgba(196,169,106,0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.pastores__quote .fa-quote-left {
  color: var(--gold);
  opacity: 0.5;
  font-size: 1rem;
  margin-bottom: 10px;
}

.pastores__quote p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.8) !important;
  margin: 0 !important;
}

/* === AGENDA === */
.agenda {
  padding: 100px 0;
  background: var(--white);
}

.agenda__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.agenda__card {
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white-off);
}

.agenda__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--stone);
}

.agenda__day {
  background: var(--stone);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.agenda__info {
  padding: 24px 20px;
}

.agenda__info h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.4;
}

.agenda__info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--stone);
  margin-bottom: 6px;
}

.agenda__info .fas { font-size: 0.75rem; color: var(--stone-light); }

.agenda__cta {
  text-align: center;
  padding: 40px;
  background: var(--stone-pale);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-mid);
}

.agenda__cta p {
  font-size: 1.05rem;
  color: var(--stone-dark);
  margin-bottom: 20px;
}

/* === CTA FINAL === */
.cta-final {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(125,121,109,0.25) 0%, transparent 70%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1916 100%);
}

.cta-final > .container { position: relative; z-index: 1; }

.cta-final__content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-final__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-final__content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 40px;
}

.cta-final__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: #070706;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding: 72px 0 60px;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.footer__logo { height: 56px; width: auto; margin-bottom: 20px; }

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 14px;
}

.footer__socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__socials a:hover {
  background: var(--stone);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

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

.footer__contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.footer__contact a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer__contact a:hover { color: var(--gold); }
.footer__contact .fas,
.footer__contact .fab { color: var(--stone); font-size: 0.85rem; min-width: 14px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer__bottom .fa-heart { color: var(--stone); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite 2s;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === KEYFRAMES === */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
}

/* === PARTICLES === */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.08; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .mvv__grid { grid-template-columns: 1fr; gap: 20px; }
  .ministerios__grid { grid-template-columns: repeat(2, 1fr); }
  .agenda__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar__nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255,255,255,0.08);
  }

  .navbar__nav.open { right: 0; }

  .navbar__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .navbar__link {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .navbar__link--cta {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .navbar__hamburger { display: flex; z-index: 1100; }

  .navbar__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .navbar__hamburger.active span:nth-child(2) { opacity: 0; }
  .navbar__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .pastores__grid { grid-template-columns: 1fr; gap: 40px; }
  .pastores__photo-frame img { height: 360px; }
  .ministerios__grid { grid-template-columns: 1fr; }
  .agenda__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-final__actions { flex-direction: column; align-items: center; }
  .hero__actions { flex-direction: column; align-items: center; }
  .mvv__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section-header { margin-bottom: 36px; }
  .about, .ministerios, .agenda, .mvv, .pastores, .cta-final { padding: 72px 0; }
}

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

/* === LOCALIZAÇÃO === */
.localizacao {
  padding: 100px 0;
  background: var(--white);
}

.localizacao__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: stretch;
  min-height: 420px;
}

.localizacao__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.localizacao__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.localizacao__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--stone-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-dark);
  font-size: 1rem;
}

.localizacao__item h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}

.localizacao__item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

.localizacao__mapa {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--stone-mid);
  min-height: 420px;
}

.localizacao__mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}

@media (max-width: 768px) {
  .localizacao__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .localizacao__mapa {
    min-height: 300px;
  }
  .localizacao__mapa iframe {
    min-height: 300px;
  }
}

