/* Páginas estáticas de serviço — Mecânica JC */
:root {
  --mjc-navy: #0b152a;
  --mjc-navy-soft: #13203a;
  --mjc-yellow: #fbbd23;
  --mjc-red: #ef3136;
  --mjc-white: #ffffff;
  --mjc-ink: #172033;
  --mjc-muted: #536079;
  --mjc-line: #dce3ec;
  --mjc-shadow: 0 18px 42px rgba(6, 18, 38, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--mjc-ink);
  background: #f5f7fa;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

.mjc-page a { color: inherit; }

.mjc-shell { width: min(1160px, calc(100% - 40px)); max-width: 100%; margin: 0 auto; }

.mjc-page h1,
.mjc-page h2,
.mjc-page h3,
.mjc-page p,
.mjc-page li,
.mjc-page summary {
  max-width: 100%;
  overflow-wrap: break-word;
}

.mjc-topbar {
  background: var(--mjc-navy);
  color: var(--mjc-white);
}

.mjc-topbar__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mjc-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mjc-white);
  text-decoration: none;
}

.mjc-brand__logo {
  display: block;
  width: 82px;
  height: 78px;
  object-fit: contain;
}

.mjc-topbar nav { display: flex; flex-wrap: wrap; gap: 10px 24px; }

.mjc-topbar nav a {
  color: #dce6f6;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

.mjc-topbar nav a:hover, .mjc-topbar nav a:focus-visible { color: var(--mjc-yellow); }

.mjc-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--mjc-white);
  background: var(--mjc-navy);
}

.mjc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(7, 18, 37, .96) 16%, rgba(7, 18, 37, .83) 54%, rgba(7, 18, 37, .38)), var(--mjc-hero-image) center/cover no-repeat;
}

.mjc-hero__grid {
  min-height: 520px;
  display: grid;
  align-content: center;
  grid-template-columns: minmax(0, 730px);
  padding: 76px 0;
}

.mjc-kicker {
  margin: 0 0 12px;
  color: var(--mjc-yellow);
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mjc-hero h1,
.mjc-section-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: .018em;
  line-height: .98;
  text-transform: uppercase;
}

.mjc-hero h1 { max-width: 780px; font-size: clamp(2.45rem, 6vw, 5.35rem); }

.mjc-hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #edf3fb;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 500;
}

.mjc-button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.mjc-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  color: var(--mjc-navy);
  background: var(--mjc-yellow);
  font-size: .91rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease;
}

.mjc-button:hover, .mjc-button:focus-visible { transform: translateY(-2px); background: #ffd45a; }

.mjc-button--outline { border-color: var(--mjc-white); color: var(--mjc-white); background: transparent; }
.mjc-button--outline:hover, .mjc-button--outline:focus-visible { color: var(--mjc-navy); background: var(--mjc-white); }

.mjc-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .16);
}

.mjc-fact { padding: 20px 18px; background: var(--mjc-navy-soft); }
.mjc-fact strong { display: block; color: var(--mjc-yellow); font-size: 1rem; }
.mjc-fact span { display: block; margin-top: 2px; color: #d8e3f3; font-size: .9rem; }

.mjc-section { padding: 80px 0; background: var(--mjc-white); }
.mjc-section--soft { background: #f3f6fa; }
.mjc-section--dark { color: var(--mjc-white); background: var(--mjc-navy); }

.mjc-section-title { font-size: clamp(2rem, 4vw, 3.25rem); }
.mjc-section-title em { color: var(--mjc-red); font-style: normal; }
.mjc-section-title--light { color: var(--mjc-white); }

.mjc-section-intro { max-width: 720px; margin: 18px 0 0; color: var(--mjc-muted); font-size: 1.05rem; }
.mjc-section--dark .mjc-section-intro { color: #d6e0f0; }

.mjc-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.mjc-media {
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  background: #d7dce5;
  box-shadow: var(--mjc-shadow);
}

.mjc-media img { width: 100%; height: 100%; display: block; object-fit: cover; }

.mjc-checklist { display: grid; gap: 14px; margin: 26px 0 0; padding: 0; list-style: none; }

.mjc-checklist li {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
}

.mjc-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--mjc-red);
  font-size: 1.2rem;
  font-weight: 900;
}

.mjc-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.mjc-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--mjc-line);
  border-radius: 12px;
  background: var(--mjc-white);
  box-shadow: 0 8px 22px rgba(17, 33, 59, .06);
}

