/* ========================================
   Primeira Igreja Batista no Clima Bom II
   Cores do logo: verde peixe, laranja arco, azul fachada
   ======================================== */

:root {
  --green: #2d8a3e;
  --green-dark: #1f6b2c;
  --orange: #e87a1a;
  --orange-soft: #f5a14a;
  --blue: #1a6bb5;
  --blue-deep: #0f3d6b;
  --navy: #0c2340;
  --cream: #faf7f2;
  --sand: #f0e9df;
  --text: #1a1a1a;
  --text-soft: #4a4a4a;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(12, 35, 64, 0.12);
  --shadow-soft: 0 8px 30px rgba(12, 35, 64, 0.08);
  --radius: 18px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  /* Hover: curva suave nos dois sentidos + duração longa */
  --ease-hover: ease;
  --dur-hover: 0.85s;
  --dur-hover-fast: 0.85s;
  --transition: 0.85s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

video,
iframe,
embed,
object {
  max-width: 100%;
}

iframe {
  border: 0;
}

/* Evita filhos de grid/flex estourarem a tela */
section,
.container,
main,
footer,
header,
article,
.cultos__grid,
.ministerios__grid,
.videos-grid,
.galeria__grid,
.local__grid,
.sobre__grid,
.midia__links,
.cta__inner {
  max-width: 100%;
  min-width: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/*
  Reveal: fade suave. Nunca some o conteúdo se o JS falhar
  (fallback no final do CSS + no JS).
*/
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
}

/* Fallback: se JS não carregar, mostra tudo após um instante via CSS */
@supports not (opacity: 0) {
  .reveal {
    opacity: 1;
  }
}

/* ========== HOVER FLUIDO (PC) ==========
   Valores fixos em px (sem calc com variável — mais compatível).
   transition explícita em cada card (não depende de herança).
*/
.btn,
.logo,
.social-chip,
.culto-card,
.ministerio-card,
.info-card,
.midia-link,
.video-card,
.galeria__item,
.whatsapp-float,
.sobre__badge,
.sobre__highlights li,
.sobre__highlights .icon,
.sobre__text blockquote,
.info-card__icon,
.ministerio-card__media img,
.galeria__item img,
.galeria__caption,
.culto-card--featured::before,
.nav a:not(.btn),
.nav a:not(.btn)::after {
  transition:
    transform 0.85s ease,
    box-shadow 0.85s ease,
    background 0.85s ease,
    background-color 0.85s ease,
    border-color 0.85s ease,
    color 0.85s ease,
    opacity 0.85s ease,
    filter 0.85s ease !important;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.01em;
  transform: translateY(0);
}

.btn:hover {
  transform: translateY(-4px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--sm:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 10px 28px rgba(45, 138, 62, 0.28);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(232, 122, 26, 0.3);
}

.btn--primary:hover {
  background: #d06910;
  border-color: #d06910;
  box-shadow: 0 14px 36px rgba(232, 122, 26, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.4);
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 247, 242, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition:
    background 0.5s var(--ease-soft),
    box-shadow 0.5s var(--ease-soft),
    border-color 0.5s var(--ease-soft),
    height 0.4s var(--ease-out);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(12, 35, 64, 0.06);
  box-shadow: 0 8px 32px rgba(12, 35, 64, 0.07);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: scale(1);
}

.logo:hover {
  transform: scale(1.04);
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--dur-hover) var(--ease-hover);
}

.logo:hover img {
  box-shadow: 0 6px 20px rgba(45, 138, 62, 0.22);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.logo__text span {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (min-width: 1100px) {
  .nav {
    gap: 1.4rem;
  }
}

.nav a:not(.btn) {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-soft);
  position: relative;
  transition: color var(--dur-hover) var(--ease-hover);
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-hover) var(--ease-hover);
}

.nav a:not(.btn):hover {
  color: var(--navy);
}

.nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding: calc(var(--header-h) + 2.5rem) 0 5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.52) saturate(1.05);
  transform: scale(1.08) translateY(0);
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(12, 35, 64, 0.88) 0%, rgba(15, 61, 107, 0.58) 42%, rgba(45, 138, 62, 0.42) 100%),
    radial-gradient(ellipse at 50% 90%, rgba(232, 122, 26, 0.22), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

/* Staggered hero entrance */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 1s var(--ease-out) both;
  animation-delay: var(--d, 0s);
}

