/* ═══════════════════════════════════════════════════════════
   SISTEMA DE DESIGN — Mãe Jordana · Espaço Sagrado
   ═══════════════════════════════════════════════════════════ */
:root {
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Inter', system-ui, sans-serif;

  --container: 1140px;
  --section-py: clamp(64px, 8vw, 100px);
  --section-px: clamp(20px, 5vw, 64px);
  --gap: 24px;

  --btn-h: 44px;
  --btn-px: 24px;
  --btn-fs: 11px;
  --btn-ls: 0.16em;
  --btn-r: 2px;

  --nav-h: 70px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

/* ── CONTAINER & SEÇÕES ── */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
}

.sec {
  position: relative;
  z-index: 2;
  padding: var(--section-py) 0;
}

.sec-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.sec-header.center { text-align: center; }
.sec-header.center .eyebrow { justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  flex-shrink: 0;
}

.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}

.sec-title em { font-style: italic; }

.sec-lead {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 21px);
  font-style: italic;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 560px;
}

.sec-header.center .sec-lead { margin-left: auto; margin-right: auto; }

/* ── BOTÕES (padronizados) ── */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--btn-h);
  padding: 12px var(--btn-px);
  font-family: var(--font-ui);
  font-size: var(--btn-fs);
  font-weight: 500;
  letter-spacing: var(--btn-ls);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--btn-r);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s, border-color 0.35s, color 0.35s;
  position: relative;
  overflow: hidden;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  color: #fff;
  border-color: transparent;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-120%);
  transition: transform 0.65s;
}

.btn-primary:hover::after { transform: translateX(120%); }

.btn-outline {
  background: transparent;
}

.btn-ghost {
  background: transparent;
  border: none;
  min-height: auto;
  padding: 8px 0;
  border-bottom: 1px solid;
  border-radius: 0;
}

.btn-ghost:hover { background: transparent; }

.btn-sm {
  min-height: 42px;
  padding: 0 24px;
  font-size: 10px;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--section-px);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

.site-nav.scrolled { backdrop-filter: blur(12px); }

.nav-brand {
  font-family: var(--font-serif);
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.04em;
  justify-self: start;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  list-style: none;
  justify-self: center;
}

.nav-links a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.nav-links a:hover { opacity: 1; }

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.nav-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
  width: 100%;
}

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

/* ── NAV MOBILE ── */
@media (max-width: 860px) {
  /* Redefine o grid para 2 colunas: brand | actions */
  .site-nav {
    grid-template-columns: 1fr auto;
    gap: 0;
    padding: 0 20px;
  }

  /* Tira o nav-links do fluxo do grid no mobile */
  .site-nav > .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 298;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-h));
    border-top: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    /* Reposiciona para fora do grid: ocupa full-width como overlay */
    grid-column: unset;
    grid-row: unset;
  }

  .site-nav > .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 17px 24px;
    font-size: 12px;
    letter-spacing: 0.22em;
    opacity: 1;
    color: rgba(255,255,255,0.85);
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(255,255,255,0.05);
  }

  /* Esconde o botão CTA na navbar no mobile */
  .nav-actions > a.btn {
    display: none !important;
  }

  /* Mostra o hambúrguer */
  .nav-toggle {
    display: flex;
  }
}


/* ── EFEITOS CINEMATOGRÁFICOS DE HERO ── */
@keyframes heroFloatImg {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.015); }
}

@keyframes heroPulseGlow {
  0%, 100% { opacity: 0.35; filter: blur(30px); transform: scale(1); }
  50% { opacity: 0.75; filter: blur(45px); transform: scale(1.08); }
}

@keyframes lightBeamPass {
  0% { transform: translateX(-150%) rotate(25deg); }
  100% { transform: translateX(250%) rotate(25deg); }
}

@keyframes textGoldShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.hero-cinematic-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: heroPulseGlow 6s ease-in-out infinite;
}

