/* ============================================================
   TROPHEUS ENGENHARIA CIVIL — Design tokens
   Ver NORTH_STAR.md para racional de marca.
   ============================================================ */

:root {
  --green-deep: #0f2119;
  --green: #17352a;
  --green-line: #2b4d3d;
  --orange: #ff6600;
  --paper: #f6f4ee;
  --paper-dim: #ece9df;
  --ink: #17201c;
  --steel: #5c665f;
  --line: #d9d4c4;
  --white: #ffffff;

  --font-heading: 'Montserrat', 'Arial Narrow', sans-serif;
  --font-body: 'Montserrat', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-serif: 'Playfair Display', Georgia, serif;

  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink); }
a { color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}

/* ---------- UTILITY BAR ---------- */
.utility-bar {
  background: var(--green-deep);
  border-bottom: 1px solid var(--green-line);
}
.utility-bar .wrap {
  display: flex; align-items: center; justify-content: flex-end;
  height: 34px;
  gap: 18px;
}
.utility-bar a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #cfd7d1;
  text-decoration: none;
  white-space: nowrap;
}
.utility-bar a:hover { color: var(--orange); }
.utility-bar .divider { width: 1px; height: 12px; background: var(--green-line); flex-shrink: 0; }

@media (max-width: 700px) {
  .utility-bar .wrap {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 14px;
  }
  .utility-bar .wrap::-webkit-scrollbar { display: none; }
  .utility-bar a { font-size: 11px; }
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--green-deep);
  border-bottom: 1px solid var(--green-line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.logo {
  text-decoration: none;
  display: flex; align-items: center;
}
.logo img { height: 34px; width: auto; display: block; }

nav.main-nav { display: flex; gap: 34px; }
nav.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #cfd7d1;
  position: relative;
  padding: 4px 0;
}
nav.main-nav a:hover { color: var(--white); }
nav.main-nav a.active { color: var(--white); }
nav.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--orange);
}

