/* ==========================================================================
   RWP Engenharia — folha de estilos
   Paleta: Grafite #1F2428 · Grafite 2 #2B3238 · Aço claro #E6EAEE
           Aço #5B6670 · Ocre de obra #D9A21B (só botões, marcador e destaques)
   ========================================================================== */

:root {
  --grafite: #1f2428;
  --grafite-2: #2b3238;
  --aco-claro: #e6eaee;
  --aco: #5b6670;
  --aco-medio: #9aa5ad;
  --aco-borda: #c9d0d6;
  --ocre: #d9a21b;
  --ocre-texto: #b98a12;
  --texto-escuro: #c9d0d6;
  --wa: #25d366;
  --wa-hover: #1ebe5b;
  --branco: #fff;

  --font-sans: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Mono', monospace;

  --container: 1440px;
  --gutter: 96px;
  --section-gap: 112px;
  --header-h: 72px;
}

@media (max-width: 1100px) {
  :root { --gutter: 48px; --section-gap: 88px; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; --section-gap: 64px; --header-h: 60px; }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--grafite);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p, ul, ol, dl, dd, blockquote, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
.mono { font-family: var(--font-mono); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Tipografia ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ocre-texto);
  font-weight: 600;
}
.eyebrow--light { color: var(--ocre); font-size: 11px; }
.h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}
.h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}
.h3 { font-size: 20px; font-weight: 600; line-height: 1.3; }
.lead { font-size: 20px; line-height: 1.5; color: var(--grafite-2); text-wrap: pretty; }
.muted { color: var(--aco); }
.section-head { display: flex; flex-direction: column; gap: 12px; }
.tick {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 14px; color: var(--aco);
}
.tick::before {
  content: ""; width: 18px; height: 2px; background: var(--ocre); flex-shrink: 0;
}

@media (max-width: 640px) {
  .h1 { font-size: 34px; line-height: 1.1; letter-spacing: -0.02em; }
  .h2 { font-size: 28px; }
  .lead { font-size: 17px; }
  .section-head { gap: 8px; }
  .tick { font-size: 13px; }
  .tick::before { width: 16px; }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn svg { flex-shrink: 0; }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-hover); color: #fff; }
.btn--outline { border-color: var(--grafite); color: var(--grafite); }
.btn--outline:hover { background: var(--aco-claro); color: var(--grafite); }
.btn--outline-light { border-color: var(--aco-medio); color: #fff; }
.btn--outline-light:hover { background: var(--grafite-2); color: #fff; }
.btn--sm { font-size: 15px; padding: 12px 20px; gap: 8px; }
.btn--md { font-size: 16px; padding: 16px 26px; }
.btn--lg { font-size: 18px; padding: 20px 36px; }
.btn:focus-visible { outline: 2px solid var(--ocre); outline-offset: 2px; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .btn-row { flex-direction: column; gap: 10px; }
  .btn-row .btn { width: 100%; }
  .btn--md { padding: 16px; }
  .btn--lg { font-size: 17px; padding: 18px; width: 100%; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--branco);
  border-bottom: 1px solid var(--aco-claro);
}
.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand__sub { font-weight: 400; color: var(--aco); }
.brand--light { color: #fff; }
.brand--light .brand__sub { color: var(--aco-medio); }

.nav { display: flex; gap: 36px; font-size: 15px; font-weight: 500; }
.nav a { transition: color .15s; }
.nav a:hover, .nav a.is-active { color: var(--ocre-texto); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.btn--wa-header .btn__label-short { display: none; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
  border-radius: 4px;
}
.menu-toggle:focus-visible { outline: 2px solid var(--ocre); }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--aco-claro);
  background: var(--branco);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 16px var(--gutter);
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--aco-claro);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav a.is-active { color: var(--ocre-texto); }

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .brand { font-size: 16px; gap: 8px; }
  .brand svg { width: 24px; height: 24px; }
  .btn--wa-header { font-size: 13px; padding: 10px 14px; gap: 6px; }
  .btn--wa-header svg { width: 16px; height: 16px; }
  .btn--wa-header .btn__label-full { display: none; }
  .btn--wa-header .btn__label-short { display: inline; }
}

/* ---------- Fotos (placeholders até as imagens reais chegarem) ---------- */
.photo {
  position: relative;
  background: var(--aco-claro);
  border: 1px dashed var(--aco-medio);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--aco);
  font-size: 14px;
  text-align: center;
}
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo__label { font-family: var(--font-mono); font-weight: 500; }
.photo__hint { font-size: 13px; }
.photo.has-image { border-style: solid; border-color: var(--aco-claro); }
.photo.has-image .photo__label, .photo.has-image .photo__hint { display: none; }
.photo--dark { background: var(--grafite-2); border-color: var(--aco); color: var(--aco-medio); }
.photo--dark.has-image { border-color: var(--grafite-2); }

