:root {
  --dark: #342d29;
  --dark-2: #4a403b;
  --paper: #eee9df;
  --paper-2: #f8f4eb;
  --warm: #8d5a38;
  --gold: #d4aa71;
  --muted: #706860;
  --line: rgba(52, 45, 41, 0.28);
  --shadow: 0 26px 60px rgba(38, 31, 27, 0.24);
  --radius: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(52, 45, 41, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 45, 41, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  color: var(--dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 28px 26px 34px;
}

.top-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: stretch;
  min-height: 188px;
  border-radius: 30px 30px 0 0;
  background:
    linear-gradient(90deg, rgba(45, 38, 35, 0.98), rgba(45, 38, 35, 0.72)),
    var(--dark);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.top-panel::after {
  content: "laudo";
  position: absolute;
  right: -24px;
  top: 2px;
  color: rgba(255, 255, 255, 0.07);
  writing-mode: vertical-rl;
  font-size: 6.4rem;
  font-weight: 950;
  line-height: 0.8;
}

.headline-card {
  z-index: 2;
  align-self: center;
  margin: 28px;
  padding: 22px 26px;
  border: 1px solid rgba(248, 244, 235, 0.62);
  border-radius: 28px 0 28px 28px;
}

.headline-card p,
.feature-copy p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  color: var(--paper-2);
  font-size: clamp(2.6rem, 5.4vw, 5.35rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.88;
}

.brand-card {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 20px 24px;
  border-radius: 0 30px 30px 28px;
  background: #b6aa9a;
}

.brand-card img {
  width: 180px;
  mix-blend-mode: multiply;
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 0.93fr;
  gap: 0;
  min-height: 790px;
}

.left-feature {
  position: relative;
  min-height: 790px;
  border-right: 1px solid var(--line);
  border-radius: 0 0 0 30px;
  background: rgba(248, 244, 235, 0.58);
  overflow: hidden;
}

.left-feature::before {
  content: "";
  position: absolute;
  inset: 30px 22px auto 0;
  z-index: 1;
  height: 245px;
  border: 2px solid var(--line);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 42px 0 0;
  transform: translateX(-18px);
}

.feature-copy {
  position: relative;
  z-index: 3;
  width: min(76%, 455px);
  margin: 44px 30px 0 40px;
  padding: 18px 20px 20px 0;
}

.feature-copy h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(2.05rem, 3.45vw, 3.05rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.building-scene {
  position: absolute;
  inset: auto 0 118px;
  height: 350px;
  background:
    linear-gradient(180deg, rgba(238, 233, 223, 0), rgba(52, 45, 41, 0.64)),
    linear-gradient(140deg, rgba(141, 90, 56, 0.06), rgba(52, 45, 41, 0.1));
}

.building-scene::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 64px;
  bottom: 36px;
  height: 260px;
  border-radius: 12px 54px 0 0;
  background:
    linear-gradient(90deg, transparent 0 26%, rgba(212, 170, 113, 0.82) 26% 31%, transparent 31% 100%),
    linear-gradient(180deg, #756e65 0 38%, #5c554e 38% 100%);
  box-shadow: 0 -60px 0 -28px #c9c0b2, 88px -82px 0 -42px #4b443f;
}

.building-scene::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  background: linear-gradient(180deg, transparent, rgba(43, 37, 33, 0.86));
}

.tower {
  position: absolute;
  z-index: 2;
  bottom: 96px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #f1d18f, #8d5a38);
}

.tower-a {
  left: 180px;
  width: 54px;
  height: 196px;
}

.tower-b {
  left: 258px;
  width: 42px;
  height: 236px;
  background: linear-gradient(180deg, #e9b96c, #4c403a);
}

.tower-c {
  left: 326px;
  width: 80px;
  height: 170px;
  background: linear-gradient(180deg, #2f2926, #756e65);
}

.line-grid {
  position: absolute;
  right: 74px;
  bottom: 182px;
  z-index: 3;
  width: 128px;
  height: 104px;
  background:
    linear-gradient(90deg, rgba(248, 244, 235, 0.45) 1px, transparent 1px),
    linear-gradient(rgba(248, 244, 235, 0.45) 1px, transparent 1px);
  background-size: 18px 18px;
}

.left-footer {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 4;
  display: grid;
  grid-template-columns: 148px 1fr;
  align-items: center;
  gap: 16px;
  color: var(--paper-2);
}

.mini-brand {
  display: flex;
  align-items: center;
}

.mini-brand img {
  width: 132px;
  border-radius: 999px;
  background: rgba(248, 244, 235, 0.92);
  padding: 6px 12px;
}

.whatsapp-box {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(248, 244, 235, 0.28);
  border-radius: 18px;
  background: rgba(248, 244, 235, 0.92);
  color: var(--dark);
}

.whatsapp-box label {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.whatsapp-box div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.whatsapp-box input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(52, 45, 41, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--dark);
  font: inherit;
  font-size: 0.86rem;
  padding: 0 14px;
}

.whatsapp-box button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: #1d6b47;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
  padding: 0 16px;
}

.right-column {
  display: grid;
  grid-template-rows: 164px 1fr 186px;
  min-height: 790px;
  padding: 0 0 0 34px;
}

.feedback-panel {
  display: grid;
  grid-template-columns: minmax(150px, 0.88fr) minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  margin-top: 36px;
  min-height: 128px;
  padding: 16px 20px 18px 28px;
  border: 2px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
}

.feedback-panel h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(1.52rem, 2.65vw, 2.38rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
}

.feedback-panel p {
  margin: 4px 0 0;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 820;
  line-height: 1.18;
  min-width: 0;
}

.blog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--paper-2);
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
  padding: 0 14px;
}

.select-mark {
  display: none;
  width: 42px;
  height: 24px;
  border: 2px solid rgba(52, 45, 41, 0.24);
}

.select-mark::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 5px auto 0;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
}