.site-header .btn { border-color: rgba(255,255,255,.35); color: var(--paper); }
.site-header .btn:hover { background: var(--paper); color: var(--green-deep); }
.site-header .btn.primary { border-color: var(--orange); color: var(--white); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid var(--green);
  color: var(--green);
  transition: background .15s ease, color .15s ease;
}
.btn:hover { background: var(--green); color: var(--paper); }
.btn.primary { background: var(--orange); border-color: var(--orange); color: var(--white); }
.btn.primary:hover { background: #e05c14; }

/* ---------- HERO (vídeo institucional full-bleed) ---------- */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  padding: 150px 0 90px;
  background-color: var(--green-deep);
}
.hero-video-el {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(9,20,15,.82) 0%,
    rgba(9,20,15,.68) 30%,
    rgba(9,20,15,.42) 55%,
    rgba(9,20,15,.22) 78%,
    rgba(9,20,15,.12) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero .wrap.hero-inner {
  max-width: 45%;
  text-align: left;
  transform: translateY(18px);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
  white-space: nowrap;
}
.hero .hero-subline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin-bottom: 38px;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}
.hero .actions { display: flex; }
.hero .btn.primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: none;
}
.hero .btn.primary:hover { background: #e65c00; }

@media (max-width: 860px) {
  .hero .wrap.hero-inner { max-width: 100%; transform: none; }
  .hero h1 { white-space: normal; }
  .hero::after {
    background: linear-gradient(180deg, rgba(9,20,15,.85) 0%, rgba(9,20,15,.7) 55%, rgba(9,20,15,.55) 100%);
  }
}

/* ---------- ASSURANCE STRIP (faixa institucional abaixo do hero) ---------- */
.assurance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.assurance-caption {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin: 0;
}
.assurance-seals {
  height: 56px;
  width: auto;
  display: block;
}

/* ---------- SECTIONS ---------- */
section { padding: 90px 0; }
section.tight { padding: 60px 0; }
section.on-dim { background: var(--paper-dim); }
section.on-green { background: var(--green); color: var(--paper); }
section.on-green h2, section.on-green p { color: var(--paper); }

.section-head { max-width: 640px; margin-bottom: 50px; }

/* ---------- POSICIONAMENTO (full-bleed, 2 colunas) ---------- */
.positioning-section {
  position: relative;
  background: var(--green-deep);
  padding: 0;
  min-height: 640px;
  overflow: hidden;
}

.positioning-dots {
  position: absolute;
  top: 32px; right: 32px;
  width: 110px; height: 90px;
  background-image: radial-gradient(circle, var(--orange) 1.5px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: .5;
  z-index: 1;
  pointer-events: none;
}
/* A imagem fica fora do fluxo (absoluta), assim ela não disputa altura com o
   texto via percentuais — o mesmo padrão já usado no vídeo do hero. */
.positioning-media {
  position: absolute;
  z-index: 2;
  top: 0; left: 0;
  width: 42%; height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 28px 0 28px 28px;
}
.positioning-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.positioning-content {
  position: relative;
  z-index: 2;
  margin-left: 42%;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 90px 100px 60px;
}
.label-mono {
  font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange);
  display: block; margin-bottom: 26px;
}
.positioning-headline {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  font-size: clamp(2.25rem, 2.6vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 30px;
}
.positioning-lede {
  font-family: var(--font-body);
  color: rgba(255,255,255,.85);
  max-width: 560px;
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-pill {
  border: 1px solid rgba(255,255,255,.35);
  padding: 12px 20px;
  border-radius: 4px;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 860px) {
  .positioning-section { min-height: 0; }
  .positioning-media { position: relative; width: 100%; height: 260px; padding: 20px; }
  .positioning-content { margin-left: 0; min-height: 0; padding: 50px 28px; }
  .positioning-headline { font-size: clamp(1.6rem, 6vw, 2rem); white-space: normal; }
  .positioning-dots { top: 16px; right: 16px; width: 80px; height: 64px; }
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }

.panel {
  background: var(--paper);
  padding: 34px 30px;
}
section.on-dim .panel { background: var(--paper-dim); }
.panel .tag {
  font-family: var(--font-heading); font-weight: 600; font-size: 11px; color: var(--steel);
  letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 10px;
}
.panel h3 { margin-bottom: 10px; color: var(--green); }
.panel p { color: var(--steel); font-size: .95rem; margin: 0; }

/* Diferenciais / certificações estilo "ficha técnica" */
.spec-list { border-top: 1px solid var(--line); }
.spec-list .row {
  display: flex; justify-content: space-between; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.spec-list .row .code { font-family: var(--font-heading); font-weight: 600; color: var(--orange); font-size: 13px; width: 90px; flex-shrink: 0; }
.spec-list .row .desc { flex: 1; }
.spec-list .row .desc h4 { font-family: var(--font-body); font-weight: 600; margin: 0 0 4px; }
.spec-list .row .desc p { margin: 0; color: var(--steel); font-size: .93rem; }
.contact-social { display: inline-flex; align-items: center; gap: 6px; color: var(--steel); text-decoration: none; }
.contact-social svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact-social:hover { color: var(--orange); }

/* Cases */
.case-card {
  border: 1px solid var(--line);
  background: var(--white);
  display: flex; flex-direction: column;
}
.case-card .media {
  aspect-ratio: 16/10; background: var(--paper-dim);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--steel);
  border-bottom: 1px solid var(--line);
}
.case-card .body { padding: 24px; }
.case-card .client { font-family: var(--font-heading); font-weight: 600; font-size: 11px; color: var(--orange); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- CASES EM DESTAQUE (grid de fotos) ---------- */
.cases-preview {
  background: var(--green-deep);
  color: var(--paper);
}
.cases-preview h2 { color: var(--white); }

.label-dash {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 24px;
}
.label-dash .dash { width: 22px; height: 1px; background: var(--orange); flex-shrink: 0; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.case-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}
.case-tile-photo {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  margin-bottom: 14px;
  background: var(--paper-dim);
  transition: box-shadow .3s ease;
}
.case-tile-photo img { width: 100%; height: 100%; object-fit: cover; }
.case-tile:hover .case-tile-photo { box-shadow: 0 12px 30px rgba(0,0,0,.35); }
.case-tile-name {
  font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 4px;
  transition: opacity .3s ease;
}
.case-tile:hover .case-tile-name { opacity: .85; }
.case-tile-place {
  font-family: var(--font-body); font-size: .85rem; color: rgba(255,255,255,.65);
}
.cases-preview-cta { text-align: center; margin-top: 60px; }

@media (max-width: 900px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cases-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
}

/* ---------- CASES — CARROSSEL (página interna) ---------- */
.case-carousel-section { background: var(--green-deep); color: var(--paper); padding: 80px 0 100px; }
.case-carousel-track {
  display: grid;
  margin-bottom: 40px;
}
.case-slide {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.case-slide.is-active { opacity: 1; pointer-events: auto; }

.case-slide-photo {
  border-radius: 12px;
  overflow: hidden;
  min-height: 480px;
  height: 100%;
  background: var(--paper-dim);
  display: flex; align-items: center; justify-content: center;
}
.case-slide-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-slide-photo span {
  font-family: var(--font-mono); font-size: 12px; color: var(--steel);
  text-align: center; padding: 20px;
}

.case-slide-content { display: flex; flex-direction: column; }
.case-slide-content .case-label {
  font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 16px;
}
.case-slide-content .case-title {
  font-family: var(--font-heading); font-weight: 700; color: var(--white);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 16px;
}
.case-slide-content .case-desc {
  font-family: var(--font-body); color: rgba(255,255,255,.8);
  font-size: 1.05rem; margin-bottom: 28px;
}
.case-slide-content .case-stats { display: flex; flex-wrap: wrap; gap: 28px; }
.case-stats .stat { display: flex; flex-direction: column; }
.case-stats .stat-num {
  font-family: var(--font-heading); font-weight: 800; color: var(--orange);
  font-size: 1.6rem; line-height: 1; margin-bottom: 6px;
}
.case-stats .stat-label {
  font-family: var(--font-heading); font-weight: 600; font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: #9fab9e;
}
.case-stats-pending {
  font-family: var(--font-mono); font-size: 12px; color: #9fab9e;
  letter-spacing: .04em;
}

.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 24px;
}
.carousel-arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  font-family: var(--font-body);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.carousel-arrow:hover { background: var(--orange); border-color: var(--orange); }
.carousel-indicator {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; color: #cfd7d1;
  min-width: 64px; text-align: center;
}

@media (max-width: 860px) {
  .case-slide { grid-template-columns: 1fr; gap: 28px; }
  .case-slide-photo { min-height: 280px; }
}

/* Photo placeholder utility */
.photo-slot {
  background: repeating-linear-gradient(135deg, var(--paper-dim), var(--paper-dim) 10px, var(--paper) 10px, var(--paper) 20px);
  border: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel); font-family: var(--font-mono); font-size: 12px;
  text-align: center; padding: 20px;
}

/* Forms */
form.card-form {
  background: var(--white); border: 1px solid var(--line); padding: 40px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-heading); font-weight: 600; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  background: var(--paper); font-family: var(--font-body); font-size: 15px; color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--orange); outline-offset: 1px;
}

/* Footer */
.site-footer { background: var(--green-deep); color: #cfd7d1; padding: 60px 0 30px; }
.site-footer .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: var(--white); font-size: 13px; font-family: var(--font-heading); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #cfd7d1; text-decoration: none; display: block; margin-bottom: 8px; font-size: 14px; }
.site-footer a:hover { color: var(--orange); }
.footer-bottom {
  max-width: var(--max); margin: 40px auto 0; padding: 20px 32px 0;
  border-top: 1px solid var(--green-line);
  font-family: var(--font-heading); font-weight: 600; font-size: 11px; color: #83907e;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

.footer-social { display: flex; gap: 14px; margin-top: 6px; }
.footer-social a { display: inline-flex; margin: 0; }
.footer-social svg { width: 22px; height: 22px; }

/* ---------- QUEM SOMOS — hero com foto de fundo ---------- */
.quem-somos-hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background-image: url('../assets/quem-somos.jpg');
  background-size: cover;
  background-position: center;
}
.quem-somos-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--green-deep);
  opacity: .8;
  z-index: 0;
}
.quem-somos-hero .wrap { position: relative; z-index: 1; }
.quem-somos-hero h1 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .quem-somos-hero h1 { font-size: clamp(1.4rem, 5.5vw, 1.8rem); white-space: normal; }
}