/* ---------- Hero (home) ---------- */
.hero { padding: 96px 0 88px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: center;
}
.hero__copy { display: flex; flex-direction: column; gap: 24px; }
.hero__copy .lead { max-width: 560px; }
.hero__copy .btn-row { margin-top: 8px; }
.hero__photo { height: 560px; }

@media (max-width: 1100px) {
  .hero { padding: 64px 0; }
  .hero__grid { grid-template-columns: 1fr 380px; gap: 48px; }
  .hero__photo { height: 440px; }
}
@media (max-width: 800px) {
  .hero { padding: 40px 0 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 20px; }
  .hero__copy { gap: 20px; }
  .hero__photo { height: 300px; }
}

/* ---------- Números ---------- */
.stats {
  border-top: 1px solid var(--aco-claro);
  border-bottom: 1px solid var(--aco-claro);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 32px 0 32px 32px;
  border-left: 1px solid var(--aco-claro);
  display: flex; flex-direction: column; gap: 6px;
}
.stat:first-child { padding-left: 0; border-left: 0; }
.stat__value { font-size: 40px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.stat__value--ocre { color: var(--ocre-texto); }
.stat__label { font-size: 15px; color: var(--aco); }

@media (max-width: 800px) {
  .stats { margin-top: 40px; grid-template-columns: 1fr 1fr; }
  .stat { padding: 20px 0 20px 20px; gap: 4px; }
  .stat:nth-child(odd) { padding-left: 0; border-left: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--aco-claro); }
  .stat__value { font-size: 28px; }
  .stat__label { font-size: 13px; }
}

