/* =========================================================
   UBERSERRA — Componentes
   ========================================================= */

/* Botões --------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  min-height: 48px;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--brand-red); color: #fff; }
.btn--primary:hover { background: var(--brand-red-dark); }

.btn--dark { background: var(--graphite); color: #fff; }
.btn--dark:hover { background: #000; }

.btn--outline { border-color: var(--gray-300); color: var(--graphite); }
.btn--outline:hover { border-color: var(--graphite); }

.btn--ghost-light { border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--graphite); border-color: #fff; }

.btn--wa { background: #1faa53; color: #fff; }
.btn--wa:hover { background: #17853f; }

.btn--sm { padding: 11px 18px; min-height: 42px; font-size: 0.78rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-red);
}
.link-arrow::after { content: "→"; transition: transform var(--t-fast); }
.link-arrow:hover::after { transform: translateX(4px); }

/* Header --------------------------------------------------- */
.topbar {
  background: var(--graphite);
  color: #aeb5bd;
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
}
.topbar a:hover { color: #fff; }
.topbar__links { display: flex; gap: 20px; align-items: center; }
.topbar strong { color: #fff; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: saturate(1.4) blur(6px);
}
.header.is-stuck { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: auto; height: 52px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 14px;
  color: var(--graphite);
  border-radius: var(--radius-sm);
}
.nav__link:hover,
.nav__item[aria-expanded="true"] .nav__link { color: var(--brand-red); }
.nav__link[aria-current="page"] { color: var(--brand-red); }
.nav__caret { width: 9px; height: 9px; opacity: 0.55; }

.nav__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--brand-red);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 12px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}
.nav__item:hover .nav__panel,
.nav__item:focus-within .nav__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav__panel a {
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--gray-700);
}
.nav__panel a:hover { background: var(--gray-100); color: var(--graphite); }

.header__actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  color: var(--graphite);
}
.icon-btn:hover { border-color: var(--graphite); }
.icon-btn svg { width: 20px; height: 20px; }

.burger { display: none; }

/* Menu mobile ---------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--graphite);
  color: #fff;
  padding: 18px 20px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-base);
  visibility: hidden;
}
.mobile-menu.is-open { transform: none; visibility: visible; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-menu__top .icon-btn { border-color: rgba(255,255,255,0.3); color: #fff; }
.mobile-menu details { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.mobile-menu summary,
.mobile-menu > nav > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 2px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.92rem;
  list-style: none;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-menu details a {
  display: block;
  padding: 10px 2px 10px 14px;
  color: #b8bec6;
  font-size: 0.95rem;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary::after { content: "+"; color: var(--brand-red); font-size: 1.3rem; }
.mobile-menu details[open] summary::after { content: "–"; }
.mobile-menu__cta { margin-top: 26px; display: grid; gap: 10px; }

/* Busca ----------------------------------------------------- */
.search {
  position: relative;
  width: 100%;
}
.search__field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  box-shadow: var(--shadow-sm);
}
.search__field:focus-within { border-color: var(--brand-red); }
.search__field svg { width: 20px; height: 20px; color: var(--gray-500); flex: none; }
.search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 17px 0;
  font-size: 1rem;
  background: transparent;
}
.search__results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  max-height: 340px;
  overflow-y: auto;
  z-index: 60;
  display: none;
}
.search__results.is-open { display: block; }
.search__results a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.search__results a:last-child { border-bottom: 0; }
.search__results a:hover,
.search__results a.is-active { background: var(--gray-100); }
.search__results .cat { color: var(--gray-500); font-size: 0.82rem; }
.search__empty { padding: 16px; color: var(--gray-500); font-size: 0.92rem; }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(16, 18, 22, 0.6);
  padding: 12vh 20px 20px;
  display: none;
}
.search-overlay.is-open { display: block; }
.search-overlay .search { max-width: 720px; margin-inline: auto; }