/* ---------- DIFERENCIAIS (fluxo de círculos conectados) ---------- */
.diff-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.diff-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
}
.diff-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.diff-circle svg { width: 34px; height: 34px; color: var(--orange); }
.diff-title {
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  color: var(--ink); margin-bottom: 6px;
}
.diff-desc {
  font-family: var(--font-body); font-size: .875rem; color: var(--steel); margin: 0;
}
.diff-arrow {
  display: flex; align-items: center; justify-content: center;
  height: 90px; flex-shrink: 0;
  color: var(--orange); font-size: 22px;
}

@media (max-width: 900px) {
  .diff-flow { flex-direction: column; align-items: center; }
  .diff-step { max-width: 320px; }
  .diff-arrow { height: auto; width: 90px; transform: rotate(90deg); margin: 4px 0; }
}

/* ---------- SEGMENTOS — índice (cards com peso visual igual) ---------- */
.segments-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.segment-index-card {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper-dim);
  min-height: 280px;
}
.segment-index-photo { position: relative; width: 42%; flex-shrink: 0; }
.segment-index-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.segment-index-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.segment-index-label {
  font-family: var(--font-heading); font-weight: 600; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--orange);
  display: block; margin-bottom: 10px;
}
.segment-index-title {
  font-family: var(--font-heading); font-weight: 700; color: var(--ink);
  font-size: 1.15rem; margin-bottom: 10px;
}
.segment-index-desc {
  color: var(--steel); font-size: .95rem; line-height: 1.55; margin: 0 0 16px;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
}
.segment-index-link {
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  color: var(--green); transition: color .15s ease;
}
.segment-index-card:hover .segment-index-link { color: var(--orange); }

