/* ================================================================
   Zizette Balbino Advogados Associados — Shared Stylesheet
   Paleta: ouro, marrom quente, creme — sem azul
   ================================================================ */

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

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

:root {
  --gold:        #C8A84B;
  --gold-dark:   #A8862E;
  --gold-light:  #DEC07A;
  --dark:        #2c1a0e;   /* marrom escuro quente — substitui navy */
  --dark-2:      #4a2e14;   /* marrom médio */
  --dark-bg:     #1a0f08;   /* fundo muito escuro quente (footer, seções dark) */
  --cream:       #f8f5f0;
  --cream-nav:   #faf7f2;
  --white:       #FFFFFF;
  --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: #1a1a1a;
  overflow-x: hidden;
  background: var(--cream);
}

/* ── EYEBROW / LABELS ─────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold-dark);
}
.eyebrow.light { color: var(--gold); }
.eyebrow.light::before, .eyebrow.light::after { background: var(--gold); }

/* ── SECTION TITLES ───────────────────────────────────── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
}
.section-title em { color: var(--gold-dark); font-style: italic; }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold); }
.section-center { text-align: center; margin-bottom: 56px; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #1a1a1a;
  padding: 14px 28px;
  border: none; border-radius: 4px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark); color: #fff;
  padding: 16px 36px;
  border: none; border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--dark-2); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 15px 32px;
  border: none; border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5d; }

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 76px;
  background: var(--cream-nav);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-badge {
  width: 44px; height: 44px;
  background: #e8d4b4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 17px; font-weight: 700;
  color: #4a2e14;
  letter-spacing: -1px; line-height: 1;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text span:first-child {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 600; color: #1a1a1a;
}
.nav-logo-text span:last-child {
  font-size: 10px; font-weight: 400;
  color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400;
  color: #555; text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.btn-nav {
  background: var(--gold); color: #1a1a1a;
  padding: 11px 22px;
  border: none; border-radius: 3px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s; display: inline-block;
}
.btn-nav:hover { background: var(--gold-dark); }

/* ── PAGE HEADER (páginas internas) ───────────────────── */
.page-header {
  position: relative;
  padding: 144px 48px 80px;
  overflow: hidden;
  text-align: center;
}
/* overlay rosa-vinho — separado do elemento filtrado para não sofrer sepia */
.page-header::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(150deg,
    rgba(55, 8, 8, 0.84) 0%,
    rgba(145, 38, 26, 0.48) 35%,
    rgba(115, 30, 20, 0.28) 68%,
    rgba(12, 3, 2, 0.44) 100%
  );
}
.page-header-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.82) sepia(0.35) saturate(1.1) hue-rotate(-10deg);
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400; color: #fff;
  line-height: 1.05; margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.page-header h1 em { color: var(--gold); font-style: italic; display: block; }
.page-header p {
  font-size: 17px; color: rgba(255,255,255,0.85);
  max-width: 560px; margin: 0 auto; line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0,0,0,0.50);
}

/* ── CTA SECTION ──────────────────────────────────────── */
.cta-section {
  background: var(--gold);
  padding: 80px 48px;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400; color: var(--dark);
  line-height: 1.15; margin-bottom: 14px;
}
.cta-section p {
  font-size: 15px; color: rgba(44,26,14,0.72);
  margin-bottom: 36px; max-width: 500px; margin-inline: auto;
  line-height: 1.65;
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.55);
  padding: 64px 48px 28px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 600; color: #fff;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 10px; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 600;
  color: #fff; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }
