/* ============================================================
   IGREJA CAMINHAR — style.css
   Tema sob medida: identificidade em preto e branco.
   Suporte a tema claro e escuro via [data-theme]. Mobile-first.
   ============================================================ */

/* ---------- Design tokens — TEMA ESCURO (padrão) ---------- */
:root {
  --bg: #0a0a0c;
  --bg-2: #0f0f12;
  --surface: #151519;
  --surface-2: #1b1b20;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #f2f2f4;
  --muted: #a6a8ae;
  --muted-2: #7a7c84;

  --accent: #e9eaec;
  --accent-2: #ffffff;
  --accent-dark: #b9bac0;

  --grad-accent: linear-gradient(135deg, #e9eaec 0%, #b9bac0 100%);
  --grad-text: linear-gradient(120deg, #ffffff, #d9dade 55%, #a4a5ab);

  --on-accent: #0c0c0e;

  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.4);
  --shadow-accent: 0 12px 32px rgba(233, 234, 236, 0.18);

  --glow-1: rgba(255, 255, 255, 0.05);
  --glow-2: rgba(255, 255, 255, 0.03);

  --tint-gradient: var(--tint-gradient);

  --nav-bg: rgba(9, 9, 11, 0.94);
  --nav-bg-solid: rgba(8, 8, 10, 0.92);
  --nav-panel-bg: rgba(10, 10, 12, 0.98);
  --topbar-gradient: linear-gradient(90deg, #0d0d10, #151519);

  --glass-soft: rgba(20, 20, 24, 0.65);
  --glass-solid: rgba(20, 20, 24, 0.95);
  --glass-2: rgba(10, 10, 12, 0.82);

  --faint: rgba(255, 255, 255, 0.05);
  --faint-strong: rgba(255, 255, 255, 0.09);

  --footer-gradient: linear-gradient(180deg, #0a0a0c, #060607);

  --hero-text: #f4f4f6;
  --hero-muted: #b6b8be;
  --grad-text-hero: linear-gradient(120deg, #ffffff, #d9dade 55%, #a4a5ab);

  --chip-soft-bg: rgba(156, 159, 168, 0.14);
  --chip-soft-border: rgba(156, 159, 168, 0.2);
  --chip-soft-color: var(--chip-soft-color);

  --icon-soft-bg: var(--icon-soft-bg);
  --icon-soft-border: rgba(156, 159, 168, 0.25);
  --icon-soft-color: var(--chip-soft-color);

  --ghost-num: rgba(255, 255, 255, 0.07);
  --ghost-num-hover: rgba(255, 255, 255, 0.3);

  --image-overlay-dark: rgba(8, 8, 11, 1);

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --container: 1180px;
  --header-h: 88px;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Design tokens — TEMA CLARO ---------- */
:root[data-theme="light"] {
  --bg: #f4f4f6;
  --bg-2: #ececef;
  --surface: #ffffff;
  --surface-2: #f7f7f9;
  --line: rgba(18, 18, 22, 0.1);
  --line-strong: rgba(18, 18, 22, 0.18);

  --text: #1b1b1f;
  --muted: #5c5d66;
  --muted-2: #8b8c93;

  --accent: #1b1b1f;
  --accent-2: #000000;
  --accent-dark: #4b4c54;

  --grad-accent: linear-gradient(135deg, #1b1b1f 0%, #4b4c54 100%);
  --grad-text: linear-gradient(120deg, #000000, #41424a 55%, #6f7077);

  --on-accent: #ffffff;

  --shadow-lg: 0 24px 60px rgba(24, 25, 34, 0.14);
  --shadow-md: 0 14px 40px rgba(24, 25, 34, 0.12);
  --shadow-accent: 0 12px 32px rgba(24, 25, 34, 0.18);

  --glow-1: rgba(18, 18, 22, 0.045);
  --glow-2: rgba(18, 18, 22, 0.03);

  --tint-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(228, 228, 233, 0.65));

  --nav-bg: rgba(250, 250, 252, 0.94);
  --nav-bg-solid: rgba(248, 248, 250, 0.94);
  --nav-panel-bg: rgba(250, 250, 252, 0.98);
  --topbar-gradient: linear-gradient(90deg, #e9e9ec, #f7f7f9);

  --glass-soft: rgba(255, 255, 255, 0.75);
  --glass-solid: rgba(255, 255, 255, 0.96);
  --glass-2: rgba(255, 255, 255, 0.85);

  --faint: rgba(18, 18, 22, 0.05);
  --faint-strong: rgba(18, 18, 22, 0.09);

  --footer-gradient: linear-gradient(180deg, #e9e9ec, #dfdfe3);

  --hero-text: #f0f0f2;
  --hero-muted: #a9abb1;
  --grad-text-hero: linear-gradient(120deg, #ffffff, #d9dade 55%, #a4a5ab);

  --chip-soft-bg: rgba(18, 18, 22, 0.06);
  --chip-soft-border: rgba(18, 18, 22, 0.12);
  --chip-soft-color: #3f4047;

  --icon-soft-bg: linear-gradient(135deg, #ffffff, #e7e7ec);
  --icon-soft-border: rgba(18, 18, 22, 0.1);
  --icon-soft-color: #45464d;

  --ghost-num: rgba(0, 0, 0, 0.08);
  --ghost-num-hover: rgba(0, 0, 0, 0.35);

  --image-overlay-dark: rgba(250, 250, 252, 1);
}

/* Transição suave ao trocar de tema */
body {
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.32vw + 0.87rem, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  padding-top: 88px;
  background-image:
    radial-gradient(1200px 700px at 80% -10%, var(--glow-1), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, var(--glow-2), transparent 55%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

::selection {
  background: rgba(233, 234, 236, 0.85);
  color: var(--on-accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eyebrow--hero {
  color: var(--accent-2);
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}

.btn--primary {
  background: var(--grad-accent);
  color: var(--on-accent);
  box-shadow: 0 12px 34px rgba(233, 234, 236, 0.28);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(233, 234, 236, 0.4);
}

.btn--ghost {
  background: var(--faint);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 234, 236, 0.6);
  color: var(--accent-2);
  background: rgba(233, 234, 236, 0.07);
}

.btn--block {
  width: 100%;
}

.btn:active {
  transform: translateY(-1px);
}

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chip--soft {
  background: var(--chip-soft-bg);
  color: var(--chip-soft-color);
  border: 1px solid var(--chip-soft-border);
}

.chip--gold {
  background: rgba(233, 234, 236, 0.14);
  color: var(--accent-2);
  border: 1px solid rgba(233, 234, 236, 0.3);
}

/* ---------- Seções ---------- */
.section {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.section--tinted {
  background: var(--tint-gradient);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--left {
  margin-inline: 0;
  text-align: left;
}

.section-title {
  font-size: clamp(1.7rem, 2.4vw + 1rem, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-text {
  color: var(--muted);
  font-size: clamp(1rem, 0.3vw + 0.93rem, 1.15rem);
  margin-bottom: 0.25rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 5vw, 3.25rem);
}

/* ---------- Animações (Intersection Observer) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}

[data-reveal="zoom"] {
  transform: scale(0.93) translateY(10px);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 66;
}

.top-bar {
  background: var(--topbar-gradient);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 44px;
  transition: height 0.35s var(--ease), opacity 0.35s var(--ease);
}

.top-bar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar__info {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 1.75rem);
}

.top-bar__info a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}

.top-bar__info a:hover {
  color: var(--accent-2);
}

.top-bar__info i {
  color: var(--accent);
  font-size: 0.85rem;
}

.top-bar__services {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted-2);
}

.top-bar__services i {
  color: var(--accent);
}

.site-header.is-scrolled .top-bar {
  height: 0;
  opacity: 0;
}

/* ----- Navbar ----- */
.navbar {
  background: var(--nav-bg);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled .navbar {
  background: var(--nav-bg-solid);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.navbar__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand__logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 16px color-mix(in srgb, var(--accent) 35%, transparent));
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand__text small {
  font-size: 0.68rem;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.3rem, 1.4vw, 1.1rem);
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.45rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.05rem;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link--active::after {
  transform: scaleX(1);
}

.nav-link--active {
  color: var(--accent-2);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  padding: 0.62rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--on-accent);
  background: var(--grad-accent);
  box-shadow: 0 8px 22px rgba(233, 234, 236, 0.3);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(233, 234, 236, 0.42);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  align-items: center;
  border-radius: var(--radius-sm);
  background: var(--faint);
  border: 1px solid var(--line-strong);
}

.nav-toggle__bar {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Alternador de tema (claro / escuro) ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: var(--faint);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--faint-strong);
}

.theme-toggle__icon {
  width: 20px;
  height: 20px;
}

.theme-toggle__icon--sun {
  display: none;
}

.theme-toggle__icon--moon {
  display: block;
}

:root[data-theme="light"] .theme-toggle__icon--sun {
  display: block;
}

:root[data-theme="light"] .theme-toggle__icon--moon {
  display: none;
}

/* ---------- Logotipos por tema ---------- */
.brand__logo--dark {
  display: block;
}

.brand__logo--light {
  display: none;
}

:root[data-theme="light"] .brand__logo--dark {
  display: none;
}

:root[data-theme="light"] .brand__logo--light {
  display: block;
}

.footer-logo--dark {
  display: inline-block;
}

.footer-logo--light {
  display: none;
}

:root[data-theme="light"] .footer-logo--dark {
  display: none;
}

:root[data-theme="light"] .footer-logo--light {
  display: inline-block;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  padding-block: clamp(3.5rem, 8vh, 6rem) clamp(4rem, 9vh, 6rem);
  isolation: isolate;
  overflow: hidden;
}

/* Herói permanece escuro e dramático nos dois temas */
.hero .eyebrow--hero,
.hero .hero__title {
  color: var(--hero-text);
}

.hero .text-gradient {
  background: var(--grad-text-hero);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero .hero__text {
  color: var(--hero-muted);
}

.hero .btn--ghost {
  color: var(--hero-text);
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--faint-strong);
}

.hero .hero__scroll {
  color: var(--hero-muted);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

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

.hero__photo {
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 8, 11, 0.94) 8%, rgba(8, 8, 11, 0.62) 55%, rgba(8, 8, 11, 0.35) 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.hero__glow--one {
  width: 520px;
  height: 520px;
  right: -120px;
  top: -100px;
  background: rgba(212, 214, 221, 0.5);
}

.hero__glow--two {
  width: 460px;
  height: 460px;
  left: -160px;
  bottom: -160px;
  background: rgba(233, 234, 236, 0.22);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 4.5rem);
}

.hero__title {
  font-size: clamp(2.1rem, 2.6vw + 1.3rem, 4.2rem);
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.hero__text {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.2rem);
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__next-service {
  background: var(--glass-soft);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
}

.next-service__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.9rem;
}

.hero__next-service strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.9rem;
}

.next-service__time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(233, 234, 236, 0.12);
  border: 1px solid rgba(233, 234, 236, 0.25);
  color: var(--accent-2);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.hero__scroll i {
  animation: bounce 2s infinite;
}

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

/* ============================================================
   STATS
   ============================================================ */
.stats {
  border-block: 1px solid var(--line);
  background: var(--tint-gradient);
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.8rem, 4vw, 2.8rem) 1rem;
  background: var(--bg);
}

.stat i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.6vw + 1rem, 2.6rem);
  font-weight: 800;
  color: var(--text);
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.about-section__media {
  position: relative;
}

.about-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.about-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.about-card__badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--glass-2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--text);
}

.about-card__badge i {
  font-size: 1.5rem;
  color: var(--accent);
}

.value-list {
  display: grid;
  gap: 0.85rem;
  margin: clamp(1.6rem, 3vw, 2.2rem) 0;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--muted);
}

.value-list i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(233, 234, 236, 0.12);
  color: var(--accent);
  font-size: 0.95rem;
}

/* ============================================================
   SERVICE / MINISTRY / EVENT GRIDS
   ============================================================ */
.services-grid,
.ministries-grid,
.events-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.2rem, 2.6vw, 1.8rem);
  margin-top: clamp(2.4rem, 5vw, 3.5rem);
}

.ministries-grid--all,
.services-grid--all,
.events-grid--all {
  grid-template-columns: minmax(0, 1fr);
}

/* ----- Service card ----- */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 234, 236, 0.35);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(233, 234, 236, 0.16), rgba(233, 234, 236, 0.05));
  border: 1px solid rgba(233, 234, 236, 0.28);
  color: var(--accent-2);
  font-size: 1.5rem;
}

.service-card__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.service-card__time {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
}

.service-card__name {
  font-size: 1.3rem;
  font-weight: 700;
}

.service-card__desc {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ----- Ministry card ----- */
.ministry-card {
  padding: clamp(1.6rem, 2.5vw, 2.1rem);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.ministry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(156, 159, 168, 0.35);
  box-shadow: var(--shadow-md);
}

.ministry-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  background: var(--icon-soft-bg);
  border: 1px solid var(--icon-soft-border);
  color: var(--chip-soft-color);
  font-size: 1.4rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.ministry-card:hover .ministry-card__icon {
  background: var(--grad-accent);
  color: var(--on-accent);
  border-color: transparent;
}

.ministry-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.ministry-card__desc {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 1.2rem;
}

.ministry-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-2);
  transition: gap 0.25s var(--ease);
}

.ministry-card__link:hover {
  gap: 0.8rem;
}

/* ----- Event card ----- */
.event-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 234, 236, 0.35);
  box-shadow: var(--shadow-md);
}