@media (max-width: 860px) {
  .segments-index-grid { grid-template-columns: 1fr; }
  .segment-index-card { flex-direction: column; }
  .segment-index-photo { width: 100%; height: 200px; }
}

/* ---------- SEGMENTOS — página de detalhe (headline + serviços + cases) ---------- */
.segment-detail-services { margin-top: 10px; }
.segment-case-note {
  font-family: var(--font-body); color: var(--steel); font-size: .9rem;
  margin-top: 10px;
}

/* ---------- PÁGINAS LEGAIS (política de privacidade, código de ética, etc.) ---------- */
.legal-hero {
  background: var(--green-deep);
  color: var(--paper);
  padding: 90px 0 60px;
}
.legal-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.legal-updated {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin: 0;
}

.legal-body { padding: 80px 0; }
.legal-container { max-width: 760px; margin: 0 auto; }
.legal-container h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--ink);
  margin: 48px 0 16px;
}
.legal-container h2:first-child { margin-top: 0; }
.legal-container h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--ink);
  margin: 28px 0 12px;
}
.legal-container p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 16px;
}
.legal-container ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal-container li {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 6px;
}
.legal-container a {
  color: var(--orange);
  text-decoration: none;
}
.legal-container a:hover { text-decoration: underline; }

.legal-contact-block {
  background: var(--paper-dim);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-contact-line {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--steel);
}
.legal-contact-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}

@media (max-width: 700px) {
  .legal-hero { padding: 60px 0 40px; }
  .legal-body { padding: 50px 0; }
  .legal-container h2 { font-size: 1.2rem; margin: 36px 0 14px; }
  .legal-container h3 { font-size: 1rem; margin: 22px 0 10px; }
  .legal-container p, .legal-container li { font-size: .95rem; }
  .legal-contact-block { padding: 20px; }
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15,33,25,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(15,33,25,.4); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

@media (max-width: 600px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* Utility */
.mt-0 { margin-top: 0; }
.center { text-align: center; }

/* Hover padrão para imagens/cards interativos — aplicar em qualquer elemento
   clicável de foto/imagem novo que for adicionado ao site. */
.hover-zoom { overflow: hidden; cursor: pointer; }
.hover-zoom img { transition: transform .3s ease; display: block; }
.hover-zoom:hover img { transform: scale(1.05); }

/* Variante para elementos sem <img> interno, onde o próprio elemento
   (ícone + fundo) deve escalar inteiro — ex: círculos de "Diferenciais". */
.hover-zoom-self { transition: transform .3s ease; cursor: pointer; }
.hover-zoom-self:hover { transform: scale(1.05); }

@media (max-width: 860px) {
  nav.main-nav { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .spec-row .item { border-right: none; border-bottom: 1px solid var(--green-line); flex: 1 1 100%; padding-left: 0; }
  .spec-row .item:last-child { border-bottom: none; }
  .site-footer .wrap { grid-template-columns: 1fr; }
}