.hero__logo {
  width: 128px;
  height: 128px;
  margin: 0 auto 1.75rem;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 0.55rem;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    0 0 0 6px rgba(255, 255, 255, 0.12);
  animation: heroIn 1s var(--ease-out) both, logoGlow 4s ease-in-out 1.2s infinite;
  animation-delay: var(--d, 0s), 1.2s;
}

.hero__eyebrow {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.9rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 0.85rem;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.hero h1 em {
  font-style: italic;
  color: #f5d5a8;
  font-weight: 500;
  display: inline-block;
}

.hero__tagline {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.92;
  margin-bottom: 2.25rem;
  letter-spacing: 0.06em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoGlow {
  0%, 100% {
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.28),
      0 0 0 6px rgba(255, 255, 255, 0.12);
  }
  50% {
    box-shadow:
      0 16px 48px rgba(0, 0, 0, 0.32),
      0 0 0 10px rgba(255, 255, 255, 0.08),
      0 0 40px rgba(245, 161, 74, 0.2);
  }
}

/* ========== Sections ========== */
.section {
  padding: 6rem 0;
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.75rem;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__header--light h2 {
  color: var(--white);
}

.section__header--light .section__label {
  color: var(--orange-soft);
}

.section__header--light p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.65rem;
}

.section__line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  margin: 0 auto;
  border-radius: 2px;
  transform-origin: center;
}

.reveal.is-visible .section__line {
  animation: lineGrow 0.8s var(--ease-out) 0.25s both;
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* ========== Sobre ========== */
.sobre {
  background: var(--white);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.sobre__image {
  position: relative;
}

.sobre__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1);
  transition:
    transform var(--dur-hover) var(--ease-hover),
    box-shadow var(--dur-hover) var(--ease-hover);
}

.sobre__image:hover img {
  transform: scale(1.03);
  box-shadow: 0 22px 50px rgba(12, 35, 64, 0.16);
}

.sobre__badge {
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  transform: translateY(0);
  transition:
    transform var(--dur-hover) var(--ease-hover),
    box-shadow var(--dur-hover) var(--ease-hover);
}

.sobre__image:hover .sobre__badge {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(12, 35, 64, 0.22);
}

