/* ===== MESTRECRUZ.COM.PT — CSS PRINCIPAL v3 ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cinzel+Decorative:wght@400;700&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --preto:         #000000;
  --preto-soft:    #080808;
  --preto-card:    #0c0c0c;
  --preto-section: #060606;
  --ambar:         #D4890A;
  --ambar-claro:   #F0A832;
  --ambar-escuro:  #A86A00;
  --ambar-glow:    rgba(212,137,10,0.25);
  --vermelho:      #cc0000;
  --vermelho-vivo: #e60000;
  --vermelho-glow: rgba(204,0,0,0.2);
  --creme:         #f2e8d9;
  --cinza:         #888888;
  --cinza-claro:   #cccccc;
  --verde-wa:      #25D366;
  --verde-wa-dark: #1da851;
  --branco:        #ffffff;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--preto);
  color: var(--creme);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.85;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,137,10,0.3);
  padding: 14px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-cruz {
  font-size: 18px;
  color: var(--ambar);
  filter: drop-shadow(0 0 6px var(--ambar-glow));
}
.logo-nome {
  font-family: 'Cinzel Decorative', serif;
  font-size: 17px;
  color: var(--ambar);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: nowrap;
}
nav a {
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(204,204,204,0.8);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--ambar); }

/* LINK CONSULTA NO NAV */
.nav-consulta {
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vermelho-vivo) !important;
  text-decoration: none !important;
  transition: color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-consulta:hover { color: #ff4444 !important; }

/* BOTÃO HEADER — legacy */
.header-btn {
  background: transparent;
  color: var(--ambar) !important;
  border: 1px solid var(--ambar);
  padding: 8px 18px;
  border-radius: 3px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .25s;
  flex-shrink: 0;
  white-space: nowrap;
}
.header-btn svg { fill: var(--verde-wa); flex-shrink: 0; }
.header-btn:hover {
  background: var(--ambar);
  color: #000 !important;
  box-shadow: 0 0 16px var(--ambar-glow);
}
.header-btn:hover svg { fill: #000; }

/* ===== ONLINE BAR ===== */
.online-bar {
  background: linear-gradient(90deg, transparent, rgba(212,137,10,0.08), transparent);
  border-bottom: 1px solid rgba(212,137,10,0.12);
  padding: 8px 30px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--ambar);
}
.online-bar .pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: #44ff44;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulseGreen 1.5s infinite;
}
@keyframes pulseGreen {
  0%,100% { box-shadow: 0 0 0 0 rgba(68,255,68,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(68,255,68,0); }
}

/* ===== DIVISOR ORNAMENTAL ===== */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 50px 30px 20px;
  color: var(--ambar);
  opacity: .6;
}
.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ambar));
}
.ornament-divider::after {
  background: linear-gradient(90deg, var(--ambar), transparent);
}
.ornament-divider span {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  text-align: center;
  padding: 100px 30px 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,137,10,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(204,0,0,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ambar), transparent);
  opacity: .4;
}
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--ambar);
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: .9;
}
.hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(204,0,0,0.3);
}
.hero h1 .branco { color: var(--creme); }
.hero h1 .vermelho {
  color: var(--vermelho-vivo);
  text-shadow: 0 0 30px rgba(230,0,0,0.4);
}

.hero-lead {
  font-size: 20px;
  color: var(--cinza-claro);
  max-width: 660px;
  margin: 0 auto 48px;
  line-height: 1.9;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== BOTÕES ===== */
.btn-wa {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--verde-wa);
  color: #fff; text-decoration: none;
  padding: 18px 40px; border-radius: 4px;
  font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 1.5px;
  font-weight: 700;
  transition: all .3s;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
}
.btn-wa:hover {
  background: var(--verde-wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--ambar);
  color: var(--ambar); text-decoration: none;
  padding: 17px 32px; border-radius: 4px;
  font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 1.5px;
  transition: all .3s;
}
.btn-gold:hover {
  background: rgba(212,137,10,0.1);
  box-shadow: 0 0 20px var(--ambar-glow);
}

/* ===== NÚMEROS DE IMPACTO ===== */
.numeros {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(212,137,10,0.12);
  border-top: 1px solid rgba(212,137,10,0.2);
  border-bottom: 1px solid rgba(212,137,10,0.2);
  margin-top: 0;
}
.numero-item {
  background: #050505;
  padding: 44px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.numero-item:hover { background: #0a0808; }
.numero-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ambar), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.numero-item:hover::before { opacity: 1; }
.numero-item .num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 44px;
  color: var(--ambar);
  line-height: 1;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px var(--ambar-glow));
}
.numero-item .label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--cinza);
  text-transform: uppercase;
}

