/* ============================================
   WE Perícia — Modern Forensic stylesheet
   Light, technical, copper accent (rose-gold)
   ============================================ */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F7F5F2;
  --bg-panel: #FAFAF7;
  --ink: #0F0E0C;
  --ink-soft: #3A3530;
  --muted: #6E665C;
  --line: rgba(15,14,12,0.10);
  --line-strong: rgba(15,14,12,0.20);
  --copper: #A6604A;
  --copper-bright: #C8866C;
  --copper-deep: #6E3D2E;
  --copper-soft: #F5E8DF;

  --container: 1280px;
  --pad-x: 56px;

  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 44px;
  width: auto;
}
.brand-divider {
  width: 1px;
  height: 22px;
  background: var(--line);
}
.brand-text {
  line-height: 1.1;
}
.brand-name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-family: var(--font-display);
}
.brand-tagline {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 600;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.15s;
}
.nav a:hover {
  background: var(--bg-alt);
  color: var(--ink);
}
.nav a.active {
  color: var(--ink);
}
.nav a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--copper);
  margin-top: 4px;
  border-radius: 1px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: all 0.18s;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  white-space: nowrap;
}
.btn--primary {
  background: var(--copper-deep);
  color: #FFFFFF !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.10);
}
.btn--primary:hover {
  background: #FFFFFF;
  color: var(--copper-deep) !important;
  border-color: var(--copper-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(110,61,46,0.15);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--copper);
  color: var(--copper-deep);
}
.btn--lg {
  padding: 14px 22px;
  font-size: 14.5px;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: all 0.2s;
}