.hero-img-cinematic {
  animation: heroFloatImg 7s ease-in-out infinite;
  will-change: transform;
}

.shimmer-gold-text {
  background: linear-gradient(90deg, #d4a853 0%, #fff6d6 30%, #d4a853 60%, #e8d5a0 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textGoldShimmer 5s linear infinite;
}

/* ── FOOTER ── */
.site-footer {
  position: relative;
  z-index: 2;
  padding: 56px var(--section-px) 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-cta {
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 40px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

.footer-cta h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 36px);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}

.footer-cta p {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  opacity: 0.65;
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-redes {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-rede a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.3s;
}

.footer-rede a:hover { opacity: 1; }

.footer-rede img { width: 26px; height: 26px; object-fit: contain; }

.footer-info {
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: 0.35;
  line-height: 1.9;
}

/* ── CTA STRIP ── */
.cta-strip {
  position: relative;
  z-index: 2;
  padding: var(--section-py) 0;
  text-align: center;
  overflow: hidden;
}

.cta-strip-orn {
  font-size: 12px;
  letter-spacing: 0.35em;
  opacity: 0.35;
  margin-bottom: 28px;
}

.cta-strip h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 20px;
}

.cta-strip h2 em { font-style: italic; }

.cta-strip-sub {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  opacity: 0.6;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.cta-info-row {
  display: flex;
  gap: clamp(24px, 5vw, 56px);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.cta-info-item { text-align: center; }

.cta-info-l {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 6px;
}

.cta-info-v {
  font-family: var(--font-serif);
  font-size: 18px;
}

/* ── ORÁCULO CARTAS (premium) ── */
.oraculo-sec { text-align: center; overflow: hidden; }

.oraculo-stage {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}

.oraculo-altar {
  position: relative;
  margin-bottom: 24px;
  padding: 48px 16px 32px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.oraculo-altar::before,
.oraculo-altar::after { display: none; }

#cartasDeck {
  position: relative;
  height: clamp(200px, 32vw, 260px);
  max-width: 680px;
  margin: 0 auto;
  transition: opacity 0.5s, height 0.5s;
}

#cartasDeck.escondido {
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.carta {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(88px, 13vw, 118px);
  height: clamp(132px, 19.5vw, 177px);
  margin-left: calc(clamp(88px, 13vw, 118px) / -2);
  border: none;
  background: transparent;
  cursor: pointer;
  transform-style: preserve-3d;
  transform: rotate(var(--rot, 0deg)) translateY(var(--lift, 0px));
  transition: transform 0.55s var(--ease), opacity 0.45s;
  animation: cartaSurge 0.7s var(--ease) backwards;
  animation-delay: var(--delay, 0s);
  z-index: var(--z, 1);
}

@keyframes cartaSurge {
  from { opacity: 0; transform: rotate(var(--rot, 0deg)) translateY(60px) scale(0.85); }
}

.carta:hover:not(.carta-flip) {
  --lift: -18px;
  z-index: 20 !important;
}

.carta-out { opacity: 0.12 !important; pointer-events: none; filter: blur(1px); }
.carta-flip { transform: rotate(var(--rot, 0deg)) translateY(-30px) rotateY(180deg) scale(1.08) !important; z-index: 30 !important; }

.carta-verso, .carta-frente {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.carta-verso {
  background:
    linear-gradient(135deg, #1a0812 0%, #0d0408 40%, #140818 100%);
  border: 1px solid rgba(201,145,76,0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.55), inset 0 0 60px rgba(107,15,15,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carta-verso-inner {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px solid rgba(201,145,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(201,145,76,0.03) 4px, rgba(201,145,76,0.03) 5px);
}

.carta-orn {
  font-size: 32px;
  color: rgba(201,145,76,0.55);
  text-shadow: 0 0 20px rgba(201,145,76,0.3);
}

.carta-frente {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, #1a0a12, #0a0010);
  border: 1px solid var(--carta-cor, #c9914c);
  box-shadow: 0 16px 48px rgba(160,24,24,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.carta-sim { font-size: 36px; margin-bottom: 10px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.carta-nome {
  font-family: var(--font-serif);
  font-size: 11px;
  color: var(--carta-cor, #c9914c);
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-align: center;
}

#cartasResultado {
  max-width: 580px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

#cartasResultado.visivel { opacity: 1; transform: none; }

.resultado-inner {
  padding: 32px 0 0;
  background: transparent;
  border: none;
  position: relative;
  text-align: center;
}

.resultado-inner::before,
.resultado-inner::after { display: none; }

.resultado-sim { font-size: 44px; display: block; margin-bottom: 12px; }
.resultado-nome { font-family: var(--font-serif); font-size: clamp(24px, 4vw, 32px); color: #fff; margin-bottom: 18px; }
.resultado-msg { font-family: var(--font-body); font-size: clamp(18px, 2.2vw, 21px); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.resultado-nota { font-size: 10px; letter-spacing: 0.08em; opacity: 0.35; line-height: 1.55; }

.oraculo-acoes { margin-top: 28px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── ORÁCULO BÚZIOS (premium) ── */
.buzios-sec { text-align: center; overflow: hidden; }

.buzios-stage { max-width: 720px; margin: 0 auto; }

.buzios-altar-wrap {
  position: relative;
  margin-bottom: 32px;
  padding: 24px;
  display: flex;
  justify-content: center;
}

.buzios-pano {
  position: absolute;
  inset: 10% 5% 5%;
  background: linear-gradient(180deg, rgba(240,248,255,0.06) 0%, rgba(200,220,232,0.03) 100%);
  border-radius: 4px;
  transform: perspective(800px) rotateX(8deg);
  pointer-events: none;
}

#buziosMesa {
  position: relative;
  width: min(100%, 520px);
  height: clamp(280px, 50vw, 360px);
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(120,80,40,0.5) 0%, transparent 45%),
    radial-gradient(circle at 65% 70%, rgba(60,35,15,0.6) 0%, transparent 40%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #4a3020 0%, #2a1808 55%, #1a0f06 100%);
  box-shadow:
    0 0 0 8px rgba(30,18,8,0.8),
    0 0 0 10px rgba(212,168,83,0.12),
    0 40px 80px rgba(0,0,0,0.55),
    inset 0 0 60px rgba(0,0,0,0.5);
  overflow: visible;
}

#buziosMesa::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.08);
  pointer-events: none;
}

.buzio {
  position: absolute;
  width: 32px;
  height: 22px;
  margin: -11px 0 0 -16px;
  transition: left 0.7s var(--ease), top 0.7s var(--ease), transform 0.7s var(--ease);
  z-index: 2;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.5));
}

.buzio-corpo {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #faf6f0 0%, #e8ddd0 35%, #c4b09a 70%, #9a8470 100%);
  border-radius: 50% 50% 42% 42% / 58% 58% 42% 42%;
  position: relative;
}

.buzio-corpo::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 18%;
  right: 18%;
  height: 35%;
  background: linear-gradient(180deg, rgba(255,255,255,0.65), transparent);
  border-radius: 50%;
}

.buzio-corpo::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 25%;
  right: 25%;
  height: 20%;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
}

.buzio.aberto .buzio-corpo {
  background: linear-gradient(145deg, #2a2218 0%, #0f0c08 100%);
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.8);
}

.buzio.aberto .buzio-corpo::before { opacity: 0; }

#buziosResultado {
  max-width: 560px;
  margin: 28px auto 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

#buziosResultado.visivel { opacity: 1; transform: none; }

.buzios-resultado-inner {
  padding: 44px 36px;
  background: rgba(2,18,32,0.96);
  border: 1px solid rgba(14,155,138,0.2);
  position: relative;
  text-align: center;
}

.buzios-contagem {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.buzios-odu {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 36px);
  color: #fff;
  margin-bottom: 16px;
}

.buzios-msg {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.2vw, 21px);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
}

.buzios-nota { font-size: 10px; opacity: 0.35; line-height: 1.55; }

.buzios-acoes { margin-top: 24px; }

/* ── WIDGET FLUTUANTE DE WHATSAPP ── */
.wa-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: rgba(12, 16, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 168, 101, 0.4);
  padding: 10px 18px 10px 12px;
  border-radius: 40px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 20px rgba(37, 168, 101, 0.2);
  transition: all 0.35s var(--ease);
}
.wa-floating:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(37, 168, 101, 0.8);
  box-shadow: 0 20px 48px rgba(0,0,0,0.7), 0 0 30px rgba(37, 168, 101, 0.35);
}
.wa-icon-box {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.wa-icon-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.wa-online-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  background: #00ff66;
  border: 2px solid #0c100e;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}
.wa-text-box {
  display: flex;
  flex-direction: column;
}
.wa-title {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.wa-subtitle {
  font-family: var(--font-ui);
  font-size: 10px;
  color: rgba(37, 168, 101, 0.9);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* ── CATÁLOGO DE SERVIÇOS & TRABALHOS (TODOS OS TRABALHOS REINCORPORADOS) ── */
.servicos-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 48px;
}
.nacao-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 36px);
  margin-top: 48px;
}
.catalog-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.4s var(--ease);
}
.catalog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-glow, #c9914c), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 145, 76, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 25px rgba(201, 145, 76, 0.15);
}
.catalog-card:hover::before {
  opacity: 1;
}
.catalog-img-box {
  width: 100%;
  height: 210px;
  position: relative;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.catalog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: contrast(1.05) brightness(0.9);
  transition: transform 0.6s var(--ease), filter 0.6s;
}
.catalog-card:hover .catalog-img-box img {
  transform: scale(1.05);
  filter: contrast(1.1) brightness(1);
}
.catalog-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--tag-bg, rgba(160, 24, 24, 0.9));
  color: #ffffff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.catalog-body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.catalog-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--card-glow, #c9914c);
  margin-bottom: 10px;
  font-weight: 600;
}
.catalog-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.catalog-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(230, 224, 214, 0.82);
  margin-bottom: 24px;
}
.catalog-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 1024px) {
  .servicos-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .servicos-catalog-grid,
  .nacao-catalog-grid {
    grid-template-columns: 1fr;
  }
}


