:root {
  --azul-profundo: #1b2a4a;
  --azul-mais-escuro: #0e1830;
  --azul-medio: #2c4570;
  --dourado: #c9a24b;
  --dourado-claro: #ecc879;
  --dourado-pale: #f5e6c3;
  --terracota: #c1613f;
  --terracota-escuro: #a24e30;
  --creme: #fbf3e6;
  --creme-forte: #fdf3d9;
  --card: #fffdf9;
  --texto: #2b2419;
  --texto-suave: #766a56;
  --sombra: rgba(43, 30, 10, 0.12);
  --sombra-forte: rgba(14, 24, 48, 0.4);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--texto);
  background: var(--creme);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 600;
}

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

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Header — sempre com fundo sólido, nunca transparente sobre fundo claro
   (bug anterior: dourado sobre creme no topo da página ficava ilegível). */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--azul-mais-escuro);
  box-shadow: 0 2px 14px rgba(14, 24, 48, 0.25);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 22px var(--sombra-forte);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
  color: var(--dourado-claro);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--dourado-claro);
  text-decoration: none;
  white-space: nowrap;
}

.brand-icon {
  color: var(--dourado);
  margin-right: 8px;
  display: inline-block;
  animation: pulseGlow 3s ease-in-out infinite;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  color: var(--dourado-claro);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding-bottom: 3px;
  white-space: nowrap;
}

.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--dourado);
  transition: width 0.25s ease;
}

.nav a:not(.nav-cta):hover::after,
.nav a:not(.nav-cta).active::after { width: 100%; }

.nav a.nav-cta {
  background: var(--terracota);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: var(--terracota-escuro);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dourado-claro);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(ellipse 900px 700px at 30% 20%, var(--azul-medio) 0%, var(--azul-profundo) 45%, var(--azul-mais-escuro) 100%);
  color: var(--creme);
  padding: 70px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1.5px 1.5px at 15% 25%, #ffffff 100%, transparent 0),
    radial-gradient(1.5px 1.5px at 35% 65%, #ffffff 100%, transparent 0),
    radial-gradient(1px 1px at 55% 15%, #ffffff 100%, transparent 0),
    radial-gradient(1.5px 1.5px at 70% 45%, #ffffff 100%, transparent 0),
    radial-gradient(1px 1px at 85% 75%, #ffffff 100%, transparent 0),
    radial-gradient(1.5px 1.5px at 25% 85%, #ffffff 100%, transparent 0),
    radial-gradient(1px 1px at 95% 30%, #ffffff 100%, transparent 0),
    radial-gradient(1.5px 1.5px at 5% 55%, #ffffff 100%, transparent 0);
  opacity: 0.55;
  animation: twinkle 5s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.3; }
  100% { opacity: 0.75; }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 30px;
}

.eyebrow {
  display: inline-block;
  color: var(--dourado-claro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(201, 162, 75, 0.5);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--dourado-claro);
  text-shadow: 0 0 30px rgba(236, 200, 121, 0.3);
}

.hero-text p {
  max-width: 460px;
  color: #d9d9e8;
  font-size: 1.08rem;
  margin: 0 0 28px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  margin: 20px 0 0;
  font-size: 0.8rem;
  color: #9aa1c2;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  padding: 6px;
  background: linear-gradient(155deg, var(--dourado-claro), var(--dourado) 45%, #8a6a2c 100%);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  animation: floatSlow 6s ease-in-out infinite;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -30px;
  z-index: -1;
  background: radial-gradient(circle, rgba(236, 200, 121, 0.35) 0%, rgba(236, 200, 121, 0) 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero-image-frame img {
  width: 100%;
  display: block;
  border-radius: 15px;
  aspect-ratio: 1024 / 559;
  object-fit: cover;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(236, 200, 121, 0.6);
  border-radius: 14px;
}

.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--dourado-claro);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 6px; }
}

/* Dividers */
.divider {
  text-align: center;
  color: var(--dourado);
  margin: 10px 0 30px;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ddc79a);
}

.divider::before { left: 0; }
.divider::after { right: 0; transform: scaleX(-1); }

.divider span { font-size: 1.1rem; }

/* Sections */
.section {
  padding: 24px 0 56px;
}

.section h2 {
  color: var(--azul-profundo);
  margin-bottom: 8px;
  font-size: 2rem;
  text-align: center;
}

.section-lead {
  color: var(--texto-suave);
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 1.02rem;
  text-align: center;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* Cards & Forms */
.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--card);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px var(--sombra);
  border: 1px solid rgba(201, 162, 75, 0.18);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 14px 38px var(--sombra);
}

.form .field { margin-bottom: 18px; }

.form label {
  display: block;
  font-size: 0.9rem;
  color: var(--texto-suave);
  margin-bottom: 6px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="number"],
.form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e2d3ae;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--creme);
  color: var(--texto);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--dourado);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.25);
}