.event-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.event-card:hover .event-card__media img {
  transform: scale(1.06);
}

.event-card__date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--glass-2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.event-card__date strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.event-card__date small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
}

.event-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem 1.5rem 1.6rem;
}

.event-card__name {
  font-size: 1.3rem;
  font-weight: 700;
}

.event-card__desc {
  color: var(--muted);
  font-size: 0.92rem;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-top: 0.4rem;
  color: var(--muted-2);
  font-size: 0.85rem;
}

.event-card__meta i {
  color: var(--accent);
  margin-right: 0.3rem;
}

/* ----- Past event (eventos) ----- */
.past-events {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.2rem, 2.6vw, 1.8rem);
  margin-top: clamp(2.4rem, 5vw, 3.5rem);
}

.past-event {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.past-event:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 234, 236, 0.35);
}

.past-event img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.past-event__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.6rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.past-event__body h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

.past-event__body p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7rem);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(233, 234, 236, 0.16), transparent 60%),
    radial-gradient(700px 320px at 80% 100%, rgba(212, 214, 221, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
  border-block: 1px solid var(--line);
}

.cta-banner__title {
  font-size: clamp(2rem, 2.6vw + 1.1rem, 3.6rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.cta-banner__text {
  max-width: 560px;
  margin: 0 auto 2.4rem;
  color: var(--muted);
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.18rem);
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ============================================================
   PAGE HERO (subpáginas)
   ============================================================ */
.page-hero {
  position: relative;
  padding-block: clamp(3.2rem, 7vw, 5.5rem) clamp(2.6rem, 6vw, 4.5rem);
  background:
    radial-gradient(600px 320px at 85% 10%, rgba(212, 214, 221, 0.2), transparent 60%),
    radial-gradient(500px 260px at 10% 90%, rgba(233, 234, 236, 0.1), transparent 60%);
  border-bottom: 1px solid var(--line);
}

.page-hero--short {
  padding-block: clamp(2.4rem, 5vw, 4rem);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--muted-2);
  margin-bottom: 1.6rem;
}

.breadcrumb a {
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent-2);
}

.breadcrumb i {
  font-size: 0.6rem;
}

.page-hero__title {
  font-size: clamp(2rem, 2.4vw + 1.1rem, 3.4rem);
  font-weight: 800;
  max-width: 760px;
}

.page-hero__text {
  max-width: 620px;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: clamp(1rem, 0.35vw + 0.92rem, 1.18rem);
}

/* ============================================================
   SOBRE (detalhe)
   ============================================================ */
.about-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.prose p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  max-width: 62ch;
}

