/* ============================================================
   Pablo Ledesma Advocacia — stylesheet único
   Compartilhado por: index.html, artigos/*.html
   Paleta e tokens preservados 1:1 do original.
   ============================================================ */

/* ================ HOME ================ */
/* =============================================
   TOKENS & RESET
   ============================================= */
:root {
  --navy:       #0B1F34;
  --navy-mid:   #0D2A3F;
  --navy-deep:  #081929;
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dim:   #9E7C46;
  --cream:      #F8F5EF;
  --white:      #FFFFFF;
  --text:       #1A2332;
  --muted:      #5A6473;
  --border:     rgba(201,169,110,0.18);
  --border-s:   rgba(11,31,52,0.08);
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* =============================================
   HEADER
   ============================================= */
#header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(11,31,52,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 104px;
  transition: height 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
#header.scrolled {
  height: 80px;
  box-shadow: 0 8px 40px rgba(8,25,41,0.4);
}
.brand-header { display: flex; align-items: center; gap: 20px; }
.logo-header {
  height: 76px;
  width: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 6px;
  transition: height 0.35s var(--ease);
}
#header.scrolled .logo-header { height: 60px; }
.brand-title {
  display: flex; flex-direction: column;
  border-left: 1px solid var(--border);
  padding-left: 20px;
}
.brand-title h1, .brand-title .brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.brand-title span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}
nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: var(--gold); background: rgba(201,169,110,0.08); }
.nav-cta {
  margin-left: 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 10px 20px;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}

/* Mobile menu toggle */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  transition: all 0.3s ease;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}

/* Background texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,169,110,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 10% 90%, rgba(13,42,63,0.8) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative vertical line */
.hero::after {
  content: '';
  position: absolute; top: 0; left: 52%; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,169,110,0.2) 20%, rgba(201,169,110,0.2) 80%, transparent);
  pointer-events: none;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 48px 0;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: end;
  position: relative; z-index: 1;
}
.hero-text { padding-bottom: 80px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 3px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 30px rgba(201,169,110,0.25);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(201,169,110,0.35);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 3px;
  transition: all 0.3s var(--ease);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.05);
}
.hero-photo {
  align-self: end;
  position: relative;
}
.hero-photo-frame {
  position: relative;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  box-shadow: -24px 0 80px rgba(8,25,41,0.6);
}
.hero-photo-frame::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 60%, rgba(11,31,52,0.4) 100%);
}
.hero-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-photo-label {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  background: rgba(201,169,110,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-bottom: none;
  padding: 16px 24px;
  z-index: 2;
  border-radius: 4px 4px 0 0;
}
.hero-photo-label strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.hero-photo-label span {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1240px; margin: 0 auto; padding: 32px 48px;
  display: flex; justify-content: space-around; align-items: center;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-item .label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  display: block;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section { max-width: 1240px; margin: 0 auto; padding: 96px 48px; }
.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold-dim);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dim);
}

/* =============================================
   DIVIDER LINE
   ============================================= */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 30%, var(--gold-dim) 70%, transparent);
  opacity: 0.25;
  max-width: 1240px;
  margin: 0 auto;
}

/* =============================================
   AREAS DE ATUAÇÃO
   ============================================= */