/* Hero ------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--graphite);
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16,18,22,0.96) 12%, rgba(16,18,22,0.72) 52%, rgba(16,18,22,0.35) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(72px, 11vw, 148px);
  max-width: 900px;
}
.hero h1 { color: #fff; text-transform: uppercase; letter-spacing: -0.015em; }
.hero h1 em { font-style: normal; color: var(--brand-red); }
.hero__text {
  margin-top: 24px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: #c9cfd6;
  max-width: 640px;
}
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #aeb5bd;
  max-width: 560px;
}
.hero__note strong { color: #fff; }

.page-hero {
  background: var(--graphite);
  color: #fff;
  padding-block: clamp(44px, 6vw, 80px);
}
.page-hero h1 { color: #fff; margin-top: 10px; }
.page-hero p { color: #b8bec6; margin-top: 16px; max-width: 720px; font-size: 1.05rem; }

/* Faixa de números ----------------------------------------- */
.stats {
  background: var(--graphite-2);
  color: #fff;
  border-top: 3px solid var(--brand-red);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stats__item {
  padding: 34px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.stats__item:first-child { border-left: 0; }
.stats__value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stats__label {
  margin-top: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #98a0aa;
}

/* Cards ------------------------------------------------------ */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-fast), box-shadow var(--t-base), transform var(--t-base);
}
.card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card__media { position: relative; aspect-ratio: 4 / 3; background: var(--gray-100); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { font-size: 1.12rem; }
.card__body p { color: var(--gray-700); font-size: 0.95rem; }
.card__body .link-arrow { margin-top: auto; padding-top: 8px; }

.tile {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--graphite);
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: transform 0.6s ease; }
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,18,22,0.05) 30%, rgba(16,18,22,0.9) 100%);
}
.tile:hover img { transform: scale(1.05); }
.tile__content { position: relative; z-index: 2; }
.tile h3 { color: #fff; text-transform: uppercase; letter-spacing: 0.02em; }
.tile p { color: #c9cfd6; font-size: 0.95rem; margin-top: 8px; }

.feature {
  border-top: 3px solid var(--brand-red);
  background: var(--graphite-2);
  padding: 28px;
  border-radius: var(--radius-sm);
  height: 100%;
}
.feature h3 { color: #fff; font-size: 1.1rem; }
.feature p { color: #a9b1ba; font-size: 0.95rem; margin-top: 10px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.split__media img { width: 100%; border-radius: var(--radius-sm); }

.checklist { display: grid; gap: 12px; margin-top: 24px; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--gray-700);
}
.checklist li::before {
  content: "";
  width: 8px; height: 8px;
  margin-top: 9px;
  flex: none;
  background: var(--brand-red);
}
.section--dark .checklist li { color: #b8bec6; }

/* Breadcrumb -------------------------------------------------- */
.breadcrumb { font-size: 0.85rem; color: var(--gray-500); padding-block: 16px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.breadcrumb li::after { content: "/"; margin-left: 8px; color: var(--gray-300); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a:hover { color: var(--brand-red); }

/* Tabela técnica ---------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  -webkit-overflow-scrolling: touch;
}
.table-wrap table { min-width: 560px; font-size: 0.94rem; }
.table-wrap caption { text-align: left; padding: 14px 16px; color: var(--gray-500); font-size: 0.85rem; }
.table-wrap th, .table-wrap td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--gray-200); }
.table-wrap thead th {
  background: var(--graphite);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
}
.table-wrap tbody tr:nth-child(even) { background: var(--gray-100); }

/* FAQ --------------------------------------------------------- */
.faq { border-top: 1px solid var(--gray-200); }
.faq details { border-bottom: 1px solid var(--gray-200); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand-red); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 22px; color: var(--gray-700); max-width: 76ch; }

/* Timeline ----------------------------------------------------- */
.timeline { display: grid; gap: 0; border-left: 2px solid var(--gray-200); padding-left: 28px; }
.timeline li { position: relative; padding-bottom: 30px; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -35px; top: 6px;
  width: 12px; height: 12px;
  background: var(--brand-red);
  border-radius: 50%;
}
.timeline h3 { font-size: 1.05rem; }
.timeline span {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--brand-red);
  letter-spacing: 0.06em;
}
.timeline p { color: var(--gray-700); margin-top: 6px; }

/* Badges / logos ------------------------------------------------ */
.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  color: var(--gray-700);
}

.recognitions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.recognitions article {
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--brand-red);
  padding: 24px;
  background: #fff;
}
.recognitions h3 { font-size: 1.05rem; }
.recognitions p { color: var(--gray-700); font-size: 0.95rem; margin-top: 8px; }

/* Formulário ----------------------------------------------------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--graphite);
  font-size: 0.98rem;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: 0; border-color: var(--brand-red); box-shadow: 0 0 0 3px var(--brand-red-soft); }
.field .error { color: #ff6a6a; font-size: 0.8rem; display: none; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #ff6a6a; }
.field.has-error .error { display: block; }

.field--file input[type="file"] { padding: 11px; background: transparent; }

.form .hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.86rem; color: var(--gray-500); }
.consent input { margin-top: 4px; width: 18px; height: 18px; flex: none; accent-color: var(--brand-red); }
.consent a { text-decoration: underline; }

.form-status { font-size: 0.92rem; padding: 14px 16px; border-radius: var(--radius-sm); display: none; }
.form-status.is-ok { display: block; background: rgba(31,170,83,0.12); color: #1faa53; }
.form-status.is-error { display: block; background: rgba(224,37,37,0.12); color: #ff6a6a; }

.form-panel {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
}
.form-panel .field label { color: var(--gray-700); }

.btn[disabled] { opacity: 0.65; pointer-events: none; }
.btn .spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn.is-loading .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* CTA final ------------------------------------------------------- */
.cta-band {
  background: var(--brand-red);
  color: #fff;
  padding-block: clamp(40px, 5vw, 64px);
}
.cta-band__inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 2rem); text-transform: uppercase; }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 8px; }
.cta-band .btn--dark:hover { background: #fff; color: var(--graphite); }

/* Footer ------------------------------------------------------------ */
.footer { background: var(--graphite); color: #98a0aa; padding-top: clamp(48px, 6vw, 80px); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 44px;
}
.footer h3 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer ul { display: grid; gap: 9px; font-size: 0.93rem; }
.footer a:hover { color: #fff; }
.footer__brand img { height: 58px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: 0.93rem; max-width: 300px; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
}
.footer__social a:hover { background: var(--brand-red); border-color: var(--brand-red); color: #fff; }
.footer__social svg { width: 17px; height: 17px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Barra mobile fixa --------------------------------------------------- */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 120;
  display: none;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.mobile-bar svg { width: 17px; height: 17px; }
.mobile-bar .wa { background: #1faa53; }
.mobile-bar .quote { background: var(--brand-red); }

/* Cookies -------------------------------------------------------------- */
.cookie-bar {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 620px;
  z-index: 150;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--brand-red);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-bar.is-open { display: flex; }
.cookie-bar p { font-size: 0.88rem; color: var(--gray-700); flex: 1 1 300px; }
.cookie-bar .actions { display: flex; gap: 8px; }

/* WhatsApp flutuante ---------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 110;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1faa53;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { background: #17853f; }

/* Artigos ---------------------------------------------------------------- */
.article-card { border: 1px solid var(--gray-200); padding: 26px; background: #fff; height: 100%; display: flex; flex-direction: column; gap: 12px; }
.article-card time { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); }
.article-card h3 { font-size: 1.1rem; }
.article-card p { color: var(--gray-700); font-size: 0.95rem; }
.article-card .link-arrow { margin-top: auto; }

/* Cidades ------------------------------------------------------------------ */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-block: 22px 26px; }
.chip {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  color: var(--gray-700);
}
.chip[aria-pressed="true"] { background: var(--graphite); border-color: var(--graphite); color: #fff; }

.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.city-grid li {
  border: 1px solid var(--gray-200);
  padding: 13px 16px;
  font-size: 0.94rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
}
.city-grid li span { color: var(--gray-500); font-size: 0.8rem; font-weight: 700; }
.city-empty { color: var(--gray-500); padding: 18px 0; display: none; }

/* Info contato --------------------------------------------------------------- */
.info-list { display: grid; gap: 22px; }
.info-list div { border-left: 3px solid var(--brand-red); padding-left: 18px; }
.info-list h3 { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); }
.info-list p { font-size: 1.05rem; margin-top: 4px; }

/* =========================================================
   Clientes (prova social) — grade monocromática, sem carrossel
   ========================================================= */
.clients {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.clients li {
  background: var(--graphite);
  display: grid;
  place-items: center;
  padding: 22px 16px;
  min-height: 96px;
}
.clients img {
  max-width: 130px;
  height: auto;
  filter: grayscale(1);
  opacity: 0.7;
  transition: opacity var(--t-fast), filter var(--t-fast);
}
.clients li:hover img { filter: grayscale(0); opacity: 1; }
/* preenche a última célula vazia da grade */
.clients::after { content: ""; background: var(--graphite); }

/* Cards apenas de texto (conteúdos) */
.card--text .card__body { padding: 26px 24px 28px; }
.card--text h2 a,
.card--text h3 a { color: inherit; text-decoration: none; }
.card--text h2 a:hover,
.card--text h3 a:hover { color: var(--brand-red); }

/* Artigo */
.prose h2 { margin-top: 34px; font-size: clamp(1.15rem, 2vw, 1.45rem); }
.prose p { margin-top: 14px; color: var(--gray-700); }
.prose .checklist { margin-top: 16px; }
.page-hero--sm { padding-block: clamp(36px, 5vw, 60px); }

/* Soluções — composição editorial assimétrica no desktop */
.section--solutions .split { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
.section--solutions .split--reverse { grid-template-columns: 0.85fr 1.15fr; }
.section--solutions .split__media img { aspect-ratio: 4 / 5; object-fit: cover; }