.sobre__badge strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.sobre__badge span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.sobre__text .lead {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.sobre__text p {
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.sobre__text blockquote {
  margin: 1.75rem 0;
  padding: 1.35rem 1.6rem;
  border-left: 4px solid var(--orange);
  background: linear-gradient(135deg, var(--sand) 0%, #f7f1e8 100%);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
  transform: translateX(0);
  transition:
    box-shadow var(--dur-hover) var(--ease-hover),
    transform var(--dur-hover) var(--ease-hover);
}

.sobre__text blockquote:hover {
  box-shadow: var(--shadow-soft);
  transform: translateX(8px);
}

.sobre__text blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.sobre__highlights {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.sobre__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.35rem 0;
  transform: translateX(0);
  transition: transform var(--dur-hover) var(--ease-hover);
}

.sobre__highlights li:hover {
  transform: translateX(8px);
}

.sobre__highlights .icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  border-radius: 12px;
  font-size: 1.1rem;
  transform: scale(1);
  transition:
    transform var(--dur-hover) var(--ease-hover),
    box-shadow var(--dur-hover) var(--ease-hover);
}

.sobre__highlights li:hover .icon {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(45, 138, 62, 0.28);
}

.sobre__highlights strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.sobre__highlights span {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ========== Cultos ========== */
.cultos {
  background:
    linear-gradient(160deg, var(--navy) 0%, var(--blue-deep) 50%, #134a2a 100%);
  position: relative;
  overflow: hidden;
}

.cultos::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(232, 122, 26, 0.15), transparent 70%);
  pointer-events: none;
}

.cultos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.culto-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.9rem 1.5rem;
  color: var(--white);
  backdrop-filter: blur(10px);
  transform: translateY(0);
}

.culto-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.culto-card--featured {
  background: linear-gradient(160deg, var(--orange) 0%, #c45a0a 100%);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(232, 122, 26, 0.35);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.culto-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.culto-card--featured > * {
  position: relative;
  z-index: 1;
}

.culto-card--featured:hover {
  box-shadow: 0 28px 56px rgba(232, 122, 26, 0.42);
  transform: translateY(-10px);
}

.culto-card--featured:hover::before {
  opacity: 1;
}

.culto-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.culto-card__day {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.4rem;
}

.culto-card__time {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.culto-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.culto-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* ========== Local ========== */
.local {
  background: var(--cream);
}

.local__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: stretch;
}

.local__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  background: var(--white);
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(12, 35, 64, 0.06);
  border: 1px solid rgba(12, 35, 64, 0.04);
  transform: translateY(0);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(12, 35, 64, 0.1);
  border-color: rgba(45, 138, 62, 0.15);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45, 138, 62, 0.12), rgba(26, 107, 181, 0.12));
  color: var(--green);
  border-radius: 12px;
  transform: scale(1);
  transition:
    transform var(--dur-hover) var(--ease-hover),
    background var(--dur-hover) var(--ease-hover),
    box-shadow var(--dur-hover) var(--ease-hover);
}

.info-card:hover .info-card__icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(45, 138, 62, 0.2), rgba(26, 107, 181, 0.18));
  box-shadow: 0 6px 16px rgba(45, 138, 62, 0.15);
}

.info-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.info-card p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.info-card a {
  color: var(--blue);
  font-weight: 600;
  transition: color var(--dur-hover-fast) var(--ease-soft);
}

.info-card a:hover {
  color: var(--green);
}

.local__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
  border: 4px solid var(--white);
  transition: box-shadow var(--dur-hover) var(--ease-hover);
}

.local__map:hover {
  box-shadow: 0 22px 52px rgba(12, 35, 64, 0.15);
}

.local__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
  transition: filter 0.9s var(--ease-soft);
}

.local__map:hover iframe {
  filter: grayscale(0) contrast(1);
}

/* ========== CTA ========== */
.cta {
  background:
    linear-gradient(120deg, var(--green-dark) 0%, var(--green) 40%, var(--blue) 100%);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
  padding: 5rem 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 45%);
  pointer-events: none;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta__text {
  flex: 1 1 320px;
}

.cta__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.cta__text p {
  opacity: 0.9;
  max-width: 480px;
  font-size: 1.05rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ========== Footer ========== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.footer__brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
}

.footer__brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--orange-soft);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.footer__links a {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--dur-hover-fast) var(--ease-soft), opacity var(--dur-hover-fast) var(--ease-soft);
}

.footer__links a:hover {
  color: var(--orange-soft);
}

.footer__copy {
  font-size: 0.85rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  width: 100%;
}

/* ========== WhatsApp float ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transform: translateY(0) scale(1) rotate(0deg);
  animation: floatIn 0.9s var(--ease-out) 1.2s both, pulse 3s ease 2.2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.08) rotate(-6deg);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
  background: #22c55e;
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0.12); }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ========== Responsive ========== */