.prose em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

.prose blockquote {
  position: relative;
  margin: 2rem 0 0;
  padding: 1.6rem 1.8rem 1.6rem 3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(233, 234, 236, 0.09), rgba(233, 234, 236, 0.03));
  border: 1px solid rgba(233, 234, 236, 0.22);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.5;
}

.prose blockquote i {
  position: absolute;
  left: 1.1rem;
  top: 1.5rem;
  color: var(--accent);
}

.prose blockquote cite {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--accent-2);
  font-style: normal;
  font-weight: 500;
}

.about-detail__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

/* ----- Value cards ----- */
.value-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.2rem, 2.4vw, 1.6rem);
  margin-top: clamp(2.4rem, 5vw, 3.5rem);
}

.value-card {
  position: relative;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 234, 236, 0.35);
}

.value-card__num {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ghost-num);
  transition: color 0.3s;
}

.value-card:hover .value-card__num {
  color: var(--ghost-num-hover);
}

.value-card i {
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

/* ----- CTA inline ----- */
.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
}

.cta-inline__title {
  font-size: clamp(1.5rem, 1.2vw + 1.1rem, 2.1rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.cta-inline p {
  color: var(--muted);
}

.cta-inline__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ============================================================
   STEPS (ministérios)
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.2rem, 2.6vw, 1.8rem);
  margin-top: clamp(2.4rem, 5vw, 3.5rem);
}