.form textarea { resize: vertical; }

.char-count {
  display: block;
  text-align: right;
  font-size: 0.78rem;
  color: var(--texto-suave);
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border: none;
  border-radius: 8px;
  padding: 13px 24px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-block { width: 100%; }

.btn-primary {
  background: var(--azul-profundo);
  color: var(--dourado-claro);
  box-shadow: 0 6px 18px rgba(27, 42, 74, 0.3);
}

.btn-primary:hover {
  background: var(--azul-mais-escuro);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(27, 42, 74, 0.35);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-ghost {
  background: transparent;
  color: var(--dourado-claro);
  border: 1px solid rgba(236, 200, 121, 0.6);
}

.btn-ghost:hover {
  background: rgba(236, 200, 121, 0.12);
  transform: translateY(-2px);
}

.btn-doacao {
  background: var(--terracota);
  color: #fff;
  box-shadow: 0 6px 18px rgba(193, 97, 63, 0.3);
}

.btn-doacao:hover {
  background: var(--terracota-escuro);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(193, 97, 63, 0.35);
}

.btn-secondary {
  background: var(--dourado);
  color: var(--azul-mais-escuro);
}

.btn-secondary:hover { background: var(--dourado-claro); }

.btn-flame {
  display: inline-block;
  animation: flickerEmoji 1.8s ease-in-out infinite;
}

@keyframes flickerEmoji {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.12) rotate(-4deg); }
}

.form-msg {
  margin: 10px 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-msg.erro { color: #a5312d; }
.form-msg.sucesso { color: #2d6a4f; }

/* Oração */
.oracao-card {
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fdf6e6 100%);
  max-width: 680px;
  margin: 0 auto;
}

.oracao-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.oracao-nav {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--dourado);
  background: #fff;
  color: var(--azul-profundo);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease;
}

.oracao-nav:hover {
  background: var(--dourado-pale);
  transform: scale(1.06);
}

.oracao-slide {
  flex: 1;
  min-width: 0;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  animation: oracaoFade 0.35s ease;
}

@keyframes oracaoFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.oracao-badge {
  display: inline-block;
  align-self: center;
  background: var(--terracota);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.oracao-badge.hidden { display: none; }

.oracao-titulo {
  color: var(--azul-profundo);
  font-size: 1.15rem;
  margin: 0 0 10px;
}

.oracao-texto {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--azul-profundo);
  font-style: italic;
  font-weight: 400;
  margin: 0;
  line-height: 1.7;
}

.oracao-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 22px;
}

.oracao-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #e2d3ae;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.oracao-dots button.ativo {
  background: var(--terracota);
  transform: scale(1.3);
}

.oracao-cta { margin: 0 auto; }

@media (max-width: 560px) {
  .oracao-nav { width: 34px; height: 34px; font-size: 1.2rem; }
  .oracao-texto { font-size: 1.05rem; }
  .oracao-slide { height: 340px; }
}