/* ---------- Seções genéricas ---------- */
.section { padding-top: var(--section-gap); }
.section--stack { display: flex; flex-direction: column; gap: 40px; }
.section--split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .section--stack { gap: 24px; }
  .section--split { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Serviços ---------- */
.services {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.service {
  border: 1px solid var(--aco-claro);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: border-color .15s, background-color .15s;
}
.service:hover { border-color: var(--grafite); }
.service__body { display: flex; flex-direction: column; gap: 16px; }
.service__body p { font-size: 15px; line-height: 1.55; color: var(--aco); }
.service__more { color: var(--ocre-texto); font-weight: 600; font-size: 14px; white-space: nowrap; }

.service--featured {
  grid-row: 1 / span 2;
  background: var(--grafite);
  border-color: var(--grafite);
  color: #fff;
  padding: 40px;
  gap: 32px;
}
.service--featured:hover { background: var(--grafite-2); border-color: var(--grafite-2); }
.service--featured .service__body { gap: 20px; }
.service--featured .h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.service--featured p { font-size: 17px; color: var(--texto-escuro); }
.service--featured .service__more { color: var(--ocre); font-size: 15px; }
.service__title-group { display: flex; flex-direction: column; gap: 12px; }

.service--wide {
  grid-column: 2 / span 2;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.service--wide .service__body { flex: 1; gap: 6px; }

@media (max-width: 1100px) {
  .services { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .service--featured { grid-column: 1 / -1; grid-row: auto; }
  .service--wide { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .services { grid-template-columns: 1fr; }
  .service { padding: 24px; gap: 12px; }
  .service__body { gap: 12px; }
  .service .h3 { font-size: 19px; }
  .service--featured { padding: 28px 24px; gap: 16px; }
  .service--featured .h3 { font-size: 22px; }
  .service--featured p { font-size: 15px; }
  .service--featured .service__title-group { gap: 8px; }
  .service--wide { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---------- Como funciona (passos) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--grafite);
}
.step {
  padding: 28px 28px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.step:last-child { padding-right: 0; }
.step__num { font-family: var(--font-mono); font-size: 13px; color: var(--ocre-texto); font-weight: 500; }
.step p { font-size: 15px; line-height: 1.55; color: var(--aco); }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 0 28px; }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step {
    padding: 20px 0;
    border-bottom: 1px solid var(--aco-claro);
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }
  .step:last-child { border-bottom: 0; }
  .step__num { padding-top: 3px; grid-row: 1 / span 2; }
  .step .h3 { font-size: 18px; }
  .step p { grid-column: 2; }
}

/* ---------- Por que um engenheiro ---------- */
.why {
  margin-top: var(--section-gap);
  background: var(--aco-claro);
  border-radius: 6px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.why__copy { display: flex; flex-direction: column; gap: 16px; }
.why__copy .h2 { font-size: 32px; }
.why__copy p { line-height: 1.6; color: var(--grafite-2); text-wrap: pretty; }
.why__list { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.bullet { display: flex; gap: 14px; align-items: flex-start; }
.bullet::before {
  content: ""; width: 8px; height: 8px; background: var(--ocre); margin-top: 8px; flex-shrink: 0;
}
.bullet p { line-height: 1.5; }
.bullet strong { font-weight: 600; }

@media (max-width: 900px) {
  .why { padding: 40px; grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .why { padding: 28px 24px; gap: 20px; }
  .why__copy .h2 { font-size: 24px; line-height: 1.2; }
  .why__copy p { font-size: 15px; }
  .why__list { border-top: 1px solid var(--aco-borda); padding-top: 20px; gap: 12px; }
  .bullet { gap: 12px; }
  .bullet::before { margin-top: 7px; }
  .bullet p { font-size: 15px; }
}

/* ---------- Sobre ---------- */
.about {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}
.about__photo { height: 460px; }
.about__copy { display: flex; flex-direction: column; gap: 24px; }
.about__copy > p { font-size: 17px; line-height: 1.6; color: var(--grafite-2); text-wrap: pretty; }
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  border-top: 1px solid var(--aco-claro);
  padding-top: 24px;
  font-size: 15px;
}
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact__label { font-size: 12px; color: var(--aco); text-transform: uppercase; letter-spacing: .08em; }
.fact__value { font-weight: 500; }

@media (max-width: 1100px) {
  .about { grid-template-columns: 320px 1fr; gap: 48px; }
  .about__photo { height: 380px; }
}
@media (max-width: 800px) {
  .about { grid-template-columns: 1fr; gap: 20px; }
  .about__photo { height: 260px; order: 1; }
  .about__copy { gap: 20px; display: contents; }
  .about .section-head { order: 0; }
  .about__copy > p { order: 2; font-size: 16px; }
  .facts { order: 3; gap: 14px 20px; padding-top: 20px; font-size: 14px; }
  .fact__label { font-size: 11px; }
}

/* ---------- Depoimentos ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  border: 1px solid var(--aco-claro);
  border-radius: 6px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px; justify-content: space-between;
}
.testimonial p { line-height: 1.6; color: var(--grafite-2); }
.testimonial cite { font-style: normal; font-size: 14px; color: var(--aco); font-weight: 500; }

@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .testimonial { padding: 24px; gap: 14px; }
  .testimonial p { font-size: 15px; }
}

/* ---------- Região ---------- */
.region { display: flex; flex-direction: column; gap: 24px; }
.region__group { display: flex; flex-direction: column; gap: 12px; }
.region__group-title { font-size: 13px; font-weight: 600; color: var(--aco); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--aco-claro);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 14px;
}
@media (max-width: 640px) {
  .region { gap: 16px; }
  .region__group-title { display: none; }
  .chip { padding: 8px 12px; font-size: 13px; }
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--aco-claro); }
.faq details { border-bottom: 1px solid var(--aco-claro); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-weight: 600;
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--ocre-texto);
  line-height: 1;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:focus-visible { outline: 2px solid var(--ocre); outline-offset: -2px; }
.faq__answer {
  padding: 0 48px 22px 0;
  line-height: 1.6;
  color: var(--aco);
}
@media (max-width: 640px) {
  .faq summary { padding: 18px 0; gap: 16px; font-size: 16px; }
  .faq summary::after { font-size: 20px; }
  .faq__answer { padding: 0 24px 18px 0; font-size: 15px; }
}

/* ---------- CTA final ---------- */
.cta {
  margin-top: var(--section-gap);
  background: var(--grafite);
  color: #fff;
  padding: 96px var(--gutter);
  display: flex; flex-direction: column; align-items: center;
  gap: 32px;
  text-align: center;
}
.cta .h2 { font-size: 44px; letter-spacing: -0.025em; }
.cta p { font-size: 18px; color: var(--aco-medio); }
@media (max-width: 640px) {
  .cta { padding: 64px var(--gutter); gap: 24px; }
  .cta .h2 { font-size: 30px; }
  .cta p { font-size: 16px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--grafite-2);
  color: var(--aco-medio);
  font-size: 14px;
}
.site-footer__inner {
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col--brand { gap: 16px; }
.footer-col__title { color: #fff; font-weight: 600; }
.footer-col a:hover { color: #fff; }
.footer-nav { display: none; }

@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .site-footer__inner {
    padding-top: 40px;
    padding-bottom: 100px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-col--brand { gap: 10px; }
  .footer-col--services { display: none; }
  .footer-nav { display: flex; flex-wrap: wrap; gap: 8px 16px; }
}

/* ---------- Botão flutuante WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ocre);
  color: var(--grafite);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(31, 36, 40, .25);
  z-index: 40;
  transition: transform .15s ease, background-color .15s ease;
}
.wa-float:hover { transform: translateY(-2px); background: #e3ad2a; color: var(--grafite); }
@media (max-width: 640px) {
  .wa-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ---------- Página de serviço ---------- */
.svc-hero {
  background: var(--grafite);
  color: #fff;
}
.svc-hero__grid {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}
.svc-hero__copy { display: flex; flex-direction: column; gap: 24px; }
.svc-hero__back { font-size: 14px; color: var(--aco-medio); }
.svc-hero__back:hover { color: #fff; }
.svc-hero .h1 { font-size: 52px; line-height: 1.08; }
.svc-hero .lead { color: var(--texto-escuro); max-width: 620px; }
.svc-hero__photo { height: 400px; }

@media (max-width: 1100px) {
  .svc-hero__grid { grid-template-columns: 1fr 340px; gap: 48px; padding-top: 64px; padding-bottom: 64px; }
  .svc-hero__photo { height: 340px; }
}
@media (max-width: 800px) {
  .svc-hero__grid { grid-template-columns: 1fr; gap: 24px; padding-top: 40px; padding-bottom: 40px; }
  .svc-hero .h1 { font-size: 34px; }
  .svc-hero__photo { height: 260px; }
}

.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.audience__card {
  border: 1px solid var(--aco-claro);
  border-radius: 6px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.audience__card p { font-size: 15px; line-height: 1.55; color: var(--aco); }
@media (max-width: 640px) {
  .audience { grid-template-columns: 1fr; }
  .audience__card { padding: 24px; }
}

.included {
  margin-top: var(--section-gap);
  background: var(--aco-claro);
  border-radius: 6px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.included__head { display: flex; flex-direction: column; gap: 12px; }
.included__head .h2 { font-size: 32px; }
.included__head p { font-size: 15px; line-height: 1.6; color: var(--aco); }
.included__list { display: flex; flex-direction: column; }
.included__item {
  display: flex; gap: 20px; padding: 18px 0;
  border-bottom: 1px solid var(--aco-borda);
  align-items: flex-start;
}
.included__item:last-child { border-bottom: 0; }
.included__num {
  font-family: var(--font-mono); font-size: 13px; color: var(--ocre-texto);
  padding-top: 4px; width: 28px; flex-shrink: 0;
}
.included__text { display: flex; flex-direction: column; gap: 4px; }
.included__title { font-size: 17px; font-weight: 600; }
.included__desc { font-size: 15px; color: var(--aco); line-height: 1.5; }

@media (max-width: 900px) {
  .included { padding: 40px; grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .included { padding: 28px 24px; }
  .included__head .h2 { font-size: 24px; }
  .included__item { gap: 14px; padding: 16px 0; }
  .included__title { font-size: 16px; }
}

/* ---------- Motion (respeita preferência do usuário) ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
