/* ============================================================
   BRUXARIANEGRA.COM — Global Stylesheet v2
   Fundo: #FDF5C9 | Títulos: #CC0000 | Textos: #111
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&family=Cinzel:wght@400;600;700&family=EB+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

:root {
  --bg:        #FDF5C9;
  --red:       #CC0000;
  --red-dark:  #a00000;
  --red-light: #e60000;
  --red-glow:  rgba(204,0,0,0.22);
  --black:     #111111;
  --black2:    #2a2a2a;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-nav:   'Cinzel', serif;
  --font-body:  'EB Garamond', serif;
  --shadow-red: 0 2px 18px rgba(204,0,0,0.3);
}

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

body {
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(204,0,0,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(204,0,0,0.04) 40px);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 600;
  color: #000;
  min-height: 100vh;
}

/* ── ONLINE COUNTER BAR ── */
#online-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}
#online-bar .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #4eff91;
  border-radius: 50%;
  margin-right: 6px;
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ── HEADER ── */
header {
  background: var(--bg);
  border-bottom: 3px double var(--red);
  padding: 16px 20px 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-center { text-align: center; flex: 1; }
.header-center::before {
  content: '✦ ✦ ✦';
  display: block;
  color: var(--red);
  font-size: 0.65rem;
  letter-spacing: 6px;
  opacity: 0.45;
  margin-bottom: 4px;
}
.site-name {
  font-family: var(--font-title);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 6vw, 3.6rem);
  color: var(--red);
  text-shadow: var(--shadow-red);
  line-height: 1.1;
  margin-bottom: 2px;
  letter-spacing: 1px;
}
.site-tagline {
  font-family: var(--font-nav);
  font-size: clamp(0.52rem, 1.6vw, 0.68rem);
  color: #000;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* WhatsApp button top-right */
.header-wa {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-nav);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 9px 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(37,211,102,0.45);
  white-space: nowrap;
  transition: box-shadow 0.2s;
  animation: pulse-green 2.5s infinite;
}
.header-wa svg { width:15px; height:15px; fill:#fff; flex-shrink:0; }
/* Mobile header fixes */
@media (max-width: 600px) {
  header { padding: 14px 14px 12px; }
  .header-wa { display: none; }
  .site-name { font-size: clamp(1.6rem, 9vw, 2.4rem); }
  .site-tagline { font-size: 0.5rem; letter-spacing: 2px; }
  .header-center::before { display: none; }
}

/* ── NAV WITH DROPDOWNS ── */
nav {
  background: var(--red);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 3px 14px rgba(0,0,0,0.35);
}
.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--font-nav);
  letter-spacing: 1px;
  padding: 12px 18px;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.nav-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.nav-item { position: relative; }
.nav-item > a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s;
  border-right: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item > a.active { background: rgba(0,0,0,0.25); }
.nav-item > a .arr { font-size: 0.55rem; opacity: 0.8; transition: transform 0.2s; }
.nav-item:hover > a .arr { transform: rotate(180deg); }