/* Tablet */
@media (max-width: 1024px) {
  .nav {
    gap: 0.75rem;
  }

  .nav a:not(.btn) {
    font-size: 0.88rem;
  }

  .cultos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ministerios__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .galeria__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet / mobile landscape — menu hamburger */
@media (max-width: 960px) {
  :root {
    --header-h: 64px;
  }

  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .header__inner {
    gap: 0.5rem;
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0;
    z-index: 110;
  }

  /* Esconde nav desktop; vira drawer mobile */
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: none;
    height: calc(100dvh - var(--header-h));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0.75rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
    transform: translateX(100%);
    opacity: 1;
    pointer-events: none;
    visibility: hidden;
    transition:
      transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.4s;
    z-index: 105;
  }

  .nav.open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
    box-shadow: -8px 0 40px rgba(12, 35, 64, 0.12);
  }

  .nav a {
    width: 100%;
    text-align: left;
    padding: 1rem 0.75rem;
    font-size: 1.05rem !important;
    border-bottom: 1px solid rgba(12, 35, 64, 0.06);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav a:not(.btn)::after {
    display: none;
  }

  .nav a:last-child,
  .nav a.btn {
    border-bottom: none;
    margin-top: 1rem;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .logo__text strong {
    font-size: 0.98rem;
  }

  .logo__text span {
    font-size: 0.7rem;
  }

  .sobre__grid,
  .local__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .sobre__badge {
    right: 0.5rem;
    bottom: -0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .sobre__badge strong {
    font-size: 1rem;
  }

  .midia__links {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section__header {
    margin-bottom: 2.25rem;
  }

  .section__header h2 {
    font-size: clamp(1.65rem, 6vw, 2.2rem);
  }
}

/* Mobile */
@media (max-width: 720px) {
  body {
    font-size: 1rem;
  }

  .container {
    width: calc(100% - 1.25rem);
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(var(--header-h) + 1.5rem) 0 3rem;
    align-items: center;
  }

  .hero__logo {
    width: 88px;
    height: 88px;
    margin-bottom: 1.15rem;
  }

  .hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    line-height: 1.18;
    margin-bottom: 0.65rem;
  }

  .hero__tagline {
    font-size: 0.98rem;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    padding-inline: 0.25rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
  }

  .hero__actions .btn {
    width: 100%;
    padding: 0.95rem 1.25rem;
  }

  .hero__social {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
    margin-top: 1.25rem;
    gap: 0.6rem;
  }

  .social-chip {
    justify-content: center;
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  /* Sobre */
  .sobre__text .lead {
    font-size: 1.08rem;
  }

  .sobre__text blockquote {
    font-size: 1.1rem;
    padding: 1rem 1.15rem;
    margin: 1.25rem 0;
  }

  .sobre__highlights .icon {
    width: 40px;
    height: 40px;
  }

  /* Cultos */
  .cultos__grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .culto-card {
    padding: 1.4rem 1.25rem;
  }

  .culto-card__time {
    font-size: 1.7rem;
  }

  .culto-card:hover,
  .culto-card--featured:hover {
    transform: none;
  }

  /* Ministérios */
  .ministerios__grid {
    max-width: none;
    gap: 1.15rem;
  }

  .ministerio-card__body {
    padding: 1.15rem 1.2rem 1.35rem;
  }

  .ministerio-card__body h3 {
    font-size: 1.3rem;
  }

  .ministerio-card:hover {
    transform: none;
  }

  /* Mídia / vídeos */
  .midia-link {
    padding: 1rem 1.1rem;
  }

  .midia-link__icon {
    width: 46px;
    height: 46px;
  }

  .midia__videos-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }

  .videos-grid {
    gap: 1rem;
  }

  .video-card h4 {
    font-size: 0.95rem;
    padding: 0.8rem 0.95rem 0.15rem;
  }

  .video-card p {
    padding: 0 0.95rem 0.95rem;
    font-size: 0.85rem;
  }

  .video-card:hover {
    transform: none;
  }

  /* Galeria */
  .galeria__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }

  .galeria__item {
    border-radius: 10px;
  }

  .galeria__caption {
    opacity: 1;
    transform: none;
    font-size: 0.72rem;
    padding: 1.2rem 0.5rem 0.5rem;
  }

  .galeria__item:hover {
    transform: none;
  }

  /* Local */
  .local__map,
  .local__map iframe {
    min-height: 260px;
  }

  .info-card {
    padding: 1.1rem 1.15rem;
    gap: 0.85rem;
  }

  .info-card:hover {
    transform: none;
  }

  .info-card__icon {
    width: 42px;
    height: 42px;
  }

  .local__info .btn {
    width: 100%;
  }

  /* CTA */
  .cta {
    padding: 3rem 0;
  }

  .cta__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cta__text h2 {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }

  .cta__text p {
    margin-inline: auto;
    font-size: 0.98rem;
  }

  .cta__actions {
    flex-direction: column;
    width: 100%;
    gap: 0.7rem;
  }

  .cta__actions .btn {
    width: 100%;
  }

  /* Footer */
  .footer {
    padding: 2.25rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
  }

  .footer__brand {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    gap: 0.65rem 1rem;
  }

  .footer__links a {
    font-size: 0.85rem;
  }

  .footer__social {
    gap: 0.85rem;
  }

  /* WhatsApp flutuante */
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: 1rem;
  }

  /* Lightbox mobile */
  .lightbox {
    padding: 1rem;
  }

  .lightbox img {
    max-width: 100%;
    max-height: 72vh;
    border-radius: 8px;
  }

  .lightbox__close {
    top: 0.65rem;
    right: 0.65rem;
    width: 44px;
    height: 44px;
  }

  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }

  .lightbox__nav--prev { left: 0.35rem; }
  .lightbox__nav--next { right: 0.35rem; }

  .lightbox__caption {
    bottom: 0.75rem;
    font-size: 0.85rem;
    width: 90%;
  }

  /* Desativa lift de hover em touch */
  .btn:hover,
  .ministerio-card:hover,
  .midia-link:hover,
  .social-chip:hover {
    transform: none;
  }

  .btn:active {
    transform: scale(0.98);
  }
}