/* ===== SECTION TEMAS ===== */
.temas-header {
  text-align: center;
  padding: 70px 30px 36px;
  position: relative;
}
.temas-header h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--creme);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.temas-header h2 span { color: var(--ambar); }
.temas-header p {
  color: var(--cinza);
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* ===== GRID TEMAS ===== */
.temas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 2px;
  background: rgba(212,137,10,0.08);
}
.tema-card {
  background: #060606;
  padding: 36px 32px;
  text-decoration: none;
  display: block;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  border: none;
}
.tema-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,137,10,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.tema-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--vermelho), var(--ambar));
  transform: scaleX(0);
  transition: transform .35s;
}
.tema-card:hover { background: #0c0808; }
.tema-card:hover::before { opacity: 1; }
.tema-card:hover::after { transform: scaleX(1); }
.tema-card:hover .tema-num { color: var(--ambar); }
.tema-card:hover h3 { color: var(--ambar-claro); }
.tema-num {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  color: rgba(212,137,10,0.35);
  letter-spacing: 4px;
  margin-bottom: 14px;
  transition: color .3s;
}
.tema-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--branco);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  line-height: 1.4;
  transition: color .3s;
}
.tema-card p { font-size: 15px; color: var(--cinza); line-height: 1.65; }

/* ===== CONTENT SECTION ===== */
.content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 30px;
}
.content-wrap h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--branco);
  margin-bottom: 28px;
  line-height: 1.25;
}
.content-wrap h2 em { color: var(--ambar-claro); font-style: italic; font-family: 'EB Garamond', serif; }
.content-wrap h3 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--ambar);
  text-transform: uppercase;
  margin: 44px 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.content-wrap h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,137,10,0.3), transparent);
}
.content-wrap p { color: var(--cinza-claro); margin-bottom: 20px; }
.content-wrap ul { list-style: none; margin: 16px 0 28px; }
.content-wrap ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--cinza-claro);
  border-bottom: 1px solid rgba(212,137,10,0.07);
}
.content-wrap ul li::before {
  content: '✦';
  position: absolute; left: 0;
  color: var(--vermelho);
  font-size: 9px; top: 14px;
}