.profile-row {
  display: grid;
  grid-template-columns: 0.86fr 0.74fr;
  gap: 20px;
  align-items: stretch;
  padding-top: 20px;
}

.portrait-card {
  position: relative;
  align-self: stretch;
  border-radius: 42px 42px 8px 42px;
  background: var(--dark-2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 50% 14%;
}

.quote-card {
  align-self: start;
  min-height: 330px;
  margin-top: 94px;
  padding: 26px 24px;
  border-radius: 0 36px 36px 36px;
  background: var(--paper-2);
  box-shadow: 0 16px 38px rgba(38, 31, 27, 0.12);
}

.quote-card span {
  display: block;
  height: 46px;
  color: #aa9d90;
  font-family: Georgia, serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.78;
}

.quote-card p {
  margin: 18px 0 28px;
  color: var(--dark);
  font-size: 0.96rem;
  line-height: 1.28;
}

.quote-card strong,
.quote-card small {
  display: block;
}

.quote-card strong {
  font-size: 1.1rem;
  font-weight: 950;
  line-height: 1;
}

.quote-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
}

.service-tile {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 18px;
  align-items: end;
  margin-top: 20px;
}

.service-tile > div {
  min-height: 156px;
  padding: 22px;
  border-radius: 28px 28px 0 28px;
  background: var(--dark);
  color: var(--paper-2);
}

.service-tile span {
  display: block;
  color: var(--gold);
  font-size: 2.55rem;
  font-weight: 950;
  line-height: 0.88;
}

.service-tile strong {
  display: block;
  margin-top: 12px;
  font-size: 1.08rem;
  line-height: 1.05;
}

.service-tile ul {
  display: grid;
  gap: 8px;
  min-height: 156px;
  margin: 0;
  padding: 22px 22px 22px 38px;
  border-radius: 28px 28px 28px 0;
  background: rgba(248, 244, 235, 0.72);
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 740;
}

.seo-terms {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(52, 45, 41, 0.14);
  border-radius: 22px;
  background: rgba(248, 244, 235, 0.54);
}

.seo-terms h2 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.1;
}

.seo-terms p {
  max-width: 960px;
  margin: 0 0 12px;
  color: #6f665e;
  font-size: 0.84rem;
  line-height: 1.45;
}

.term-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.term-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(52, 45, 41, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: #6a5f57;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 0;
  color: #6f665e;
  font-size: 0.82rem;
  font-weight: 400;
}

.site-footer a {
  font-weight: 400;
  text-decoration: none;
}

.float-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: #1d6b47;
  color: #fff;
  box-shadow: 0 18px 38px rgba(29, 107, 71, 0.3);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 0 18px;
}