/* Valores sugeridos */
.valores-sugeridos {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid var(--terracota);
  background: #fff;
  color: var(--terracota-escuro);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.chip.selecionado,
.chip:hover {
  background: var(--terracota);
  color: #fff;
  transform: translateY(-1px);
}

/* Velas */
.velas-painel {
  background: linear-gradient(180deg, #14213d 0%, #0e1830 100%);
  border-radius: 16px;
  padding: 26px;
  min-height: 260px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.35);
}

.velas-contador {
  color: var(--dourado-claro);
  font-size: 0.95rem;
  margin: 0 0 16px;
  text-align: center;
}

.velas-contador strong {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--creme-forte);
}

.velas-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 28px 16px;
}

.vela-item {
  text-align: center;
  font-size: 0.75rem;
  color: #cfd4e6;
}

.vela {
  width: 34px;
  margin: 0 auto 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vela-flame-wrap {
  position: relative;
  width: 20px;
  height: 38px;
  margin-bottom: -3px;
  z-index: 1;
}

.vela-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 178, 82, 0.55) 0%, rgba(255, 150, 60, 0.16) 45%, transparent 72%);
  filter: blur(1px);
  animation: velaGlowPulse 2.6s ease-in-out infinite;
  animation-delay: var(--vela-delay, 0s);
  pointer-events: none;
  z-index: 0;
}

.vela-chama {
  position: absolute;
  inset: 0;
  transform-origin: 50% 100%;
  animation: flicker 2.4s ease-in-out infinite;
  animation-delay: var(--vela-delay, 0s);
  z-index: 1;
  filter: drop-shadow(0 0 9px rgba(255, 154, 66, 0.65));
}

.vela-chama svg {
  width: 100%;
  height: 100%;
  display: block;
}

.vela-pavio {
  width: 2px;
  height: 8px;
  margin-bottom: -2px;
  background: #3a2f22;
  border-radius: 1px;
  z-index: 1;
}