.mjc-card__number { color: var(--mjc-red); font-size: .78rem; font-weight: 900; letter-spacing: .08em; }
.mjc-card h3 { margin: 10px 0 8px; font-size: 1.12rem; line-height: 1.22; }
.mjc-card p { margin: 0; color: var(--mjc-muted); }

.mjc-symptoms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.mjc-symptoms li {
  padding: 17px 18px;
  border-left: 4px solid var(--mjc-yellow);
  background: rgba(255, 255, 255, .08);
  font-weight: 700;
}

.mjc-process { counter-reset: process; display: grid; gap: 0; margin-top: 38px; }

.mjc-process__item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 0 0 26px;
}

.mjc-process__item::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--mjc-navy);
  background: var(--mjc-yellow);
  font-size: .8rem;
  font-weight: 900;
}

.mjc-process__item h3 { margin: 7px 0 4px; font-size: 1.08rem; }
.mjc-process__item p { margin: 0; color: #d4dfef; }

.mjc-faq { display: grid; gap: 10px; margin-top: 32px; }

.mjc-faq details { border: 1px solid var(--mjc-line); border-radius: 8px; background: var(--mjc-white); }
.mjc-faq summary { cursor: pointer; padding: 18px 48px 18px 20px; font-weight: 800; list-style: none; }
.mjc-faq summary::-webkit-details-marker { display: none; }
.mjc-faq summary::after { content: "+"; float: right; margin-right: -28px; color: var(--mjc-red); font-size: 1.45rem; line-height: .8; }
.mjc-faq details[open] summary::after { content: "−"; }
.mjc-faq details p { margin: 0; padding: 0 20px 20px; color: var(--mjc-muted); }

.mjc-location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: 16px;
  color: var(--mjc-white);
  background: linear-gradient(130deg, #142949, #0b152a);
}

.mjc-location h2 { margin: 0; font-size: clamp(1.65rem, 3vw, 2.3rem); line-height: 1.1; }
.mjc-location p { margin: 12px 0 0; color: #dce7f6; }
.mjc-location address { margin-top: 16px; color: #dce7f6; font-style: normal; }

.mjc-footer { padding: 28px 0; color: #c9d5e6; background: #07101f; font-size: .9rem; }
.mjc-footer__inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.mjc-footer a { color: var(--mjc-yellow); }

@media (max-width: 760px) {
  .mjc-shell { width: min(calc(100% - 32px), 560px); }
  .mjc-topbar__inner { min-height: 68px; gap: 10px; }
  .mjc-topbar nav { gap: 8px 14px; justify-content: flex-end; }
  .mjc-topbar nav a { font-size: .8rem; }
  .mjc-brand__logo { width: 56px; height: 54px; }
  .mjc-hero__grid { min-height: 560px; padding: 66px 0; }
  .mjc-hero::before { background: linear-gradient(180deg, rgba(7, 18, 37, .80), rgba(7, 18, 37, .94)), var(--mjc-hero-image) center/cover no-repeat; }
  .mjc-hero h1 { font-size: clamp(2.35rem, 11vw, 3.35rem); }
  .mjc-hero__lead,
  .mjc-section-intro,
  .mjc-checklist,
  .mjc-section-title {
    max-width: 360px;
  }
  .mjc-hero__lead { font-size: 1rem; }
  .mjc-button-row { display: grid; grid-template-columns: 1fr; }
  .mjc-button { width: 100%; }
  .mjc-facts { grid-template-columns: 1fr; }
  .mjc-section { padding: 58px 0; }
  .mjc-two-column, .mjc-location { grid-template-columns: 1fr; }
  .mjc-media { min-height: 280px; order: -1; }
  .mjc-cards, .mjc-symptoms { grid-template-columns: 1fr; }
  .mjc-card { padding: 22px; }
  .mjc-location { padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mjc-button { transition: none; }
}