.blog-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(212, 170, 113, 0.18), transparent 30%),
    linear-gradient(rgba(52, 45, 41, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 45, 41, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.blog-hero,
.blog-layout {
  width: min(calc(100% - 36px), 1240px);
  margin: 0 auto;
}

.blog-hero {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px auto;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  border-radius: 32px 32px 8px 32px;
  background: linear-gradient(135deg, rgba(52, 45, 41, 0.98), rgba(75, 64, 58, 0.94));
  color: var(--paper-2);
  box-shadow: var(--shadow);
}

.blog-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  border-radius: 24px;
  background: #c5b8a6;
}

.blog-logo img {
  width: 150px;
  mix-blend-mode: multiply;
}

.blog-hero p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.blog-hero span {
  display: block;
  max-width: 760px;
  color: rgba(248, 244, 235, 0.76);
  font-size: 1rem;
}

.blog-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(248, 244, 235, 0.36);
  border-radius: 999px;
  color: var(--paper-2);
  font-size: 0.84rem;
  font-weight: 850;
  white-space: nowrap;
  padding: 0 18px;
}

.blog-author-photo {
  position: relative;
  align-self: stretch;
  min-height: 190px;
  margin: 0;
  border: 1px solid rgba(248, 244, 235, 0.18);
  border-radius: 26px 26px 8px 26px;
  background: rgba(248, 244, 235, 0.08);
  overflow: hidden;
}

.blog-author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}

.blog-author-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(35, 29, 26, 0.82));
}

.blog-author-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  color: var(--paper-2);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.1;
}

.blog-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 22px 0 42px;
}

.blog-sidebar {
  position: sticky;
  top: 18px;
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(52, 45, 41, 0.14);
  border-radius: 28px;
  background: rgba(248, 244, 235, 0.78);
  box-shadow: 0 18px 40px rgba(38, 31, 27, 0.1);
}

.blog-sidebar > strong {
  display: block;
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.blog-sidebar nav {
  display: grid;
  gap: 8px;
}

.blog-sidebar a {
  display: block;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
  color: var(--dark);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.15;
  padding: 11px 12px;
}

.blog-sidebar a:hover {
  border-color: rgba(52, 45, 41, 0.2);
  background: var(--paper-2);
}

.blog-sidebar span {
  display: block;
  margin-bottom: 4px;
  color: var(--warm);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-feed {
  display: grid;
  gap: 22px;
}

.blog-intro-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(52, 45, 41, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(52, 45, 41, 0.94), rgba(92, 76, 65, 0.92)),
    var(--dark);
  color: var(--paper-2);
  box-shadow: 0 22px 52px rgba(38, 31, 27, 0.16);
}

.blog-intro-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-intro-card h2 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: clamp(2.15rem, 4.4vw, 4.2rem);
  font-weight: 950;
  line-height: 0.96;
}

.blog-intro-card p {
  max-width: 880px;
  margin: 0;
  color: rgba(248, 244, 235, 0.78);
  font-size: 1.08rem;
  line-height: 1.68;
}

.blog-post {
  scroll-margin-top: 22px;
  position: relative;
  padding: clamp(28px, 4.8vw, 52px);
  border: 1px solid rgba(52, 45, 41, 0.14);
  border-left: 7px solid rgba(141, 90, 56, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.86), rgba(248, 244, 235, 0.78)),
    var(--paper-2);
  box-shadow: 0 20px 50px rgba(38, 31, 27, 0.1);
}

.blog-post time {
  display: inline-flex;
  margin-bottom: 16px;
  border-bottom: 1px solid currentColor;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-post h2 {
  max-width: 920px;
  margin: 0 0 20px;
  color: var(--dark);
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.blog-post p {
  max-width: 900px;
  margin: 0 0 18px;
  color: #554b44;
  font-size: 1.08rem;
  line-height: 1.72;
  text-align: justify;
}

.blog-post footer {
  display: inline-flex;
  margin-top: 22px;
  border-radius: 999px;
  background: rgba(52, 45, 41, 0.08);
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 850;
  padding: 9px 14px;
}

/* ── Language switcher ───────────────────────────────── */
.lang-bar {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  padding: 8px 4px 10px;
}

.lang-bar--blog {
  width: min(calc(100% - 36px), 1240px);
  margin: 14px auto 0;
  padding: 0;
}

.lang-bar a,
.lang-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border: 1px solid rgba(52, 45, 41, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 11px;
  text-decoration: none;
  text-transform: uppercase;
}

.lang-bar a:hover,
.lang-bar button:hover {
  background: rgba(52, 45, 41, 0.07);
  color: var(--dark);
}

.lang-bar .lang-active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--paper-2);
  pointer-events: none;
}

