/* ============================================================
   LAIZA MARINS — ADVOCACIA ESPECIALIZADA
   Design System v2 | Premium · Jurídico · Refinado
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */


/* ---------- TOKENS ---------- */
:root {
  /* Paleta principal — Vermelho institucional + bege quente + dourado */
  --ink:         #1a1118;
  --wine:        #c0392b;   /* vermelho mais aberto e institucional */
  --wine-mid:    #a93226;
  --wine-light:  #d45246;
  --wine-glow:   rgba(192,57,43,0.09);
  --wine-glow-md:rgba(192,57,43,0.16);
  --gold:        #b8965a;
  --gold-soft:   rgba(184,150,90,0.15);
  --gold-line:   rgba(184,150,90,0.28);

  /* Fundos — bege quente, menos rosado */
  --bg:          #f9f6f1;   /* bege neutro quente */
  --bg-warm:     #f3ede4;   /* bege um pouco mais profundo */
  --bg-cream:    #ece4d8;
  --bg-dark:     #120e10;
  --bg-card:     #ffffff;

  /* Texto */
  --text:        #1a1118;
  --text-2:      #3d2d35;
  --muted:       #7a6870;
  --muted-light: #b09aa4;
  --on-dark:     rgba(255,255,255,0.92);
  --on-dark-2:   rgba(255,255,255,0.54);

  /* Linhas */
  --line:        rgba(26,17,24,0.10);
  --line-soft:   rgba(26,17,24,0.06);
  --line-dark:   rgba(255,255,255,0.08);

  /* Sombras */
  --shadow-xs:   0 2px 8px rgba(26,17,24,0.06);
  --shadow-sm:   0 8px 28px rgba(26,17,24,0.08);
  --shadow-md:   0 20px 56px rgba(26,17,24,0.10);
  --shadow-lg:   0 32px 80px rgba(26,17,24,0.14);
  --shadow-wine: 0 12px 36px rgba(92,26,38,0.24);

  /* Geometria */
  --radius-xs:   6px;
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --max:         1180px;

  /* Tipografia */
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;

  /* Transições */
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:      160ms;
  --t-mid:       280ms;
  --t-slow:      500ms;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(184,150,90,0.05), transparent),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(92,26,38,0.04), transparent);
  pointer-events: none;
  z-index: -1;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
p { margin: 0 0 16px; color: var(--text-2); }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 16px;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

/* ---------- TIPOGRAFIA AUXILIAR ---------- */
.kicker {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.kicker::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold-line);
  margin-top: 10px;
}
.kicker-centered::after { margin: 10px auto 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--gold-line);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- HEADER ---------- */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,246,0.90);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow var(--t-mid) var(--ease), background var(--t-mid);
}
.topbar.is-scrolled {
  background: rgba(250,248,246,0.97);
  box-shadow: var(--shadow-sm);
}
.topbar-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px; min-height: 84px;
}
.brand { display: flex; flex-direction: column; gap: 2px; }
.brand-title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400;
  color: var(--wine); letter-spacing: 0.01em;
}
.brand-sub {
  font-size: .68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
  font-size: .86rem; font-weight: 500;
  color: var(--muted);
  padding: 8px 14px; border-radius: var(--radius-xs);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav a:hover { color: var(--wine); background: var(--wine-glow); }
.nav-active { color: var(--wine) !important; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 48px; padding: 0 24px;
  border-radius: 999px; font-family: var(--font-body);
  font-size: .86rem; font-weight: 600;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--wine), var(--wine-mid));
  color: #fff;
  box-shadow: 0 4px 18px rgba(92,26,38,0.28);
}
.btn-primary:hover { box-shadow: var(--shadow-wine); }
.btn-secondary {
  background: var(--bg-card); color: var(--wine);
  border-color: var(--gold-line);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.btn-ghost {
  background: transparent; color: var(--on-dark);
  border-color: rgba(255,255,255,0.24);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: auto;
  background: var(--bg-warm);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 110% 50%, rgba(184,150,90,0.07), transparent),
    radial-gradient(ellipse 60% 80% at -10% 60%, rgba(92,26,38,0.06), transparent);
  pointer-events: none;
}
/* Linha vertical decorativa */
.hero::after {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-line) 30%, var(--gold-line) 70%, transparent);
  pointer-events: none;
  opacity: 0.4;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
  min-height: auto;
  padding: clamp(20px, 3vw, 32px) 0;
}
.hero-copy { position: relative; }
.hero h1 { margin-bottom: 22px; max-width: 680px; }
.hero h1 em { font-style: italic; color: var(--wine); }
.hero > .container > .hero-inner > div > p {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--text-2); max-width: 520px; line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-badges {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; max-width: 560px;
}
.badge {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .8rem; color: var(--text-2);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid);
}
.badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* Foto hero */
.hero-card {
  position: relative;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  justify-self: end; max-width: 460px; width: 100%;
}
.hero-card::after {
  content: '';
  position: absolute; inset: auto 20px -14px 20px;
  height: 28px; border-radius: 999px;
  background: rgba(26,17,24,0.10);
  filter: blur(14px); z-index: -1;
}
.hero-card img {
  display: block; width: 100%;
  height: clamp(480px, 55vw, 660px);
  object-fit: cover; object-position: top center;
  border-radius: calc(var(--radius-xl) - 12px);
  transition: transform 0.8s var(--ease);
}
.hero-card:hover img { transform: scale(1.02); }