/* ── BOX DE AUTORIDADE / LEGALIDADE ── */
.authority-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 40px);
  margin: 48px 0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
}
.auth-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.auth-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.auth-info h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: #e8d5a0;
  margin-bottom: 4px;
  font-weight: 600;
}
.auth-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ── DEPOIMENTOS DE CLIENTES ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: 40px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 28px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-stars {
  color: #d4af37;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-quote {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  color: rgba(230, 224, 214, 0.85);
  line-height: 1.65;
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-ui);
}
.testimonial-author span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* ── FAQ SANFONA (ACCORDION) ── */
.faq-grid {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.active {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
}
.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 20px);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-icon {
  font-size: 20px;
  transition: transform 0.3s;
  color: rgba(255, 255, 255, 0.5);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #e8d5a0;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 24px;
}
.faq-item.active .faq-content {
  max-height: 300px;
  padding: 0 24px 24px;
}
.faq-content p {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

/* ── APRESENTAÇÃO INTEGRADA DE SERVIÇOS (PARADIGM SHIFT - SEM CORTE DE FOTO) ── */
.integrated-svc-list {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 56px);
  margin-top: 48px;
}
.integrated-svc-card {
  display: grid;
  grid-template-columns: minmax(320px, 45%) 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.4s var(--ease);
}
.integrated-svc-card.reverse {
  grid-template-columns: 1fr minmax(320px, 45%);
}
.integrated-svc-card:hover {
  border-color: rgba(212, 168, 83, 0.4);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 168, 83, 0.12);
  transform: translateY(-4px);
}
.svc-photo-frame {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.25);
  background: #000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}