/* Telas bem estreitas */
@media (max-width: 400px) {
  .logo__text span {
    display: none;
  }

  .logo__text strong {
    font-size: 0.92rem;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .hero__logo {
    width: 80px;
    height: 80px;
  }

  .galeria__grid {
    gap: 0.4rem;
  }

  .culto-card__time {
    font-size: 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }
}

/* Landscape mobile */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 1rem) 0 2rem;
  }

  .hero__logo {
    width: 64px;
    height: 64px;
    margin-bottom: 0.75rem;
  }

  .nav {
    height: calc(100dvh - var(--header-h));
  }
}

/*
  NÃO zerar transitions de hover.
  (No Windows, “efeitos de animação” desligados ativa prefers-reduced-motion
   e isso deixava o site com hover seco/instantâneo.)
  Aqui só desligamos animações decorativas de fundo.
*/
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-anim {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1;
    transition: none;
  }

  .hero__bg img {
    height: 100%;
    transform: none !important;
    transition: none !important;
  }

  .cta {
    animation: none;
    background-size: auto;
  }

  .whatsapp-float {
    animation: none !important;
  }
}

/* ========== Hero social chips ========== */
.hero__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transform: translateY(0);
}

.social-chip:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.section__subtitle {
  margin-top: 0.85rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.section__header--light .section__subtitle {
  color: rgba(255, 255, 255, 0.85);
}

/* ========== Ministérios ========== */
.ministerios {
  background: var(--cream);
}

.ministerios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ministerio-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 35, 64, 0.05);
  transform: translateY(0);
}

.ministerio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(12, 35, 64, 0.14);
}

.ministerio-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.ministerio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform var(--dur-hover) var(--ease-hover);
}

.ministerio-card:hover .ministerio-card__media img {
  transform: scale(1.07);
}

.ministerio-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(12, 35, 64, 0.82);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.ministerio-card__body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.ministerio-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.ministerio-card__body p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ========== Mídia / YouTube ========== */
.midia {
  background: var(--white);
}