/* ============ HERO + PAGE-HERO ============ */
.hero {
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 820px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--copper-soft);
  color: var(--copper-deep);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--copper);
  border-radius: 50%;
}
.eyebrow--plain {
  background: transparent;
  padding: 0;
  color: var(--copper);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow--plain::before { display: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 {
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 70;
}
h1 .accent {
  color: var(--copper);
  display: block;
  font-style: italic;
}
h2 {
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.08;
}
h2 .accent { color: var(--copper); }
h3 {
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-family: var(--font-display);
  font-weight: 500;
}
.lead {
  font-size: 17.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-item {
  flex: 1;
  padding: 0 20px;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { padding-right: 0; }
.trust-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.3;
}
.trust-sep {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

/* ============ HERO VISUAL — laudo card ============ */
.hero-visual {
  position: relative;
}

/* laudo card */
.laudo-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 72px -24px rgba(15,14,12,0.16), 0 8px 20px -4px rgba(15,14,12,0.06);
}
.laudo-top {
  padding: 24px 28px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.laudo-stamp {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--copper-bright), var(--copper-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.laudo-top-text {}
.laudo-tipo {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 4px;
}
.laudo-proc {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.laudo-rows {
  padding: 8px 0;
}
.laudo-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.laudo-row:last-child { border-bottom: none; }
.laudo-row-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.laudo-row-value {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.laudo-row--result .laudo-row-label { color: var(--copper-deep); }
.laudo-row--result .laudo-row-value {
  font-size: 22px;
  font-weight: 600;
  color: var(--copper-deep);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  font-family: var(--font-display);
}
.laudo-bottom {
  padding: 16px 28px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.laudo-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-deep);
  background: var(--copper-soft);
  padding: 4px 10px;
  border-radius: 5px;
}

.case-board {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 64px -24px rgba(15,14,12,0.18), 0 8px 20px -4px rgba(15,14,12,0.06);
}
.case-board-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.case-board-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.case-board-sub {
  font-size: 11px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.case-items { padding: 4px 0; }
.case-item {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.case-item:last-child { border-bottom: none; }
.case-item:hover { background: var(--bg-alt); }
.case-item-area {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 3px;
}
.case-item-desc {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 10px;
  line-height: 1.4;
}
.case-item-value {
  font-size: 22px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.case-item-bar {
  height: 3px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}
.case-item-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--copper-soft), var(--copper));
  border-radius: 99px;
}
.hero-badge-courts {
  position: absolute;
  bottom: 0;
  left: -20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 16px 40px -12px rgba(15,14,12,0.14);
}
.hero-badge-label {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.hero-badge-courts-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.hero-badge-courts-list span {
  font-size: 11px;
  font-weight: 700;
  color: var(--copper-deep);
  background: var(--copper-soft);
  padding: 4px 9px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

/* page-hero (interior pages) */
.page-hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  margin-top: 24px;
  max-width: 900px;
}
.page-hero .lead {
  margin-top: 24px;
  max-width: 720px;
}

/* ============ SECTIONS ============ */
section {
  padding: 96px 0;
}
.section-head {
  margin-bottom: 56px;
  max-width: 820px;
}
.section-head h2 { margin-top: 14px; }
.section-head .lead {
  margin-top: 22px;
  max-width: 700px;
}

.bg-alt {
  background: var(--bg-alt);
  background-image:
    linear-gradient(rgba(255,255,255,0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.28) 1px, transparent 1px);
  background-size: 48px 48px;
}
section:not(.bg-alt) {
  background-image:
    linear-gradient(rgba(166,96,74,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166,96,74,0.055) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero {
  background-image:
    linear-gradient(rgba(166,96,74,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166,96,74,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ============ DUAL ROLE ============ */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.dual-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px;
  transition: all 0.25s;
}
.dual-card:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(15,14,12,0.10);
}
.dual-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.dual-card-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}
.dual-card-num {
  font-size: 11px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  padding: 3px 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.dual-card h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
  font-family: var(--font-sans);
}
.dual-card p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--copper-soft);
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'><path d='M2 6.5L4.5 9L10 3' stroke='%236E3D2E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============ AREAS — split list + detail ============ */
.areas-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: flex-start;
}
.areas-list {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.areas-list button {
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  width: 100%;
  padding: 20px 22px;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s;
  align-items: center;
  gap: 14px;
  font-family: inherit;
  color: inherit;
}
.areas-list button:last-child { border-bottom: none; }
.areas-list button:hover,
.areas-list button.active {
  background: var(--copper-soft);
}
.areas-list button .num {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.areas-list button.active .num,
.areas-list button:hover .num { color: var(--copper-deep); }
.areas-list button .name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.areas-list button.active .name,
.areas-list button:hover .name { color: var(--copper-deep); }
.areas-list button .arrow {
  font-size: 16px;
  color: var(--muted);
  transition: transform 0.2s;
}
.areas-list button.active .arrow,
.areas-list button:hover .arrow {
  color: var(--copper-deep);
  transform: translateX(2px);
}

.areas-detail {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px;
  position: sticky;
  top: 96px;
  min-height: 360px;
}
.areas-detail-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}
.areas-detail h3 {
  font-size: 28px;
  margin: 12px 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-family: var(--font-display);
  font-weight: 400;
}
.areas-detail p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 14px;
}

/* ============ SOCIOS ============ */
.socios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.socio {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px;
  transition: all 0.25s;
}
.socio:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(15,14,12,0.10);
}
.socio-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.avatar {
  width: 76px;
  height: 76px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--copper-bright) 0%, var(--copper-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 26px;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -4px var(--copper);
}
.socio h3 { font-size: 20px; }
.socio-crc {
  margin-top: 6px;
  font-size: 12px;
  color: var(--copper-deep);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  font-weight: 600;
  text-transform: uppercase;
}
.socio-role {
  margin-top: 3px;
  font-size: 13px;
  color: var(--muted);
}
.socio-bio {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.socio-bio p { margin: 0 0 12px; }
.socio-bio p:last-child { margin-bottom: 0; }
.formation {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.formation h4 {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 10px;
}
.formation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
  color: var(--ink);
  display: grid;
  gap: 5px;
}
.formation li { display: flex; gap: 10px; }
.formation li::before {
  content: '—';
  color: var(--copper);
}

/* ============ METHOD ============ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.method-line {
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--line);
}
.method-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}
.method-num {
  position: absolute;
  top: -1px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--copper-deep);
  font-variant-numeric: tabular-nums;
  margin-top: -24px;
}
.method-card-body { margin-top: 36px; }
.method-card h3 { font-size: 17px; }
.method-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ============ CTA Block ============ */
.cta-block {
  background: linear-gradient(135deg, #FBF4EE 0%, #F5E8DF 60%, #EFD9C8 100%);
  color: var(--ink);
  border-radius: 18px;
  padding: 64px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(166,96,74,0.18);
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--copper-bright) 0%, transparent 65%);
  opacity: 0.25;
  pointer-events: none;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #FFFFFF 0%, transparent 60%);
  opacity: 0.55;
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta-inner .eyebrow--plain { color: var(--copper-deep); margin-bottom: 18px; display: block; }
.cta-inner h2 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 720px;
  color: var(--ink);
}
.cta-inner .lead {
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 40px;
}
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cta-card {
  display: block;
  padding: 24px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(166,96,74,0.18);
  border-radius: 10px;
  color: var(--ink);
  transition: all 0.2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cta-card:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(110,61,46,0.20);
}
.cta-card-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 10px;
  font-weight: 600;
}
.cta-card-value {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
}

/* ============ CONTACT (page) ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.contact-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  display: block;
  color: inherit;
  transition: all 0.2s;
}
.contact-card:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(15,14,12,0.08);
}
.contact-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--copper-soft);
  color: var(--copper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-card .icon svg { width: 20px; height: 20px; }
.contact-card-label {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-card-value {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.contact-card-sub {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.contact-twocol {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  margin-top: 56px;
}

/* ============ BLOG ============ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.post {
  display: block;
  padding: 32px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all 0.25s;
  color: inherit;
}
.post:hover {
  transform: translateY(-2px);
  border-color: var(--copper);
  box-shadow: 0 12px 32px -12px rgba(15,14,12,0.10);
}
.post-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-deep);
  background: var(--copper-soft);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 16px;
}
.post h3 {
  font-size: 22px;
  margin: 0 0 12px;
  line-height: 1.25;
}
.post p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 20px;
}
.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.post-meta .read-more {
  color: var(--copper-deep);
  font-weight: 600;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-alt);
  background-image:
    linear-gradient(rgba(255,255,255,0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.22) 1px, transparent 1px);
  background-size: 48px 48px;
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
  font-size: 13px;
  font-weight: 300;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-block .brand { margin-bottom: 20px; }
.footer-blurb {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 300px;
  margin: 0;
}
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}
.footer-col a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--copper-deep); }
.footer-contact-line {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: break-word;
}
.footer-contact-line strong {
  display: block;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 2px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-contact-line + .footer-contact-line { margin-top: 16px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
  letter-spacing: 0.04em;
}
.footer-bottom .crc {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

/* ============ Reveal animation ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2,0.7,0.2,1), transform 0.9s cubic-bezier(0.2,0.7,0.2,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Whatsapp floater ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,0.45);
  transition: all 0.2s;
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.04); }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  :root { --pad-x: 28px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    padding: 12px var(--pad-x);
    gap: 0;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a:last-child { border-bottom: none; }
  .nav .btn { margin-top: 10px; justify-content: center; }
  .hero-grid,
  .dual-grid,
  .areas-split,
  .socios-grid,
  .contact-grid,
  .contact-twocol,
  .posts-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .method-line { display: none; }
  .hero-visual { padding-bottom: 0; }
  .hero-badge-courts { position: relative; left: auto; bottom: auto; margin-top: 16px; }
  .trust-item { padding: 0 12px; }
  .trust-value { font-size: 15px; }
  .areas-detail { position: relative; top: auto; }
  .cta-block { padding: 36px 28px; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  section, .hero { padding: 64px 0; }
}
@media (max-width: 640px) {
  .method-grid { grid-template-columns: 1fr; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
}