.svc-photo-frame img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.6s var(--ease);
}
.integrated-svc-card:hover .svc-photo-frame img {
  transform: scale(1.03);
}
.svc-detail-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-detail-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-q, #c9914c);
  margin-bottom: 12px;
  font-weight: 600;
}
.svc-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.svc-detail-desc {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
  color: rgba(230, 224, 214, 0.85);
  margin-bottom: 28px;
}

/* ── INVESTIMENTO NA CONSULTA (VALORES EXPLÍCITOS - DESTACADOS) ── */
.investment-box-sec {
  background: linear-gradient(135deg, rgba(160, 24, 24, 0.12) 0%, rgba(10, 0, 18, 0.95) 100%);
  border: 1px solid rgba(201, 145, 76, 0.35);
  border-radius: 6px;
  padding: clamp(32px, 5vw, 56px);
  margin: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  position: relative;
}
.investment-box-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9914c, #25d366, transparent);
}
.inv-header {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9914c;
  margin-bottom: 8px;
  font-weight: 600;
}
.inv-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  color: #ffffff;
  margin-bottom: 14px;
}
.inv-desc {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(230, 224, 214, 0.85);
  line-height: 1.65;
  margin-bottom: 16px;
}
.inv-pix-info {
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(201, 145, 76, 0.4);
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 13px;
  color: #e8d5a0;
  display: inline-block;
  font-weight: 500;
}
.inv-price-tag {
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 145, 76, 0.4);
  padding: 24px 32px;
  border-radius: 6px;
  min-width: 200px;
}
.inv-price-val {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 700;
  color: #e8d5a0;
  line-height: 1;
}
.inv-price-val span {
  font-size: 20px;
  font-weight: 400;
  vertical-align: super;
}
.inv-price-sub {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* ── COMO FUNCIONA (TRILHA DE PASSO A PASSO VIVA) ── */
.stepper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
  position: relative;
}
.step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.step-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 145, 76, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}
.step-number-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 145, 76, 0.2), rgba(201, 145, 76, 0.05));
  border: 1px solid rgba(201, 145, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #e8d5a0;
  margin-bottom: 20px;
  transition: all 0.4s;
}
.step-card:hover .step-number-badge {
  background: #c9914c;
  color: #000;
  box-shadow: 0 0 20px rgba(201, 145, 76, 0.5);
}
.step-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}
.step-card p {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(230, 224, 214, 0.75);
  line-height: 1.6;
}