.step {
  position: relative;
  text-align: center;
  padding: clamp(2rem, 3vw, 2.6rem) 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 234, 236, 0.35);
}

.step__num {
  position: absolute;
  top: 1rem;
  left: 1.3rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent);
}

.step i {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--accent-2);
  background: linear-gradient(135deg, rgba(233, 234, 236, 0.15), rgba(233, 234, 236, 0.04));
  border: 1px solid rgba(233, 234, 236, 0.25);
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.step p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ============================================================
   CULTOS
   ============================================================ */
.cultos-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.visit-list {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.visit-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.visit-list i {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(233, 234, 236, 0.12);
  color: var(--accent);
  font-size: 1.1rem;
  border: 1px solid rgba(233, 234, 236, 0.2);
}

.visit-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.visit-list p {
  color: var(--muted);
  font-size: 0.93rem;
}

.location-card {
  padding: 1.2rem 1.2rem 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.location-card img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
}

.location-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.location-card p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

/* ============================================================
   MENSAGENS
   ============================================================ */
.message-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.chip-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  transition: all 0.25s var(--ease);
}

.chip-btn:hover {
  color: var(--accent-2);
  border-color: rgba(233, 234, 236, 0.5);
}

.chip-btn.is-active {
  color: var(--on-accent);
  background: var(--grad-accent);
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

.message-list {
  display: grid;
  gap: 1.2rem;
  max-width: 860px;
  margin-inline: auto;
}

.message-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.3rem;
  align-items: center;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.message-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 234, 236, 0.3);
  box-shadow: var(--shadow-md);
}