/* ── Perícia Diagnóstica panel (homepage) ───────────── */
.pericia-panel {
  display: grid;
  grid-template-columns: 210px 1fr;
  margin-top: 18px;
  border: 1px solid rgba(52, 45, 41, 0.13);
  border-left: 6px solid var(--warm);
  border-radius: 22px;
  background: rgba(248, 244, 235, 0.62);
  overflow: hidden;
}

.pericia-label {
  padding: 24px 22px;
  border-right: 1px solid rgba(52, 45, 41, 0.10);
}

.pericia-label h2 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 1.12rem;
  font-weight: 950;
  line-height: 1.05;
}

.pericia-label > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.pericia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(52, 45, 41, 0.10);
}

.pericia-grid > div {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.52);
}

.pericia-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.pericia-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.42;
}

/* ── Blog do Perito button in blog sidebar ──────────── */
.pericia-blog-link {
  display: block;
  margin-bottom: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(141, 90, 56, 0.28);
  border-left: 4px solid var(--warm);
  border-radius: 16px;
  background: rgba(141, 90, 56, 0.05);
  color: var(--dark);
  line-height: 1.15;
}

.pericia-blog-link:hover {
  background: rgba(141, 90, 56, 0.12);
  border-color: rgba(141, 90, 56, 0.48);
}