#areas { background: var(--cream); }
.areas-header { max-width: 580px; margin-bottom: 64px; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--border-s);
  border: 1px solid var(--border-s);
  border-radius: 4px;
  overflow: hidden;
}
.area-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  transition: background 0.35s var(--ease);
  cursor: default;
}
.area-card::after {
  content: '';
  position: absolute; bottom: 0; left: 36px; right: 36px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.area-card:hover { background: #FAFAF8; }
.area-card:hover::after { transform: scaleX(1); }
.area-icon {
  width: 40px; height: 40px;
  margin-bottom: 24px;
  color: var(--gold-dim);
}
.area-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.area-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================
   SOBRE
   ============================================= */
#sobre {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#sobre::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.sobre-content .section-title { color: var(--white); }
.sobre-text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-top: 28px;
}
.sobre-text p + p { margin-top: 16px; }
.sobre-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.feat-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.feat-item:hover {
  background: rgba(201,169,110,0.06);
  border-color: rgba(201,169,110,0.3);
}
.feat-dot {
  flex-shrink: 0; margin-top: 3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.feat-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.sobre-photo-wrap {
  position: relative;
}
.sobre-photo-bg {
  position: absolute; top: -20px; right: -20px; bottom: 20px; left: 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  pointer-events: none;
}
.sobre-photo {
  position: relative; z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.sobre-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%);
  transition: filter 0.5s ease;
}
.sobre-photo:hover img { filter: grayscale(0%); }
.sobre-badge {
  position: absolute; bottom: 24px; left: -24px; z-index: 2;
  background: var(--gold);
  padding: 16px 24px;
  border-radius: 3px;
  box-shadow: 0 16px 40px rgba(8,25,41,0.5);
}
.sobre-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.sobre-badge span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-top: 4px;
  display: block;
}

/* =============================================
   FORUM PHOTO / DESTAQUES
   ============================================= */
.destaque-strip {
  background: var(--white);
}
.destaque-inner {
  max-width: 1240px; margin: 0 auto; padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.destaque-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(11,31,52,0.15);
  aspect-ratio: 1 / 1;
}
.destaque-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.destaque-img-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(11,31,52,0.9) 0%, transparent 100%);
  padding: 24px 20px 16px;
}
.destaque-img-tag p {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.destaque-content .section-label { color: var(--gold-dim); }
.destaque-content .section-title { color: var(--navy); }
.quote-block {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(201,169,110,0.04);
  border-radius: 0 4px 4px 0;
}
.quote-block p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}
.quote-block footer {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
  background: none;
  padding: 0;
}

/* =============================================
   FAQ
   ============================================= */
#faq { background: var(--cream); }
.faq-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-intro .section-title { margin-top: 20px; }
.faq-intro p {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border-s);
}
.faq-item:first-child { border-top: 1px solid var(--border-s); }
details.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
  transition: color 0.2s ease;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { color: var(--gold-dim); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 300;
  color: var(--gold-dim);
  transition: all 0.3s ease;
}
details[open] .faq-icon { background: var(--gold-dim); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 24px 0;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
}

/* =============================================
   CONTATO
   ============================================= */
#contato { background: var(--navy); position: relative; overflow: hidden; }
#contato::before {
  content: '';
  position: absolute; bottom: -200px; left: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: start;
  position: relative; z-index: 1;
}
.contato-info .section-title { color: var(--white); }
.contato-info > p {
  margin-top: 20px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
}
.contato-channels { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.channel-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.channel-item:hover {
  border-color: rgba(201,169,110,0.35);
  background: rgba(201,169,110,0.05);
  color: var(--white);
}
.channel-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,169,110,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}
.channel-item strong { display: block; color: inherit; font-size: 0.88rem; }
.channel-item span { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.privacy-note {
  margin-top: 28px;
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.privacy-note svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-dim); }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  transition: border-color 0.25s ease, background 0.25s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(201,169,110,0.6);
  background: rgba(255,255,255,0.08);
}
.form-group select option { background: var(--navy-deep); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; margin-top: 8px;
  padding: 16px 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,169,110,0.3);
}
#formSuccess {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 4px;
  color: var(--gold-light);
  font-size: 0.9rem;
  text-align: center;
  opacity: 0; transition: opacity 0.5s ease;
}

/* =============================================
   FOOTER
   ============================================= */