.message-card__media {
  position: relative;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: var(--radius-md);
  background: var(--icon-soft-bg);
  border: 1px solid var(--icon-soft-border);
}

.message-card__icon {
  font-size: 1.9rem;
  color: var(--chip-soft-color);
}

.message-card__play {
  position: absolute;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--on-accent);
  box-shadow: var(--shadow-accent);
  transition: transform 0.25s var(--ease);
}

.message-card__play:hover {
  transform: scale(1.12);
}

.message-card__play i {
  font-size: 0.85rem;
  margin-left: 2px;
}

.message-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1.1rem;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  color: var(--muted-2);
}

.message-card__meta i {
  color: var(--accent);
  margin-right: 0.3rem;
}

.message-card__title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.message-card__info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.message-card__info i {
  color: var(--accent);
  margin-right: 0.3rem;
}

.message-card__verse {
  position: relative;
  margin-top: 1.2rem;
  padding: 1rem 1.15rem 0.9rem 2.9rem;
  border-radius: var(--radius-sm);
  background: var(--chip-soft-bg);
  border: 1px solid var(--chip-soft-border);
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.message-card__verse > i {
  position: absolute;
  top: 1rem;
  left: 1.1rem;
  font-size: 1rem;
  color: var(--accent);
  opacity: 0.7;
}

.message-card__verse-text {
  display: block;
}

.message-card__verse-ref {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.message-card.is-hidden {
  display: none;
}

/* ============================================================
   VERSÍCULO DO DIA (API bíblica)
   ============================================================ */
.verse-of-day {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: linear-gradient(120deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.verse-of-day__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 1.6rem;
  color: var(--on-accent);
  background: var(--grad-accent);
  box-shadow: var(--shadow-accent);
}

.verse-of-day__body {
  flex: 1;
  min-width: 0;
}

.verse-of-day__text {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.4rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--text);
}

.verse-of-day__ref {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  font-style: normal;
}

.verse-of-day__translation {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--muted-2);
}

/* ============================================================
   CONTATO
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-info__card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.contact-info__card:hover {
  border-color: rgba(233, 234, 236, 0.35);
  transform: translateY(-3px);
}

.contact-info__card > i {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(233, 234, 236, 0.12);
  color: var(--accent);
  font-size: 1.15rem;
  border: 1px solid rgba(233, 234, 236, 0.2);
}

.contact-info__card strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-bottom: 0.15rem;
}

.contact-info__card a,
.contact-info__card span {
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

.contact-info__card a:hover {
  color: var(--accent-2);
}

.mini-map {
  margin-top: 0.4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}

.mini-map img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.mini-map__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(8, 8, 11, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
}

.mini-map:hover .mini-map__overlay {
  opacity: 1;
}

/* ----- Form ----- */
.contact-form-wrap {
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.8rem;
}

.form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.15rem;
}