.pericia-blog-link span {
  display: block;
  margin-bottom: 3px;
  color: var(--warm);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pericia-blog-link strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .page-shell {
    padding: 14px;
  }

  .top-panel,
  .mosaic,
  .profile-row,
  .service-tile {
    grid-template-columns: 1fr;
  }

  .top-panel {
    min-height: auto;
  }

  .headline-card {
    margin: 18px;
  }

  .brand-card {
    min-width: 0;
    border-radius: 0;
  }

  .mosaic,
  .left-feature,
  .right-column {
    min-height: 0;
  }

  .left-feature {
    min-height: 760px;
    border-right: 0;
    border-radius: 0;
  }

  .right-column {
    display: block;
    padding: 24px 0 0;
  }

  .portrait-card img {
    height: 560px;
  }

  .quote-card {
    margin-top: 0;
  }

  .blog-hero,
  .blog-layout {
    width: calc(100% - 24px);
  }

  .pericia-panel {
    grid-template-columns: 1fr;
  }

  .pericia-label {
    border-right: 0;
    border-bottom: 1px solid rgba(52, 45, 41, 0.10);
    padding: 18px 18px 14px;
  }

  .pericia-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-hero,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-author-photo {
    min-height: 360px;
  }

  .blog-sidebar {
    position: relative;
    top: auto;
    max-height: 360px;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding: 10px;
  }

  .top-panel {
    border-radius: 22px 22px 0 0;
  }

  .headline-card {
    padding: 18px;
    border-radius: 22px 0 22px 22px;
  }

  h1 {
    font-size: 2.9rem;
  }

  .feature-copy {
    width: calc(100% - 36px);
    margin: 34px 18px 0;
    padding: 16px 0 18px;
  }

  .feature-copy h2 {
    font-size: 2.32rem;
  }

  .left-feature {
    min-height: 660px;
  }

  .building-scene {
    height: 330px;
  }

  .left-footer {
    right: 16px;
    left: 16px;
    grid-template-columns: 1fr;
  }

  .feedback-panel {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 24px;
  }

  .feedback-panel h2 {
    font-size: 2rem;
  }

  .portrait-card img {
    min-height: 0;
    height: 500px;
  }

  .service-tile ul {
    border-radius: 24px;
  }

  .whatsapp-box div {
    grid-template-columns: 1fr;
  }

  .whatsapp-box button {
    width: 100%;
  }

  .site-footer {
    display: grid;
    gap: 6px;
    padding-bottom: 62px;
  }

  .float-contact {
    right: 10px;
    bottom: 10px;
  }

  .blog-hero {
    padding: 16px;
    border-radius: 24px 24px 8px 24px;
  }

  .blog-logo {
    min-height: 108px;
  }

  .blog-hero h1 {
    font-size: 3.2rem;
  }

  .blog-home-link {
    width: 100%;
  }

  .blog-author-photo {
    min-height: 420px;
  }

  .blog-sidebar {
    max-height: 300px;
  }

  .pericia-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════
   Linha de Transmissão — promo (index) + page
   ════════════════════════════════════════════════════ */

/* ── Index promo banner ─────────────────────────────── */
.lt-promo {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.lt-promo-photo {
  margin: 0;
}

.lt-promo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.lt-promo-body {
  padding: 38px 40px;
  background: linear-gradient(140deg, rgba(30, 24, 20, 0.97), rgba(66, 53, 43, 0.95));
  color: var(--paper-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.lt-promo-tag {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lt-promo-body h2 {
  margin: 0;
  color: var(--paper-2);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 950;
  line-height: 1;
}

.lt-promo-body p {
  margin: 0;
  color: rgba(248, 244, 235, 0.72);
  font-size: 0.94rem;
  line-height: 1.44;
}

.lt-promo-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 40px;
  margin-top: 4px;
  border: 1px solid rgba(248, 244, 235, 0.36);
  border-radius: 999px;
  color: var(--paper-2);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0 18px;
}

.lt-promo-link:hover {
  background: rgba(248, 244, 235, 0.1);
}

/* ── Dedicated page shell ───────────────────────────── */
.lt-page {
  background:
    radial-gradient(circle at 15% 90%, rgba(141, 90, 56, 0.1), transparent 30%),
    linear-gradient(rgba(52, 45, 41, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 45, 41, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.lt-shell {
  width: min(calc(100% - 36px), 1120px);
  margin: 0 auto;
  padding-bottom: 42px;
  text-align: left;
}

.lt-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0;
}

.lt-topbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(248, 244, 235, 0.9);
  border: 1px solid rgba(52, 45, 41, 0.12);
}

.lt-topbar-brand img {
  width: 110px;
}

.lt-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(52, 45, 41, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 0 16px;
}

.lt-back-link:hover {
  background: rgba(52, 45, 41, 0.06);
  color: var(--dark);
}

/* Hero */
.lt-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 14px;
  border-radius: 30px;
  overflow: hidden;
  min-height: 360px;
  background: #1a1410;
  box-shadow: var(--shadow);
}

.lt-hero-copy {
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.lt-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--warm);
  color: var(--paper-2);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lt-hero-copy h1 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 950;
  line-height: 0.97;
  color: var(--paper-2);
}

.lt-hero-copy > p {
  margin: 0;
  color: rgba(248, 244, 235, 0.7);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 380px;
}

.lt-hero-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 44px;
  border-radius: 999px;
  background: #1d6b47;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  padding: 0 22px;
  margin-top: 4px;
  box-shadow: 0 10px 24px rgba(29, 107, 71, 0.26);
}

.lt-hero-photo {
  margin: 0;
  overflow: hidden;
}

.lt-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

/* Quote */
.lt-quote {
  margin: 18px 0 0;
  padding: 22px 30px;
  border: 1px solid rgba(52, 45, 41, 0.12);
  border-left: 6px solid var(--warm);
  border-radius: 0 18px 18px 0;
  background: rgba(248, 244, 235, 0.7);
}

.lt-quote-mark {
  display: block;
  height: 30px;
  color: var(--warm);
  font-family: Georgia, serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 0.62;
  margin-bottom: 8px;
}

.lt-quote p {
  margin: 0;
  color: var(--dark);
  font-size: 1.02rem;
  font-weight: 760;
  line-height: 1.52;
  max-width: 820px;
  text-align: left;
}

/* Feed */
.lt-feed {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.lt-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ATENÇÃO card */
.lt-atencao {
  padding: 28px 28px 30px;
  border: 1px solid rgba(52, 45, 41, 0.13);
  border-left: 6px solid #b83232;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
}

.lt-atencao-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--dark);
  font-size: 1.28rem;
  font-weight: 950;
}

.lt-alert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #b83232;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.lt-atencao-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  counter-reset: atencao;
}

.lt-atencao-list li {
  position: relative;
  padding-left: 38px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #3e3834;
  counter-increment: atencao;
  text-align: left;
}

.lt-atencao-list li::before {
  content: counter(atencao);
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(184, 50, 50, 0.1);
  color: #b83232;
  font-size: 0.76rem;
  font-weight: 900;
}

/* AVALIAÇÃO card */
.lt-avaliacao {
  padding: 28px 28px 30px;
  border: 1px solid rgba(52, 45, 41, 0.12);
  border-radius: 22px;
  background: linear-gradient(138deg, rgba(30, 24, 20, 0.96) 0%, rgba(58, 46, 38, 0.94) 100%);
  color: var(--paper-2);
}

.lt-avaliacao h2 {
  margin: 0 0 16px;
  color: var(--paper-2);
  font-size: 1.14rem;
  font-weight: 950;
  line-height: 1.12;
}

.lt-avaliacao ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.lt-avaliacao li {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.42;
  color: rgba(248, 244, 235, 0.84);
  text-align: left;
}