/* ── GALERIA DE FEEDBACKS EM IMAGEM ── */
.feedback-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.feedback-img-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  background: #000;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.feedback-img-item:hover {
  transform: scale(1.03);
  border-color: rgba(201, 145, 76, 0.6);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 25px rgba(201, 145, 76, 0.2);
}
.feedback-img-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: opacity 0.4s;
}
.feedback-img-zoom {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}
.feedback-img-item:hover .feedback-img-zoom {
  opacity: 1;
}

@media (max-width: 900px) {
  .integrated-svc-card,
  .integrated-svc-card.reverse {
    grid-template-columns: 1fr;
  }
  .investment-box-sec {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .inv-price-tag {
    margin: 0 auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .inv-pix-info {
    display: block;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .btn-whatsapp,
  .btn-gold,
  .btn {
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 12px 16px;
    width: 100%;
  }
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-cta .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .oraculo-acoes,
  .ifa-acoes,
  .buzios-acoes {
    flex-direction: column;
    align-items: stretch;
    padding: 0 8px;
  }
  .oraculo-acoes .btn,
  .ifa-acoes .btn,
  .buzios-acoes .btn {
    width: 100%;
  }
  .catalog-body { padding: 18px 16px 22px; }
  .stepper-grid { grid-template-columns: 1fr; }
}