.form__field {
  display: grid;
  gap: 0.45rem;
}

.form__field label {
  font-size: 0.88rem;
  font-weight: 600;
}

.form__req {
  color: var(--accent);
}

.form__field input,
.form__field textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: var(--faint);
  color: var(--text);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  resize: vertical;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--muted-2);
}

.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: rgba(233, 234, 236, 0.6);
  box-shadow: 0 0 0 4px rgba(233, 234, 236, 0.12);
  background: var(--faint-strong);
}

.form__input--error {
  border-color: #ff6b6b !important;
}

.form__error {
  font-size: 0.8rem;
  color: #ff8787;
}

.form__note {
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted-2);
}

.form__note i {
  color: var(--accent);
}

/* ----- FAQ ----- */
.faq-list {
  max-width: 780px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] {
  border-color: rgba(233, 234, 236, 0.4);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash-wrap {
  position: fixed;
  top: calc(var(--header-h) + 1rem);
  right: 1.2rem;
  z-index: 80;
  display: grid;
  gap: 0.6rem;
  max-width: min(92vw, 420px);
}

.flash {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: var(--glass-solid);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(233, 234, 236, 0.45);
  box-shadow: var(--shadow-md);
  font-size: 0.92rem;
  animation: slideIn 0.45s var(--ease) both;
}

.flash i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--footer-gradient);
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.footer-col p {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-col p:not(:last-child) {
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--faint);
  border: 1px solid var(--line-strong);
  color: var(--muted);
  transition: all 0.25s var(--ease);
}

.footer-social a:hover {
  background: var(--grad-accent);
  color: var(--on-accent);
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-links,
.footer-services {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--accent-2);
  padding-left: 4px;
}

.footer-services li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.6rem;
  font-size: 0.9rem;
}

.footer-service-day {
  grid-row: span 2;
  align-self: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-weight: 700;
  background: rgba(233, 234, 236, 0.1);
  border: 1px solid rgba(233, 234, 236, 0.2);
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
}

.footer-services li strong {
  color: var(--text);
  font-weight: 600;
}

.footer-service-time {
  color: var(--muted-2);
  font-size: 0.85rem;
}

.footer-address i {
  color: var(--accent);
  width: 1.4rem;
}

.footer-map {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.25s var(--ease);
}

.footer-map:hover {
  gap: 0.8rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted-2);
}

.footer-bottom i {
  color: var(--accent);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.6rem);
  bottom: clamp(1rem, 2.5vw, 1.6rem);
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease);
}

.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
}

.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2.4s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

/* ============================================================
   404
   ============================================================ */
.notfound {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-block: 4rem;
  background:
    radial-gradient(600px 300px at 50% 15%, rgba(233, 234, 236, 0.08), transparent 60%);
}

.notfound__code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}

.notfound__title {
  font-size: clamp(1.6rem, 2vw + 0.8rem, 2.6rem);
  font-weight: 800;
  max-width: 640px;
  margin: 0.5rem auto 1rem;
}

.notfound__text {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.notfound__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ---------------------------------------------------------------
   SPLASH DE ABERTURA (estilo app)
   --------------------------------------------------------------- */
.app-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  background: radial-gradient(120% 120% at 50% 28%, #0f0f11 0%, #060607 60%, #000000 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

@media (display-mode: standalone) {
  .app-splash {
    display: grid;
  }
}

.app-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.app-splash__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  padding: 0 1.5rem;
}

.app-splash__logo {
  width: 132px;
  height: 132px;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.8rem;
  animation: splash-pop 0.6s var(--ease);
}

.app-splash__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.app-splash__tagline {
  color: #9a9ba1;
  font-size: 0.9rem;
}

@keyframes splash-pop {
  0% {
    transform: scale(0.82) translateY(10px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-splash__logo {
    animation: none;
  }
}