/* ===== MESTRECRUZ.COM.PT — CSS PRINCIPAL ===== */
@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:   #0d0d0d;
  --dourado:      #c9a84c;
  --dourado-claro:#e8c97a;
  --dourado-escuro:#a07c2a;
  --vermelho:     #cc0000;
  --vermelho-vivo:#e60000;
  --creme:        #f0e6d3;
  --cinza:        #888888;
  --cinza-claro:  #bbbbbb;
  --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;
}

/* ===== BARRA TOPO — SITELINKS ===== */
.sitelinks-bar {
  background: #050505;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 7px 30px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1.5px;
}
.sitelinks-bar span { color: rgba(201,168,76,0.4); margin: 0 8px; }
.sitelinks-bar a {
  color: var(--dourado);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity .2s;
}
.sitelinks-bar a:hover { opacity: 1; }

/* ===== HEADER ===== */
header {
  background: var(--preto);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-cruz { font-size: 22px; color: var(--dourado); }
.logo-nome {
  font-family: 'Cinzel Decorative', serif;
  font-size: 20px;
  color: var(--dourado);
  letter-spacing: 3px;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--branco);
  text-decoration: none;
  transition: color .2s;
}
nav a:hover, nav a.active { color: var(--dourado); }

.header-btn {
  background: var(--verde-wa);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s;
}
.header-btn:hover { background: var(--verde-wa-dark); transform: translateY(-1px); }

/* ===== CONTADOR ONLINE ===== */
.online-bar {
  background: rgba(201,168,76,0.06);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 9px 30px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--dourado);
}
.online-bar .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  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 6px rgba(68,255,68,0); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  text-align: center;
  padding: 90px 30px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(180,0,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--dourado);
  text-transform: uppercase;
  margin-bottom: 30px;
  opacity: .85;
}
.hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero h1 .branco { color: var(--creme); }
.hero h1 .vermelho { color: var(--vermelho-vivo); }

.hero-lead {
  font-size: 20px;
  color: var(--cinza-claro);
  max-width: 680px;
  margin: 0 auto 40px;
  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: 10px;
  background: var(--verde-wa);
  color: #fff; text-decoration: none;
  padding: 16px 36px; border-radius: 4px;
  font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 2px;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover { background: var(--verde-wa-dark); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--dourado);
  color: var(--dourado); text-decoration: none;
  padding: 15px 32px; border-radius: 4px;
  font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 2px;
  transition: all .3s;
}
.btn-gold:hover { background: rgba(201,168,76,0.12); }

/* ===== NÚMEROS DE IMPACTO ===== */
.numeros {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(201,168,76,0.15);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.numero-item {
  background: var(--preto);
  padding: 40px 30px;
  text-align: center;
}
.numero-item .num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 42px;
  color: var(--dourado);
  line-height: 1;
  margin-bottom: 10px;
}
.numero-item .label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--cinza);
  text-transform: uppercase;
}

/* ===== 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(--dourado-claro); font-style: italic; font-family: 'EB Garamond', serif; }
.content-wrap h3 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--dourado);
  text-transform: uppercase;
  margin: 40px 0 16px;
}
.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: 9px 0 9px 26px;
  position: relative;
  color: var(--cinza-claro);
  border-bottom: 1px solid rgba(201,168,76,0.07);
}
.content-wrap ul li::before { content: '✦'; position: absolute; left: 0; color: var(--vermelho); font-size: 10px; top: 13px; }

/* ===== QUOTE DESTAQUE ===== */
.quote-box {
  border-left: 3px solid var(--vermelho);
  padding: 28px 32px;
  background: rgba(204,0,0,0.05);
  margin: 40px 0;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--creme);
  line-height: 1.7;
}
.quote-box cite {
  display: block;
  margin-top: 14px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--dourado);
  font-style: normal;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos-section {
  background: #060606;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 70px 30px;
}
.depoimentos-section h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 26px;
  color: var(--dourado);
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 2px;
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.dep-card {
  background: var(--preto);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 30px 28px;
  position: relative;
}
.dep-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-family: 'Cinzel Decorative', serif;
  font-size: 60px;
  color: rgba(204,0,0,0.2);
  line-height: 1;
}
.dep-stars { color: var(--dourado); font-size: 16px; margin-bottom: 14px; }
.dep-texto { color: var(--cinza-claro); font-style: italic; font-size: 17px; line-height: 1.75; margin-bottom: 20px; }
.dep-autor { font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 2px; color: var(--dourado); }
.dep-cidade { font-size: 12px; color: var(--cinza); margin-top: 3px; }
.dep-resultado {
  display: inline-block;
  margin-top: 14px;
  background: rgba(204,0,0,0.15);
  border: 1px solid rgba(204,0,0,0.3);
  color: #ff6666;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 2px;
}