/* Dropdown panel */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #a30000;
  min-width: 210px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  border-top: 2px solid rgba(255,255,255,0.15);
  z-index: 600;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-family: var(--font-nav);
  font-size: 0.68rem;
  letter-spacing: 0.8px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s;
  white-space: nowrap;
}
.dropdown a:hover { background: rgba(0,0,0,0.2); color: #fff; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-items { display: none; flex-direction: column; }
  .nav-items.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-item > a { font-size: 0.68rem; padding: 12px 18px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .dropdown { position: static; background: rgba(0,0,0,0.18); box-shadow: none; border: none; display: none; }
  .nav-item.mob-open .dropdown { display: block; }
  .nav-item:hover .dropdown { display: none; }
  .nav-item.mob-open .dropdown { display: block !important; }
}

/* ── MAIN LAYOUT ── */
.container { max-width: 860px; margin: 0 auto; padding: 40px 20px 60px; }

/* ── DIVIDER ── */
.divider { text-align: center; color: var(--red); font-size: 1rem; letter-spacing: 10px; margin: 28px 0; opacity: 0.45; }

/* ── HEADINGS ── */
h1 {
  font-family: var(--font-title);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--red);
  text-shadow: var(--shadow-red);
  line-height: 1.2;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 12px;
}
h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--red);
  margin: 32px 0 12px;
}
h3 { font-family: var(--font-title); font-size: 1.1rem; color: var(--red); margin: 22px 0 8px; }
p { margin-bottom: 16px; color: #000; font-weight: 600; }

/* ── BOX ── */
.box {
  border: 2px solid var(--red);
  border-radius: 6px;
  padding: 22px 24px;
  margin: 28px 0;
  background: rgba(204,0,0,0.04);
  position: relative;
}
.box::before {
  content: '✦';
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  color: var(--red);
  padding: 0 8px;
  font-size: 1rem;
}

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid rgba(204,0,0,0.2); margin-bottom: 14px; padding-bottom: 14px; }
.faq-q { font-family: var(--font-title); font-weight: 700; font-size: 0.95rem; color: var(--red); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.3rem; font-family: sans-serif; font-weight: 400; }
.faq-a { margin-top: 10px; font-size: 0.95rem; display: none; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-item.open .faq-a { display: block; }

/* ── TESTEMUNHOS ── */
.testimonial {
  background: rgba(204,0,0,0.05);
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 6px 6px 0;
  font-style: italic;
}
.testimonial cite { display: block; margin-top: 8px; font-style: normal; font-size: 0.82rem; color: var(--red); font-family: var(--font-nav); }

/* ── CTA WHATSAPP ── */
.cta-whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), #880000);
  border: 3px double rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 30px 24px;
  margin: 36px 0;
  text-align: center;
  box-shadow: 0 6px 28px rgba(204,0,0,0.4);
}
.cta-whatsapp .cta-title {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: #fff;
}
.cta-whatsapp .cta-sub { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-green 2.5s infinite;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,211,102,0.6); }
.btn-whatsapp svg { width:22px; height:22px; fill:#fff; flex-shrink:0; }
@keyframes pulse-green {
  0%,100%{ box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50%{ box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

/* ── FLOATING BUTTONS ── */
.float-btns {
  position: fixed;
  right: 18px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 400;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 6px 22px rgba(0,0,0,0.4); }
.float-btn svg { width:28px; height:28px; fill:#fff; }
.float-wa  { background: #25d366; animation: pulse-green 2.5s infinite; }
.float-tel { background: var(--red); }
.float-btn .tip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  font-family: var(--font-nav);
  font-size: 0.62rem;
  letter-spacing: 0.8px;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-btn:hover .tip { opacity: 1; }
@media (max-width: 768px) { .float-btns { bottom: 80px; right: 14px; } }
@media (max-width: 768px) { .float-btn { width:48px; height:48px; } .float-btn svg { width:24px; height:24px; } }

/* ── SHARE BUTTONS ── */
.share-section {
  border-top: 1px solid rgba(204,0,0,0.2);
  border-bottom: 1px solid rgba(204,0,0,0.2);
  padding: 20px 0; margin: 36px 0; text-align: center;
}
.share-label { font-family: var(--font-nav); font-size: 0.65rem; letter-spacing: 2px; color: var(--red); margin-bottom: 12px; text-transform: uppercase; }
.share-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 4px;
  font-family: var(--font-nav); font-size: 0.6rem; letter-spacing: 1px;
  text-decoration: none; color: #fff; font-weight: 700;
  transition: opacity 0.2s, transform 0.2s;
}
.share-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.share-btn svg { width:15px; height:15px; fill:#fff; }
.share-fb { background: #1877f2; }
.share-tw { background: #000; }
.share-wa { background: #25d366; }
.share-tg { background: #0088cc; }

/* ── FOOTER ── */
footer {
  background: var(--red);
  color: rgba(255,255,255,0.85);
  padding: 36px 20px 24px;
  margin-top: 60px;
}
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-occult {
  text-align: center;
  font-family: var(--font-title);
  font-style: italic;
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  letter-spacing: 6px;
}
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: center; margin-bottom: 28px;
}
.footer-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.footer-policy {
  text-align: center;
  margin-bottom: 18px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 18px;
}
.footer-policy a {
  color: #fff;
  text-decoration: underline;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  letter-spacing: 1px;
  transition: opacity 0.2s;
}
.footer-policy a:hover { opacity: 0.8; }
.footer-legal {
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  font-family: var(--font-body);
}
.footer-legal strong { color: #fff; font-size: 0.9rem; }

/* ── EXIT INTENT POPUP ── */
#exit-popup {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 9999;
  align-items: center; justify-content: center;
  padding: 20px;
}
#exit-popup.show { display: flex; }
.exit-box {
  background: var(--bg);
  border: 3px double var(--red);
  border-radius: 12px;
  max-width: 460px; width: 100%;
  padding: 36px 30px;
  text-align: center;
  position: relative;
  animation: popIn 0.3s ease;
}
@keyframes popIn { from{transform:scale(0.85);opacity:0} to{transform:scale(1);opacity:1} }
.exit-close { position: absolute; top: 12px; right: 16px; font-size: 1.4rem; cursor: pointer; color: var(--red); background: none; border: none; }
.exit-title { font-family: var(--font-title); font-style: italic; font-weight: 900; font-size: 1.8rem; color: var(--red); margin-bottom: 10px; }
.exit-body { font-size: 0.95rem; margin-bottom: 20px; color: var(--black2); }

/* ── STICKY MOBILE CTA ── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--red);
  padding: 11px 16px; text-align: center;
  z-index: 300; box-shadow: 0 -3px 12px rgba(0,0,0,0.3);
}
.sticky-cta a {
  color: #fff; font-family: var(--font-nav); font-size: 0.75rem;
  letter-spacing: 1px; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  white-space: nowrap; overflow: hidden;
}
.sticky-cta svg { width:18px; height:18px; fill:#fff; flex-shrink:0; }
@media (max-width: 768px) { .sticky-cta { display: block; } body { padding-bottom: 54px; } }

/* ── MISC ── */
ul { padding-left: 22px; margin-bottom: 16px; }
ul li { margin-bottom: 6px; }
a { color: var(--red); }
img { max-width: 100%; height: auto; border-radius: 6px; }
@media (max-width: 600px) { .container { padding: 24px 16px 50px; } }