footer.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand img {
  height: 76px;
  width: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  max-width: 320px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col address { font-style: normal; }
.footer-col address p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-col address a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.footer-col address a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-oab {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 8px;
}
.footer-oab::before {
  content: '§';
  color: var(--gold-dim);
  font-size: 0.9rem;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 12px;
  animation: floatIn 1.2s var(--ease) both;
}
@keyframes floatIn { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }
.whatsapp-label-text {
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(8,25,41,0.3);
  display: none;
}
@media(min-width:768px){ .whatsapp-label-text { display: block; } }
.whatsapp-btn {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366;
  border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.whatsapp-btn:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 14px 40px rgba(37,211,102,0.5); }
.whatsapp-btn img { width: 32px; height: 32px; }

/* =============================================
   PAGE ENTER ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media(max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 32px 0; gap: 40px; }
  .hero::after { display: none; }
  .hero-photo { max-width: 380px; }
  .hero-text { padding-bottom: 0; }
  .hero-photo-frame { border-radius: 4px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-badge { left: 0; }
  .destaque-inner { grid-template-columns: 1fr; gap: 48px; }
  .contato-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  #header { padding: 0 24px; }
  .brand-title { display: none; }
  nav .nav-link { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 48px 24px 0; }
  .section { padding: 64px 24px; }
  .stats-inner { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .stat-divider { display: none; }
  .destaque-inner { padding: 64px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  footer.site-footer { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .areas-grid { grid-template-columns: 1fr; }
  .sobre-feats { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
}
@media(max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .hero-photo { max-width: 300px; margin: 0 auto; }
}

/* ================ ARTIGO (individual) — apenas seletores novos ================ */
:root {
  --navy:       #0B1F34;
  --navy-mid:   #0D2A3F;
  --navy-deep:  #081929;
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dim:   #9E7C46;
  --cream:      #F8F5EF;
  --white:      #FFFFFF;
  --text:       #1A2332;
  --muted:      #5A6473;
  --border:     rgba(201,169,110,0.18);
  --border-s:   rgba(11,31,52,0.08);
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}
.nav-link.active { color: var(--gold); }
.article-hero { background: var(--navy); position: relative; overflow: hidden; }
.article-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(201,169,110,0.07) 0%, transparent 60%); pointer-events: none; }
.article-hero-inner { max-width: 820px; margin: 0 auto; padding: 80px 32px 56px; position: relative; z-index: 1; }
.article-tag { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 7px 14px; border-radius: 20px; margin-bottom: 24px; }
.article-hero h1 { font-family: var(--font-serif); font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 600; line-height: 1.22; color: var(--white); letter-spacing: -0.01em; margin-bottom: 20px; }
.article-hero-meta { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.article-hero-meta span:not(:last-child)::after { content: '·'; margin-left: 12px; color: var(--gold-dim); }
.article-body-wrap { max-width: 820px; margin: 0 auto; padding: 64px 32px; }
.article-body { font-size: 1.02rem; color: var(--text); line-height: 1.9; }
.article-body h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; color: var(--navy); margin: 40px 0 16px; line-height: 1.3; }
.article-body h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--navy); margin: 32px 0 12px; }
.article-body p { margin-bottom: 20px; color: var(--text); }
.article-body p.lead { font-size: 1.15rem; color: var(--muted); font-weight: 400; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 10px; line-height: 1.7; }
.article-body strong { color: var(--navy); }
.article-body a { color: var(--gold-dim); text-decoration: underline; text-underline-offset: 3px; }
.article-callout { margin: 32px 0; padding: 24px 28px; border-left: 3px solid var(--gold); background: rgba(201,169,110,0.06); border-radius: 0 4px 4px 0; }
.article-callout p { margin: 0; font-size: 0.95rem; color: var(--navy); }
.article-callout p + p { margin-top: 10px; }
.article-cta { margin-top: 56px; padding: 40px 36px; background: var(--navy); border-radius: 6px; text-align: center; }
.article-cta h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.article-cta p { font-size: 0.92rem; color: rgba(255,255,255,0.6); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 48px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dim); }
.whatsapp-float { position: fixed; bottom: 28px; left: 28px; z-index: 9999; display: flex; align-items: center; gap: 12px; animation: floatIn 1.2s var(--ease) both; }
@keyframes floatIn { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }
@media(min-width:768px){ .whatsapp-label-text { display: block; } }
@media(max-width: 768px) {
  #header { padding: 0 24px; }
  .brand-title { display: none; }
  nav .nav-link { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .article-hero-inner { padding: 56px 24px 40px; }
  .article-body-wrap { padding: 48px 24px; }
  .article-cta { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  footer.site-footer { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ================ LISTAGEM DE ARTIGOS — apenas seletores novos ================ */
/* =============================================
   TOKENS & RESET (mirrors index.html)
   ============================================= */
:root {
  --navy:       #0B1F34;
  --navy-mid:   #0D2A3F;
  --navy-deep:  #081929;
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dim:   #9E7C46;
  --cream:      #F8F5EF;
  --white:      #FFFFFF;
  --text:       #1A2332;
  --muted:      #5A6473;
  --border:     rgba(201,169,110,0.18);
  --border-s:   rgba(11,31,52,0.08);
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}
::-webkit-scrollbar { width: 4px; }
/* HEADER (mirrors index.html) */
#header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(11,31,52,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 104px;
  transition: height 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
/* PAGE HERO */
.page-hero { background: var(--navy); position: relative; overflow: hidden; }
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(201,169,110,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1240px; margin: 0 auto; padding: 88px 48px 64px; position: relative; z-index: 1; }
.page-eyebrow { display: flex; align-items: center; gap: 12px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.page-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.page-title { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; line-height: 1.15; color: var(--white); letter-spacing: -0.01em; margin-bottom: 20px; }
.page-title em { font-style: italic; font-weight: 300; color: var(--gold-light); }
.page-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.65); max-width: 620px; line-height: 1.75; }
/* SECTION COMMON */
.section { max-width: 1240px; margin: 0 auto; padding: 80px 48px; }
/* ARTICLES GRID */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.article-card {
  background: var(--white);
  border: 1px solid var(--border-s);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(11,31,52,0.12); border-color: var(--border); }
.article-card-body { padding: 32px 28px; display: flex; flex-direction: column; flex: 1; }
.article-card h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 12px; }
.article-card p.excerpt { font-size: 0.9rem; color: var(--muted); line-height: 1.7; flex: 1; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-size: 0.76rem; color: var(--muted); }
.article-meta span:not(:last-child)::after { content: '·'; margin-left: 12px; color: var(--border); }
.article-link { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dim); }
.article-card:hover .article-link { color: var(--navy); }
/* EMPTY STATE */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 32px;
  border: 1px dashed var(--border);
  border-radius: 6px;
  background: var(--white);
}
.empty-state p.big { font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 10px; }
.empty-state p.small { font-size: 0.9rem; color: var(--muted); }
/* CTA STRIP */
.cta-strip { background: var(--navy); position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%); pointer-events: none; }
.cta-strip-inner { max-width: 1240px; margin: 0 auto; padding: 72px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-strip h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 600; color: var(--white); max-width: 520px; }
.cta-strip h2 em { font-style: italic; font-weight: 300; color: var(--gold-light); }
/* FOOTER (mirrors index.html) */
footer.site-footer { background: var(--navy-deep); border-top: 1px solid var(--border); padding: 48px; }
/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 28px; left: 28px; z-index: 9999; display: flex; align-items: center; gap: 12px; animation: floatIn 1.2s var(--ease) both; }
@keyframes floatIn { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }
@media(min-width:768px){ .whatsapp-label-text { display: block; } }
/* RESPONSIVE */
@media(max-width: 768px) {
  #header { padding: 0 24px; }
  .brand-title { display: none; }
  nav .nav-link { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .page-hero-inner { padding: 56px 24px 48px; }
  .section { padding: 56px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  footer.site-footer { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-strip-inner { padding: 56px 24px; flex-direction: column; align-items: flex-start; }
}

/* ================ TYPEBOT (posicionamento) ================ */
  /* Typebot à esquerda do WhatsApp */
  typebot-bubble {
    --typebot-bubble-right: 110px !important;
    --typebot-bubble-bottom: 28px !important;
  }
  @media(max-width: 768px) {
    typebot-bubble {
      --typebot-bubble-right: 96px !important;
      --typebot-bubble-bottom: 18px !important;
    }
  }


/* ================ MELHORIAS DE ACESSIBILIDADE (novo) ================ */

/* Skip link - visível ao Tab, oculto no fluxo normal */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--navy);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Foco visível para navegação por teclado */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