/* Badge flutuante na foto */
.hero-card-badge {
  position: absolute; bottom: 28px; left: -20px;
  background: var(--wine);
  color: #fff; border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-wine);
  min-width: 190px;
}
.hero-card-badge strong { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 3px; }
.hero-card-badge span { font-size: .72rem; color: rgba(255,255,255,0.7); }

/* ---------- SEÇÕES ---------- */
section { padding: clamp(20px, 3vw, 36px) 0; }
.section-soft { background: var(--bg-warm); }
.section-dark {
  background: var(--ink); color: var(--on-dark);
  position: relative; overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184,150,90,0.06), transparent);
  pointer-events: none;
}
.section-head {
  max-width: 780px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
}
.section-head p { font-size: 1.06rem; color: var(--muted); }

/* ---------- ÁREAS DE ATUAÇÃO ---------- */
.areas-grid-primary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 22px; }
.areas-grid-secondary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-mid) var(--ease-spring), box-shadow var(--t-mid), border-color var(--t-mid);
  position: relative; overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(26,17,24,0.14); }
.card:hover::before { transform: scaleX(1); }
.card.soft { background: var(--bg-warm); box-shadow: none; }
.card.soft::before { display: none; }
.card.soft:hover { box-shadow: var(--shadow-sm); }

.icon {
  width: 46px; height: 46px; border-radius: var(--radius-xs);
  background: var(--wine-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--wine); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 18px;
  font-family: var(--font-display);
}
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ---------- PROBLEMAS ---------- */
.problems-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.problems-wrap h2 { margin-bottom: 16px; }
.problems-wrap > div > p { margin-bottom: 28px; }
.problem-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 32px; }
.problem-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .85rem; color: var(--text-2);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid), border-color var(--t-mid);
}
.problem-item::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--wine); flex-shrink: 0;
}
.problem-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: var(--gold-line); }

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-frame img {
  display: block; width: 100%;
  height: clamp(420px, 45vw, 580px);
  object-fit: cover; object-position: top;
  transition: transform 0.8s var(--ease);
}
.media-frame:hover img { transform: scale(1.03); }
/* Moldura decorativa */
.media-frame::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(184,150,90,0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* ---------- SOBRE ---------- */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-wrap h2 { margin-bottom: 18px; }
.points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.point {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .84rem; color: var(--text-2);
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid);
}
.point::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.point:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ---------- PROCESSO ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid);
}
.step-card::before {
  content: '';
  position: absolute; inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--wine), rgba(92,26,38,0.12));
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--wine); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem;
  margin-bottom: 18px;
}
.step-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { font-size: .86rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.faq-list { display: grid; gap: 10px; margin-top: 24px; }
details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-mid), border-color var(--t-mid);
}
details[open] { border-color: var(--gold-line); box-shadow: var(--shadow-sm); }
summary {
  cursor: pointer; font-weight: 600; font-size: .95rem;
  color: var(--text); list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.2rem; color: var(--wine); flex-shrink: 0;
  transition: transform var(--t-mid) var(--ease);
}
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 14px; margin-bottom: 0; font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* Commitments e Instagram */
.commitments-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 18px;
}
.quote {
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: .9rem; color: var(--text-2);
  line-height: 1.7; margin-bottom: 10px;
  border-left: 3px solid var(--gold-line);
}
.quote:last-child { margin-bottom: 0; }