.midia__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.midia-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(12, 35, 64, 0.06);
  background: var(--cream);
  transform: translateY(0);
}

.midia-link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.midia-link__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.midia-link--yt .midia-link__icon {
  background: #ff0000;
}

.midia-link--ig .midia-link__icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.midia-link strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.midia-link small {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.midia__videos-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  text-align: center;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.video-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(12, 35, 64, 0.05);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0c2340;
}

.video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h4 {
  font-size: 1rem;
  color: var(--navy);
  padding: 0.9rem 1.1rem 0.2rem;
  font-weight: 600;
}

.video-card p {
  padding: 0 1.1rem 1.1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.midia__more {
  text-align: center;
  margin-top: 2rem;
}

/* ========== Galeria ========== */
.galeria {
  background: var(--cream);
}

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.galeria__item {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
  transform: translateY(0) scale(1);
}

.galeria__item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 40px rgba(12, 35, 64, 0.16);
  z-index: 1;
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition:
    transform var(--dur-hover) var(--ease-hover),
    filter var(--dur-hover) var(--ease-hover);
}

.galeria__item:hover img {
  transform: scale(1.08);
  filter: brightness(0.88);
}

.galeria__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.75rem 0.7rem;
  background: linear-gradient(transparent, rgba(12, 35, 64, 0.85));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--dur-hover) var(--ease-hover),
    transform var(--dur-hover) var(--ease-hover);
}

.galeria__item:hover .galeria__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Lightbox ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 16, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease-soft),
    visibility 0.4s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-open[hidden] {
  display: flex;
}

.lightbox img {
  max-width: min(960px, 92vw);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transform: scale(0.96);
  transition: transform 0.45s var(--ease-hover);
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.35s var(--ease-soft), transform 0.45s var(--ease-hover);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.06);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.35s var(--ease-soft), transform 0.45s var(--ease-hover);
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