/* ===== CTA BOX ===== */
.cta-box {
  background: linear-gradient(135deg, rgba(204,0,0,0.12), rgba(0,0,0,0.9));
  border: 1px solid rgba(204,0,0,0.3);
  border-radius: 4px;
  padding: 55px 40px;
  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), transparent);
}
.cta-box h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 26px;
  color: var(--branco);
  margin-bottom: 16px;
}
.cta-box p { color: var(--cinza-claro); margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== GRID TEMAS ===== */
.temas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px 70px;
}
.tema-card {
  background: #060606;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px;
  padding: 32px 28px;
  text-decoration: none;
  display: block;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.tema-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--vermelho);
  transform: scaleX(0);
  transition: transform .3s;
}
.tema-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.6); }
.tema-card:hover::after { transform: scaleX(1); }
.tema-num { font-family: 'Cinzel', serif; font-size: 11px; color: rgba(201,168,76,0.4); letter-spacing: 3px; margin-bottom: 12px; }
.tema-card h3 { font-family: 'Cinzel', serif; font-size: 16px; color: var(--branco); margin-bottom: 10px; letter-spacing: 1px; }
.tema-card p { font-size: 15px; color: var(--cinza); line-height: 1.6; }

/* ===== BOTÕES PARTILHA ===== */
.share-section {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 30px 0;
  margin-top: 50px;
}
.share-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--cinza);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.share-buttons { display: flex; gap: 12px; 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: 11px;
  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: #000; color: #fff; border-color: #333; }
.share-tw:hover { background: #111; border-color: #555; }
.share-wa   { background: var(--verde-wa); color: #fff; }
.share-wa:hover { background: var(--verde-wa-dark); }

/* ===== POP-UP SAÍDA ===== */
#popup-saida {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#popup-saida.show { display: flex; }
.popup-inner {
  background: #0d0d0d;
  border: 1px solid rgba(204,0,0,0.5);
  border-radius: 4px;
  padding: 50px 45px;
  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), transparent);
}
.popup-close {
  position: absolute; top: 16px; right: 20px;
  color: var(--cinza); font-size: 22px; cursor: pointer;
  background: none; border: none;
}
.popup-icon { font-size: 44px; margin-bottom: 16px; }
.popup-inner h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 22px;
  color: var(--branco);
  margin-bottom: 12px;
}
.popup-inner p { color: var(--cinza-claro); margin-bottom: 28px; font-size: 17px; }

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 1000;
  width: 60px; height: 60px;
  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: 32px; height: 32px; 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: var(--preto);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 60px 30px 35px;
  text-align: center;
}
.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 22px;
  color: var(--dourado);
  letter-spacing: 4px;
  margin-bottom: 30px;
}
.footer-sitelinks {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-sitelinks a {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--dourado);
  text-decoration: none;
  opacity: .7;
  transition: opacity .2s;
}
.footer-sitelinks a:hover { opacity: 1; }
.footer-sitelinks span { color: rgba(201,168,76,0.3); }
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-nav a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cinza);
  text-decoration: none;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--dourado); }
.footer-legal {
  font-size: 13px;
  color: rgba(136,136,136,0.6);
  max-width: 700px;
  margin: 0 auto 10px;
  line-height: 1.7;
}
.footer-copy { font-size: 12px; color: rgba(136,136,136,0.4); margin-top: 14px; }

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  header { padding: 14px 20px; flex-wrap: wrap; gap: 14px; }
  nav { gap: 16px; }
  nav a { font-size: 11px; letter-spacing: 1px; }
  .content-wrap { padding: 50px 20px; }
  .cta-box { padding: 40px 24px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* ===== MENU HAMBURGER MOBILE ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dourado);
  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); }

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    padding: 12px 20px;
    gap: 10px;
  }
  .hamburger { display: flex; }
  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--preto);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 10px 0;
    order: 3;
  }
  nav.open { display: flex; }
  nav a {
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    border-radius: 0;
  }
  nav a:last-child { border-bottom: none; }
  .header-btn { font-size: 11px; padding: 8px 14px; }
  .sitelinks-bar { font-size: 10px; padding: 5px 10px; }
  .sitelinks-bar span { margin: 0 4px; }
}