/* ===== QUOTE ===== */
.quote-box {
  border-left: 3px solid var(--vermelho);
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(204,0,0,0.06), rgba(0,0,0,0.4));
  margin: 44px 0;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--creme);
  line-height: 1.7;
  position: relative;
}
.quote-box::before {
  content: '"';
  position: absolute;
  top: -10px; left: 28px;
  font-family: 'Cinzel Decorative', serif;
  font-size: 80px;
  color: rgba(204,0,0,0.15);
  line-height: 1;
}
.quote-box cite {
  display: block;
  margin-top: 16px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--ambar);
  font-style: normal;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos-section {
  background: #040404;
  border-top: 1px solid rgba(212,137,10,0.15);
  border-bottom: 1px solid rgba(212,137,10,0.15);
  padding: 80px 30px;
  position: relative;
  overflow: hidden;
}
.depoimentos-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,137,10,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.depoimentos-section h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 24px;
  color: var(--ambar);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 10px var(--ambar-glow));
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.dep-card {
  background: linear-gradient(135deg, #0e0a06, #080808);
  border: 1px solid rgba(212,137,10,0.15);
  border-radius: 2px;
  padding: 32px 28px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.dep-card:hover {
  border-color: rgba(212,137,10,0.35);
  transform: translateY(-4px);
}
.dep-card::before {
  content: '"';
  position: absolute;
  top: 10px; left: 18px;
  font-family: 'Cinzel Decorative', serif;
  font-size: 56px;
  color: rgba(204,0,0,0.15);
  line-height: 1;
}
.dep-stars { color: var(--ambar); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.dep-texto { color: var(--cinza-claro); font-style: italic; font-size: 17px; line-height: 1.8; margin-bottom: 20px; }
.dep-autor { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; color: var(--ambar); }
.dep-cidade { font-size: 13px; color: var(--cinza); margin-top: 4px; }
.dep-resultado {
  display: inline-block;
  margin-top: 16px;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.25);
  color: #ff8080;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 2px;
}

/* ===== CTA BOX ===== */
.cta-box {
  background: linear-gradient(135deg, rgba(204,0,0,0.1), rgba(212,137,10,0.05), rgba(0,0,0,0.95));
  border: 1px solid rgba(212,137,10,0.2);
  border-radius: 2px;
  padding: 60px 48px;
  text-align: center;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vermelho), var(--ambar), transparent);
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,137,10,0.3), transparent);
}
.cta-box h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 28px;
  color: var(--branco);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-box p {
  color: var(--cinza-claro);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SHARE SECTION ===== */
.share-section {
  border-top: 1px solid rgba(212,137,10,0.1);
  padding: 32px 0;
  margin-top: 50px;
}
.share-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--cinza);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  border-radius: 3px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: all .2s;
  border: 1px solid transparent;
}
.share-fb   { background: #1877f2; color: #fff; }
.share-fb:hover { background: #1464d8; }
.share-tg   { background: #229ed9; color: #fff; }
.share-tg:hover { background: #1a8cbf; }
.share-tw   { background: #111; color: #fff; border-color: #333; }
.share-tw:hover { background: #1a1a1a; }
.share-wa   { background: var(--verde-wa); color: #fff; }
.share-wa:hover { background: var(--verde-wa-dark); }

/* ===== POPUP SAÍDA ===== */
#popup-saida {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#popup-saida.show { display: flex; }
.popup-inner {
  background: #0d0a06;
  border: 1px solid rgba(212,137,10,0.4);
  border-radius: 3px;
  padding: 52px 48px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: fadeInUp .4s ease;
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
.popup-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--vermelho), var(--ambar), transparent);
}
.popup-close {
  position: absolute; top: 16px; right: 20px;
  color: var(--cinza); font-size: 20px; cursor: pointer;
  background: none; border: none; transition: color .2s;
}
.popup-close:hover { color: var(--ambar); }
.popup-icon { font-size: 44px; margin-bottom: 18px; }
.popup-inner h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 22px;
  color: var(--branco);
  margin-bottom: 14px;
}
.popup-inner p { color: var(--cinza-claro); margin-bottom: 30px; font-size: 17px; }

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 1000;
  width: 58px; height: 58px;
  background: var(--verde-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  animation: waPulse 2.5s infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ===== FOOTER ===== */
footer {
  background: #0a0806;
  border-top: 1px solid rgba(212,137,10,0.2);
  padding: 64px 30px 36px;
  text-align: center;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(212,137,10,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 20px;
  color: var(--ambar);
  letter-spacing: 5px;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 8px var(--ambar-glow));
}
.footer-sitelinks {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-sitelinks a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(212,137,10,0.8);
  text-decoration: none;
  transition: color .2s;
}
.footer-sitelinks a:hover { color: var(--ambar); }
.footer-sitelinks span { color: rgba(212,137,10,0.25); }
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-nav a {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cinza-claro);
  text-decoration: none;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--ambar); }
.footer-legal {
  font-size: 14px;
  color: rgba(200,195,188,0.55);
  max-width: 700px;
  margin: 0 auto 10px;
  line-height: 1.75;
}
.footer-copy {
  font-size: 12px;
  color: rgba(200,195,188,0.35);
  margin-top: 18px;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
}

/* ===== PÁGINAS LEGAIS ===== */
.legal-hero {
  text-align: center;
  padding: 70px 30px 50px;
  border-bottom: 1px solid rgba(212,137,10,0.15);
  position: relative;
}
.legal-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 2px;
  background: var(--ambar);
}
.legal-hero .eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--ambar);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: .8;
}
.legal-hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(26px, 4vw, 48px);
  color: var(--branco);
  margin-bottom: 16px;
  line-height: 1.2;
}
.legal-hero .update {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--cinza);
}
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 30px 80px;
}
.legal-wrap h2 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--ambar);
  text-transform: uppercase;
  margin: 52px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,137,10,0.18);
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p {
  color: var(--cinza-claro);
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.85;
}
.legal-wrap ul { list-style: none; margin: 0 0 24px; }
.legal-wrap ul li {
  padding: 9px 0 9px 24px;
  position: relative;
  color: var(--cinza-claro);
  font-size: 17px;
  border-bottom: 1px solid rgba(212,137,10,0.06);
}
.legal-wrap ul li::before {
  content: '·';
  position: absolute; left: 8px;
  color: var(--ambar);
  font-size: 20px;
  line-height: 1.4;
}
.legal-contact-box {
  background: linear-gradient(135deg, #0e0a06, #080808);
  border: 1px solid rgba(212,137,10,0.2);
  border-radius: 3px;
  padding: 32px 36px;
  margin-top: 50px;
}
.legal-contact-box p { margin-bottom: 8px; }
.legal-contact-box a { color: var(--ambar); text-decoration: none; }
.legal-contact-box a:hover { text-decoration: underline; }

/* ===== RESPONSIVO ===== */
/* ===== MENU HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ambar);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== TABLET ===== */
@media (max-width: 960px) {
  header { flex-wrap: wrap; padding: 12px 18px; gap: 10px; }
  .hamburger { display: flex; }
  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: #050505;
    border-top: 1px solid rgba(212,137,10,0.15);
    padding: 8px 0;
    order: 3;
  }
  nav.open { display: flex; }
  nav a {
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 13px 20px;
    border-bottom: 1px solid rgba(212,137,10,0.07);
  }
  nav a:last-child { border-bottom: none; }
  .nav-consulta {
    padding: 13px 20px;
    border-bottom: none !important;
    border-top: 1px solid rgba(204,0,0,0.15);
    margin-top: 4px;
    font-size: 12px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  /* Header */
  header { padding: 12px 16px; }
  .logo-nome { font-size: 15px; letter-spacing: 1.5px; }
  .logo-cruz { font-size: 16px; }

  /* Hero */
  .hero { padding: 60px 20px 56px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 3px; margin-bottom: 24px; }
  .hero h1 { font-size: clamp(30px, 9vw, 48px); }
  .hero-lead { font-size: 17px; margin-bottom: 36px; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .btn-wa { width: 100%; max-width: 340px; justify-content: center; padding: 16px 24px; font-size: 13px; }
  .btn-gold { width: 100%; max-width: 340px; justify-content: center; padding: 14px 24px; }

  /* Números */
  .numeros { grid-template-columns: repeat(2, 1fr); }
  .numero-item { padding: 30px 20px; }
  .numero-item .num { font-size: 34px; }
  .numero-item .label { font-size: 9px; }

  /* Temas */
  .temas-header { padding: 50px 20px 28px; }
  .temas-grid { grid-template-columns: 1fr; gap: 1px; padding: 0; }
  .tema-card { padding: 28px 24px; }
  .tema-card h3 { font-size: 14px; }

  /* Depoimentos */
  .depoimentos-section { padding: 56px 16px; }
  .depoimentos-section h2 { font-size: 18px; margin-bottom: 36px; }
  .depoimentos-grid { grid-template-columns: 1fr; gap: 14px; }
  .dep-card { padding: 26px 22px; }
  .dep-texto { font-size: 16px; }

  /* CTA */
  .cta-box { padding: 40px 22px; margin: 30px 0; }
  .cta-box h3 { font-size: 22px; }
  .cta-box p { font-size: 16px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-wa { width: 100%; max-width: 340px; justify-content: center; }

  /* Content wrap */
  .content-wrap { padding: 46px 20px; }
  .content-wrap h2 { font-size: clamp(20px, 6vw, 28px); }
  .quote-box { padding: 24px 22px; font-size: 19px; }

  /* Share */
  .share-buttons { gap: 8px; }
  .share-btn { font-size: 10px; padding: 8px 14px; }

  /* Footer */
  footer { padding: 48px 20px 28px; }
  .footer-logo { font-size: 16px; letter-spacing: 3px; margin-bottom: 24px; }
  .footer-sitelinks { gap: 12px; }
  .footer-sitelinks a { font-size: 10px; }
  .footer-nav { gap: 16px; }
  .footer-nav a { font-size: 9px; }
  .footer-legal { font-size: 13px; }

  /* Legal */
  .legal-hero { padding: 50px 20px 36px; }
  .legal-wrap { padding: 36px 20px 56px; }
  .legal-wrap p { font-size: 16px; }
  .legal-wrap ul li { font-size: 16px; }
  .legal-contact-box { padding: 24px 20px; }

  /* WA float */
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }

  /* Popup */
  .popup-inner { padding: 40px 28px; }
  .popup-inner h3 { font-size: 19px; }
}

/* ===== FIX OVERFLOW MOBILE ===== */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
img, svg, video, iframe, table {
  max-width: 100%;
}
.depoimentos-section::before,
footer::before {
  max-width: 100vw;
  width: 100% !important;
}
@media (max-width: 600px) {
  .numeros {
    grid-template-columns: repeat(2, 1fr);
  }
  .temas-grid {
    grid-template-columns: 1fr;
  }
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    padding: 0 10px;
  }
  .btn-wa, .btn-gold {
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .cta-buttons .btn-wa,
  .cta-buttons .btn-gold {
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
  .share-buttons {
    flex-wrap: wrap;
  }
  .quote-box {
    margin-left: 0;
    margin-right: 0;
  }
  .dep-card {
    word-break: break-word;
  }
  nav a, .nav-consulta {
    word-break: break-word;
    white-space: normal;
  }
  .footer-sitelinks {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer-sitelinks span { display: none; }
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .legal-wrap h2 {
    flex-wrap: wrap;
    font-size: 10px;
  }
  .content-wrap h3 {
    flex-wrap: wrap;
    font-size: 10px;
  }
}