.vela-corpo {
  position: relative;
  width: 34px;
  height: 78px;
  background: linear-gradient(180deg, #fffdf6 0%, #f3e6c4 100%);
  border-radius: 3px 3px 6px 6px;
  border: 1px solid #e2d3a8;
  box-shadow: inset -4px 0 8px rgba(0, 0, 0, 0.1), inset 3px 0 6px rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.vela-corpo::before {
  /* fio de cera escorrido */
  content: '';
  position: absolute;
  top: 6px;
  left: 8px;
  width: 3px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  border-radius: 2px;
}

@keyframes flicker {
  0%   { transform: scale(1, 1) rotate(-2deg); }
  22%  { transform: scale(0.95, 1.06) rotate(2deg); }
  45%  { transform: scale(1.04, 0.95) rotate(-3deg); }
  68%  { transform: scale(0.92, 1.08) rotate(1.5deg); }
  85%  { transform: scale(1.03, 0.97) rotate(-1deg); }
  100% { transform: scale(1, 1) rotate(-2deg); }
}

@keyframes velaGlowPulse {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.vela-nome { font-weight: bold; color: var(--dourado-claro); display: block; }
.vela-mensagem { display: block; margin-top: 2px; opacity: 0.85; }

.velas-vazio {
  color: #97a1c2;
  font-style: italic;
  text-align: center;
  grid-column: 1 / -1;
}

/* Vídeos */
.videos-card {
  max-width: 640px;
  margin: 0 auto;
}

.videos-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.video-slide {
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(201, 162, 75, 0.18);
  animation: oracaoFade 0.35s ease;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame .video-thumb,
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-thumb {
  cursor: pointer;
  border: none;
  padding: 0;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(193, 97, 63, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-play::after {
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.video-thumb:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--terracota-escuro);
}

.video-info {
  padding: 14px 16px;
}

.video-titulo {
  margin: 0 0 4px;
  font-size: 0.95rem;
  color: var(--azul-profundo);
  line-height: 1.4;
}

.video-canal {
  margin: 0;
  font-size: 0.8rem;
  color: var(--texto-suave);
}

/* Paróquias próximas (Google Places) */
.paroquia-card {
  max-width: 720px;
  margin: 0 auto;
}

.paroquia-inicial {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.paroquia-resultado {
  margin-top: 24px;
  border-top: 1px solid #eee0c4;
  padding-top: 20px;
}

.paroquia-resultado.hidden { display: none; }

.paroquia-resultado-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--texto-suave);
}

.btn-ghost-azul {
  background: transparent;
  border: 1px solid var(--azul-profundo);
  color: var(--azul-profundo);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  font-size: 0.85rem;
}

.btn-ghost-azul:hover { background: rgba(27, 42, 74, 0.06); }

.paroquias-lista {
  display: grid;
  gap: 14px;
}

.paroquia-item {
  background: var(--creme);
  border-radius: 10px;
  padding: 18px 20px;
  border-left: 3px solid var(--dourado);
  position: relative;
}

.paroquia-item.mais-proxima {
  border-left-color: var(--azul-profundo);
  background: #fdf6e6;
}

.paroquia-badge {
  position: absolute;
  top: 14px;
  right: 18px;
  background: var(--azul-profundo);
  color: var(--dourado-claro);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 999px;
}

.paroquia-item h4 {
  margin: 0 4px 6px 0;
  color: var(--azul-profundo);
  padding-right: 90px;
}

.paroquia-item .pi-endereco {
  margin: 0 0 8px;
  color: var(--texto);
  font-size: 0.92rem;
}

.paroquia-item .pi-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 0.82rem;
  color: var(--texto-suave);
  margin-bottom: 10px;
}

.paroquia-item .pi-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.paroquia-item .pi-links a {
  font-size: 0.85rem;
  color: var(--azul-profundo);
  text-decoration: none;
  border-bottom: 1px solid var(--dourado);
  padding-bottom: 1px;
}

.paroquia-item .pi-links a:hover { color: var(--azul-mais-escuro); }

.paroquias-vazio {
  color: var(--texto-suave);
  font-style: italic;
  text-align: center;
}

/* PIX */
.pix-resultado {
  text-align: center;
}

.pix-resultado.hidden { display: none; }

.pix-qr-wrap {
  background: var(--creme);
  border-radius: 12px;
  padding: 16px;
  display: inline-block;
  margin: 10px 0;
}

.pix-resultado img {
  width: 200px;
  height: 200px;
}

.copia-cola {
  display: flex;
  gap: 8px;
  margin: 10px 0 16px;
}

.copia-cola input {
  flex: 1;
  padding: 10px;
  border: 1px solid #e2d3ae;
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.8rem;
  background: var(--creme);
}

.pix-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: var(--azul-profundo);
}

.pix-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terracota);
  animation: pulseGlow 1.4s ease-in-out infinite;
}

.pix-status.aprovado { color: #2d6a4f; }
.pix-status.aprovado .pix-status-dot { background: #2d6a4f; animation: none; }

.pix-status.erro { color: #a5312d; }
.pix-status.erro .pix-status-dot { background: #a5312d; animation: none; }

/* Compartilhar */
.share-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-row.share-inline {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 162, 75, 0.25);
}

.share-label {
  font-size: 0.82rem;
  color: var(--texto-suave);
}

.site-footer .share-label { color: #b7bdd6; }

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.share-btn svg { width: 18px; height: 18px; fill: currentColor; }

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

.share-btn.whatsapp { background: #25d366; }
.share-btn.facebook { background: #1877f2; }
.share-btn.instagram { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }

.share-footer {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--azul-mais-escuro);
  color: #b7bdd6;
  text-align: center;
  padding: 28px 20px;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--azul-mais-escuro);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 24px 20px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .nav.open {
    max-height: 320px;
    padding: 14px 24px 24px;
  }

  .nav a { padding: 10px 0; width: 100%; }
  .nav-cta { margin-top: 6px; text-align: center; }
}

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-image-frame { max-width: 320px; }
  .hero h1 { font-size: 2.5rem; }
  .section-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