.instagram-box {
  background: var(--ink);
  color: var(--on-dark);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.instagram-box::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,0.08), transparent 70%);
  pointer-events: none;
}
.instagram-box h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.instagram-box p { color: var(--on-dark-2); font-size: .88rem; margin-bottom: 20px; }
.instagram-box .kicker { color: var(--gold); }
.instagram-box .kicker::after { background: var(--gold-line); }

/* ---------- BLOG PREVIEW (HOME) ---------- */
.home-legal-preview { background: var(--bg-warm); }
.home-legal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin: 36px 0 28px;
}
.home-legal-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-mid) var(--ease-spring), box-shadow var(--t-mid), border-color var(--t-mid);
}
.home-legal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-line); }
.home-legal-card-image { display: block; aspect-ratio: 4/3; overflow: hidden; }
.home-legal-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.home-legal-card:hover .home-legal-card-image img { transform: scale(1.05); }
.home-legal-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.home-legal-meta { font-size: .72rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.home-legal-card-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--text); margin: 0; line-height: 1.3; }
.home-legal-card-body h3 a { color: inherit; transition: color var(--t-fast); }
.home-legal-card-body h3 a:hover { color: var(--wine); }
.blog-link { font-size: .8rem; font-weight: 600; color: var(--wine); margin-top: auto; transition: gap var(--t-fast); display: inline-flex; align-items: center; gap: 4px; }
.blog-link::after { content: '→'; }
.blog-link:hover { gap: 8px; }
.home-legal-actions { display: flex; justify-content: center; }

/* Skeleton loading */
.home-legal-skeleton-card, .skeleton-card {
  background: linear-gradient(90deg, var(--bg-warm) 25%, var(--bg-cream) 50%, var(--bg-warm) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-md);
  min-height: 280px;
}
.skeleton { border-radius: 6px; background: rgba(26,17,24,0.07); }
.skeleton-image { height: 160px; margin-bottom: 16px; border-radius: var(--radius-sm); }
.skeleton-meta { height: 12px; width: 60%; margin-bottom: 10px; }
.skeleton-title { height: 18px; width: 90%; margin-bottom: 8px; }
.skeleton-title.short { width: 65%; }
.skeleton-button { height: 14px; width: 40%; margin-top: 12px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ---------- CONTATO ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.form-mock { display: grid; gap: 12px; margin-top: 24px; }
.field {
  min-height: 52px; display: flex; align-items: center;
  padding: 0 18px; border-radius: var(--radius-sm);
  background: var(--bg-warm); border: 1px solid var(--line);
  color: var(--muted); font-size: .88rem;
}
.field.large { min-height: 106px; align-items: flex-start; padding-top: 16px; }

/* ---------- BLOG (PÁGINA /blog/) ---------- */
.blog-page { background: var(--bg); }
.blog-hero { padding-top: 52px; background: var(--bg-warm); }
.blog-hero-head { text-align: left; max-width: 900px; margin: 0 0 40px; }
.blog-benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin: 0 0 36px;
}
.blog-benefit-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 18px;
  font-size: .83rem; color: var(--text-2);
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-mid) var(--ease-spring), box-shadow var(--t-mid), border-color var(--t-mid);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-line); }
.blog-card-image { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-card-body h2, .blog-card-body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; margin-bottom: 10px; }
.blog-card-body h2 a, .blog-card-body h3 a { color: var(--text); transition: color var(--t-fast); }
.blog-card-body h2 a:hover, .blog-card-body h3 a:hover { color: var(--wine); }
.blog-meta { font-size: .72rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.blog-card-body p { font-size: .86rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.blog-empty {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 40px; text-align: center;
  grid-column: 1 / -1;
}
.blog-cta { background: var(--ink); padding: clamp(60px, 7vw, 88px) 0; }
.blog-cta-box { max-width: 680px; margin: 0 auto; text-align: center; }
.blog-cta-box .kicker { color: var(--gold); }
.blog-cta-box h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.blog-cta-box p { color: var(--on-dark-2); margin-bottom: 28px; }

/* ---------- POSTS (PÁGINA /blog/post/) ---------- */
.post-shell { padding-top: 52px; }
.post-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow-md);
}
.post-breadcrumb { font-size: .72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.post-card h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 900px; }
.post-meta { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin: 14px 0 28px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.post-cover { margin: 0 0 32px; }
.post-cover img { width: 100%; max-height: 540px; object-fit: cover; border-radius: var(--radius-md); display: block; }
.post-content { font-size: 1.02rem; line-height: 1.85; color: var(--text-2); max-width: 780px; }
.post-content p { margin-bottom: 20px; }
.post-content h2, .post-content h3 { color: var(--text); margin: 32px 0 14px; }
.post-content img { max-width: 100%; border-radius: var(--radius-sm); margin: 24px 0; }
.post-content a { color: var(--wine); text-decoration: underline; text-decoration-color: var(--gold-line); }
.post-inline-cta, .post-final-cta {
  background: var(--bg-warm); border: 1px solid var(--gold-line);
  border-radius: var(--radius-md); padding: 28px 30px; margin: 36px 0;
}
.post-inline-cta h3, .post-final-cta h3 { font-size: 1.2rem; margin-bottom: 10px; }
.post-inline-cta p, .post-final-cta p { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.post-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line-soft); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink); color: var(--on-dark);
  border-top: 1px solid var(--line-dark);
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding: clamp(52px, 7vw, 84px) 0 clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--line-dark);
}
.footer h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: #fff; margin-bottom: 16px; }
.footer p { font-size: .84rem; color: var(--on-dark-2); line-height: 1.65; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer li { font-size: .84rem; color: var(--on-dark-2); }
.footer li a { color: var(--on-dark-2); transition: color var(--t-fast); }
.footer li a:hover { color: var(--gold); }
.footer-credit {
  padding: 22px 0; text-align: center;
  font-size: .74rem; color: var(--on-dark-2);
}
.footer-credit a { color: var(--on-dark-2); transition: color var(--t-fast); }
.footer-credit a:hover { color: var(--gold); }

/* ---------- FLOATING WHATSAPP ---------- */
.laiza-floating-whatsapp-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
}
.laiza-floating-whatsapp-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 56px; padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wine), var(--wine-mid)); color: #fff;
  font-weight: 600; font-size: .9rem;
  box-shadow: 0 12px 28px rgba(192,57,43,0.30);
  transition: transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast);
}
.laiza-floating-whatsapp-cta a:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(192,57,43,0.38); }
.laiza-floating-whatsapp-icon { font-size: 1.1rem; }