.lt-avaliacao li::before {
  content: "\2713";
  color: #5dbf8a;
  font-weight: 900;
  flex-shrink: 0;
}

.lt-tip {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(212, 170, 113, 0.13);
  border: 1px solid rgba(212, 170, 113, 0.24);
}

.lt-tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.lt-tip p {
  margin: 0;
  color: rgba(248, 244, 235, 0.78);
  font-size: 0.8rem;
  line-height: 1.52;
  text-align: left;
}

/* IMPACTOS */
.lt-impactos {
  padding: 30px;
  border: 1px solid rgba(52, 45, 41, 0.11);
  border-radius: 22px;
  background: rgba(248, 244, 235, 0.58);
}

.lt-impactos > h2 {
  margin: 0 0 22px;
  font-size: 1.52rem;
  font-weight: 950;
  color: var(--dark);
}

.lt-impactos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.lt-impact-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(38, 31, 27, 0.18);
}

.lt-impact-photo img {
  width: 100%;
  display: block;
}

.lt-impact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
  counter-reset: impact;
}

.lt-impact-list li {
  position: relative;
  padding-left: 38px;
  font-size: 0.88rem;
  line-height: 1.44;
  color: var(--dark);
  counter-increment: impact;
  text-align: left;
}

.lt-impact-list li::before {
  content: counter(impact);
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--paper-2);
  font-size: 0.74rem;
  font-weight: 900;
}

/* ASSISTÊNCIA */
.lt-assistencia {
  padding: 30px;
  border: 1px solid rgba(141, 90, 56, 0.17);
  border-radius: 22px;
  background: rgba(141, 90, 56, 0.04);
}

.lt-assistencia > h2 {
  margin: 0 0 20px;
  font-size: 1.38rem;
  font-weight: 950;
  color: var(--dark);
}

.lt-assist-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.lt-assist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 10px;
  border: 1px solid rgba(52, 45, 41, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
}

.lt-assist-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lt-assist-icon span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}

.lt-assist-card p {
  margin: 0;
  color: var(--dark);
  font-size: 0.79rem;
  font-weight: 760;
  line-height: 1.38;
  text-align: center;
}

/* BOTTOM */
.lt-bottom {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 18px;
  align-items: start;
}

.lt-auxiliar {
  padding: 30px;
  border: 1px solid rgba(52, 45, 41, 0.11);
  border-radius: 22px;
  background: rgba(248, 244, 235, 0.62);
}

.lt-auxiliar h2 {
  margin: 0 0 18px;
  font-size: 1.38rem;
  font-weight: 950;
  color: var(--dark);
}

.lt-auxiliar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.lt-auxiliar li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.46;
  color: var(--dark);
  text-align: left;
}

.lt-auxiliar li::before {
  content: "\2713";
  color: #1d6b47;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.lt-contact-card {
  padding: 26px 22px;
  border-radius: 22px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.lt-contact-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: #c5b8a6;
  margin-bottom: 10px;
}

.lt-contact-logo-wrap img {
  width: 108px;
  mix-blend-mode: multiply;
}

.lt-contact-name {
  color: var(--paper-2);
  font-size: 1.1rem;
  font-weight: 950;
}

.lt-contact-role {
  color: rgba(248, 244, 235, 0.65);
  font-size: 0.8rem;
}

.lt-contact-crea {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.lt-contact-spec {
  color: rgba(248, 244, 235, 0.55);
  font-size: 0.76rem;
  margin-top: 2px;
}

.lt-each-case {
  margin: 10px 0 0;
  color: var(--gold);
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
}

.lt-contact-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  border-radius: 999px;
  background: #1d6b47;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(29, 107, 71, 0.22);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 980px) {
  .lt-promo {
    grid-template-columns: 1fr;
  }
  .lt-promo-photo {
    min-height: 240px;
  }
  .lt-hero,
  .lt-row2,
  .lt-impactos-inner,
  .lt-bottom {
    grid-template-columns: 1fr;
  }
  .lt-hero-photo {
    min-height: 260px;
  }
  .lt-assist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .lt-shell {
    width: calc(100% - 24px);
  }
}

@media (max-width: 620px) {
  .lt-hero-copy {
    padding: 28px 22px;
  }
  .lt-atencao,
  .lt-avaliacao,
  .lt-impactos,
  .lt-assistencia,
  .lt-auxiliar {
    padding: 22px 18px;
  }
  .lt-assist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lt-promo-body {
    padding: 26px 24px;
  }
  .lt-shell {
    width: calc(100% - 20px);
  }
}