.lightbox__caption {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  max-width: 90%;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer__social a {
  font-weight: 600;
  color: var(--orange-soft);
  transition: color var(--dur-hover-fast) var(--ease-soft), opacity var(--dur-hover-fast);
}

.footer__social a:hover {
  color: var(--white);
}


/* =========================================================
   MOBILE FIX DEFINITIVO (no final = maior prioridade)
   Garante site 100% usável, sem corte horizontal/vertical
   ========================================================= */

@media (max-width: 960px) {
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  /* Conteúdo sempre visível no mobile */
  .reveal,
  .reveal.is-visible,
  .hero-anim {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .header {
    width: 100%;
    max-width: 100vw;
  }

  .header__inner {
    width: 100%;
    max-width: 100%;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .logo {
    min-width: 0;
    max-width: calc(100% - 52px);
  }

  .logo__text {
    min-width: 0;
    overflow: hidden;
  }

  .logo__text strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  /* Menu mobile em tela cheia */
  .menu-toggle {
    display: flex !important;
  }

  .nav {
    position: fixed !important;
    top: var(--header-h) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: calc(100vh - var(--header-h)) !important;
    height: calc(100dvh - var(--header-h)) !important;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    background: #fff !important;
    padding: 1rem 1.25rem 2rem !important;
    gap: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    transform: translate3d(100%, 0, 0) !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 200 !important;
  }

  .nav.open {
    transform: translate3d(0, 0, 0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav a {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0.95rem 0.5rem !important;
    font-size: 1.05rem !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  }

  .nav a.btn,
  .nav a.btn--sm {
    margin-top: 1rem !important;
    justify-content: center !important;
    border-bottom: none !important;
    border-radius: 999px !important;
  }

  /* Hero */
  .hero {
    width: 100% !important;
    max-width: 100vw !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    padding: calc(var(--header-h) + 1.25rem) 0 2.5rem !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .hero__content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .hero__bg,
  .hero__bg img,
  .hero__overlay {
    max-width: 100vw !important;
  }

  .hero__bg img {
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    object-fit: cover !important;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7.5vw, 2.2rem) !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }

  .hero__tagline,
  .hero__eyebrow {
    max-width: 100% !important;
    padding-inline: 0.25rem !important;
  }

  .hero__actions,
  .hero__social {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero__actions .btn,
  .social-chip,
  .cta__actions .btn,
  .local__info .btn,
  .midia__more .btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Grids sempre 1 coluna no mobile (exceto galeria) */
  .sobre__grid,
  .local__grid,
  .cultos__grid,
  .ministerios__grid,
  .videos-grid,
  .midia__links,
  .cta__inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 1rem !important;
  }

  .cta__inner {
    display: flex !important;
    flex-direction: column !important;
  }

  .ministerios__grid {
    max-width: 100% !important;
    margin: 0 !important;
  }

  .culto-card,
  .ministerio-card,
  .info-card,
  .video-card,
  .midia-link,
  .galeria__item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  .culto-card__time {
    word-break: break-word;
  }

  /* Galeria 2 colunas sem estourar */
  .galeria__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .galeria__item {
    aspect-ratio: 1 !important;
    overflow: hidden !important;
  }

  .galeria__item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: none !important;
  }

  /* Vídeos YouTube responsivos */
  .video-card__frame {
    position: relative !important;
    width: 100% !important;
    padding-bottom: 56.25% !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .video-card__frame iframe {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
  }

  /* Mapa */
  .local__map {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 240px !important;
    border-width: 2px !important;
  }

  .local__map iframe {
    width: 100% !important;
    height: 240px !important;
    min-height: 240px !important;
  }

  /* Sobre badge não sai da tela */
  .sobre__image {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    border-radius: var(--radius);
  }

  .sobre__image img {
    width: 100% !important;
    max-width: 100% !important;
  }

  .sobre__badge {
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: auto !important;
    max-width: calc(100% - 1rem) !important;
  }

  .sobre__text,
  .sobre__text p,
  .sobre__text .lead,
  .sobre__text blockquote {
    max-width: 100% !important;
    overflow-wrap: anywhere;
    word-wrap: break-word;
  }

  /* Seções */
  .section {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    padding: 2.75rem 0 !important;
    box-sizing: border-box !important;
  }

  .section__header {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 0 !important;
    margin-bottom: 1.75rem !important;
  }

  .section__header h2 {
    font-size: clamp(1.5rem, 6.5vw, 2rem) !important;
    overflow-wrap: break-word;
  }

  .section__subtitle {
    font-size: 0.95rem !important;
    padding-inline: 0.25rem;
  }

  /* Pseudo decorativo do cultos não corta layout */
  .cultos::before {
    display: none !important;
  }

  .cultos,
  .midia,
  .ministerios,
  .galeria,
  .local,
  .sobre,
  .cta,
  .footer {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* Footer */
  .footer__inner {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 0 !important;
  }

  .footer__links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem 0.85rem !important;
  }

  /* WhatsApp não tapa conteúdo */
  .whatsapp-float {
    right: 0.85rem !important;
    bottom: max(0.85rem, env(safe-area-inset-bottom)) !important;
    width: 52px !important;
    height: 52px !important;
    z-index: 90 !important;
  }

  /* Lightbox */
  .lightbox {
    padding: 0.75rem !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .lightbox img {
    max-width: min(100%, 100vw - 1.5rem) !important;
    max-height: 70vh !important;
  }

  /* Botões sem overflow de padding */
  .btn {
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .hero__logo {
    width: 76px !important;
    height: 76px !important;
  }

  .hero h1 {
    font-size: 1.55rem !important;
  }

  .logo__text span {
    display: none !important;
  }

  .galeria__caption {
    font-size: 0.68rem !important;
  }

  .culto-card {
    padding: 1.2rem 1rem !important;
  }
}