/* ---------- REVEAL / ANIMAÇÕES ---------- */
body.is-ready .reveal { opacity: 0; transform: translateY(28px) scale(0.985); }
body.is-ready .reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal { transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.21s; }

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1100px) {
  .home-legal-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 60px 0 80px; }
  .hero-card { justify-self: start; max-width: 600px; }
  .hero-card-badge { left: 0; }
  .problems-wrap, .about-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .areas-grid-primary { grid-template-columns: 1fr; }
  .areas-grid-secondary { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .problem-list { grid-template-columns: 1fr; }
  .points { grid-template-columns: 1fr; }
  .hero-badges { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-benefits { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .post-actions { flex-direction: column; }
  .laiza-floating-whatsapp-cta { right: 14px; left: 14px; bottom: 14px; }
  .laiza-floating-whatsapp-cta a { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .home-legal-grid { grid-template-columns: 1fr; }
  .blog-benefits { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- ACESSIBILIDADE ---------- */
:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; border-radius: var(--radius-xs); }
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--wine); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-xs);
  font-weight: 600; font-size: .9rem; z-index: 9999;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 16px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .card, .problem-item, .badge, .point, .step-card,
  .blog-card, .home-legal-card, .btn, details, .topbar { transition: none !important; }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted-light); }

/* ---------- CTA ROW ---------- */
.cta-row { margin-top: 24px; }
.hero-actions .btn, .cta-row .btn { width: auto; }
@media (max-width: 860px) {
  .hero-actions .btn, .cta-row .btn { width: 100%; }
}
.spacer-24 { height: 24px; }
.blog-preview-actions { margin-top: 20px; }
#hero-root { margin: 0; padding: 0; min-height: 0; } #areas-root, #problems-root, #about-root, #process-root, #faq-root, #blog-preview-root, #contact-root { margin: 0; padding: 0; }
