:root {
  --bg: #0b0e11;
  --bg2: #0f141a;
  --soft: #f6f7f9;

  --white: #ffffff;
  --text: #0f172a;

  --muted: #9aa4b2;
  --line: rgba(255, 255, 255, 0.1);
  --line2: rgba(15, 23, 42, 0.1);

  --red: #d11f2a;
  --red2: #ff3b47;
  --yellow: #f7c600;
  --green: #44c060;

  --shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  --shadow2: 0 16px 40px rgba(15, 23, 42, 0.1);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  line-height: 1.6;
  margin: 0 0 12px;
}
h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 1.2vw + 1rem, 2.2rem);
}
h3 {
  font-size: 1.2rem;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Banner acima do header */
.top-banner {
  width: 100%;
  background-color: #0b0e11;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line2);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__logo {
  height: 34px;
  width: auto;
}
.brand__text {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  font-size: 1.05rem;
}
.brand__text span {
  color: var(--red2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line2);
  background: rgba(0, 0, 0, 0.04);
  cursor: pointer;
}
.nav__toggleBar {
  display: block;
  height: 2px;
  width: 18px;
  background: var(--text);
  margin: 4px auto;
  opacity: 0.9;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__link {
  color: rgba(15, 23, 42, 0.88);
  font-size: 0.95rem;
  padding: 10px 6px;
  opacity: 0.9;
}
.nav__link:hover {
  opacity: 1;
}
.nav__cta {
  margin-left: 6px;
}

.header__cta {
  display: inline-flex;
}

.navBack {
  height: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease;
  user-select: none;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
.btn:active {
  transform: translateY(0px);
  box-shadow: none;
}
.btn--block {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: #fff;
}
.btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: rgba(255, 255, 255, 0.92);
}
.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: transparent;
  border-radius: 10px;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
}
.btn--cta {
  height: 46px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(
    90deg,
    #1d2d22 0%,
    var(--green) 48%,
    var(--green) 100%
  );
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.heroStrip {
  position: relative;
  background: var(--bg);
  color: #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.heroStrip__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.62) 45%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    url("assets/segmentos/seg-construtora-1600.webp") right center/cover
      no-repeat;
  opacity: 0.95;
}
.heroStrip__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  padding: 0;
  align-items: center;
}
.heroStrip__text {
  font-size: 30px;
}

.heroStrip__accent {
  font-size: 25px;
}

.heroStrip__kicker {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}
.heroStrip__list {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  text-align: left;
}

.heroStrip__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.heroStrip__accent {
  letter-spacing: 0.06em;
  color: var(--red2);
}
.heroStrip__bullet {
  color: var(--red2);
}
.heroStrip__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-self: end;
  align-items: flex-end;
}
.heroStrip__visit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.heroStrip__visit .bar {
  width: 4px;
  height: 26px;
  background: var(--yellow);
  border-radius: 2px;
}
.heroStrip__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.section {
  padding: 35px 0;
}
#segmentos {
  padding: 30px 0;
}
.section--soft {
  background: var(--soft);
}
.section--dark {
  background: linear-gradient(180deg, #0b0e11, #0f141a);
  color: #fff;
}
.section__head {
  margin-bottom: 26px;
  max-width: 78ch;
}
.section__head--row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  max-width: 100%;
}
.section__head p {
  color: rgba(15, 23, 42, 0.82);
}

.section__head {
  color: var(--text);
}

.section__head h2,
.section__head h3 {
  color: inherit;
}

.section--dark .section__head p {
  color: rgba(255, 255, 255, 0.84);
}

.section--dark .section__head {
  color: rgba(255, 255, 255, 0.96);
}

#clientes .section__head {
  color: rgba(255, 255, 255, 0.96);
}

.seal {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(15, 23, 42, 0.7);
  font-weight: 800;
}
.seal__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(209, 31, 42, 0.25);
  color: var(--red);
  background: rgba(209, 31, 42, 0.06);
}
.seal__text strong {
  color: var(--red);
  font-weight: 900;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.homeShowcase {
  padding-top: 34px;
  padding-bottom: 10px;
}
.homeShowcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.homeShowcase__card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #dfe6ee;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}
.homeShowcase__card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.24s ease;
}
.homeShowcase__card:hover img {
  transform: scale(1.04);
}

.card {
  background: #fff;
  border: 1px solid var(--line2);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}
.list {
  margin: 12px 0 0;
  padding-left: 18px;
}
.list li {
  margin: 8px 0;
  color: rgba(15, 23, 42, 0.82);
}

.segmentos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.segCard {
  display: block;
  border: 1px solid rgba(15, 23, 42, 0.1);
  overflow: hidden;
  background: #fff;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    border-color 0.14s ease;
}
.segCard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
  border-color: rgba(209, 31, 42, 0.2);
}
.segCard__imgWrap {
  position: relative;
  height: 320px;
  background: #eef1f5;
  overflow: hidden;
}
.segCard__imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1.01);
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}
.segCard:hover .segCard__imgWrap img {
  transform: scale(1.06);
  filter: none;
}

.segCard__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.segCard__overTitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.segCard__overText {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  max-width: 90%;
  padding: 6px 10px;
  font-size: clamp(0.76rem, 0.68rem + 0.25vw, 0.9rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.chip {
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}
.chip.is-active {
  border-color: rgba(209, 31, 42, 0.28);
  background: rgba(209, 31, 42, 0.08);
  color: #8f0f18;
}

.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease;
}
.case:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.case img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}
.case__body {
  padding: 14px 14px 16px;
}
.case__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.case__tag {
  background: rgba(209, 31, 42, 0.1);
  color: #8f0f18;
  border: 1px solid rgba(209, 31, 42, 0.18);
  padding: 6px 10px;
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.case__tag--alt {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.78);
}
.case__kpi {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.88);
}
.case p {
  color: rgba(15, 23, 42, 0.8);
}

.ctaStrip {
  margin-top: 22px;
  background: linear-gradient(
    135deg,
    rgba(209, 31, 42, 0.1),
    rgba(255, 59, 71, 0.06)
  );
  border: 1px solid rgba(209, 31, 42, 0.18);
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.darkText {
  color: rgba(15, 23, 42, 0.86) !important;
  border-color: rgba(15, 23, 42, 0.12) !important;
}

.logoWall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  justify-items: center;
}
.logoWall--compact {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-content: center;
  align-items: stretch;
  margin-inline: auto;
}
.logoCell {
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.7);
  background: #fff;
  min-height: 64px;
  width: 100%;
  max-width: 210px;
}
.logoCell picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.logoCell img {
  display: block;
  margin: 0 auto;
  max-width: 70%;
  max-height: 100%;
  object-fit: contain;
  height: auto;
}

#clientes .logoCell picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94%;
  height: 94%;
}

#clientes .logoCell {
  min-height: 164px;
}

#clientes .logoCell > img {
  display: block;
  margin: 0 auto;
  width: 94%;
  height: 94%;
  object-fit: contain;
}

#clientes .logoCell picture img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
  margin: 22px 0;
}

.logoWall logoWall--compact .logoCell img {
  max-width: 70%;
  max-height: 100%;
  object-fit: contain;
  height: auto;
}

.contact {
  align-items: start;
}
.muted {
  color: rgba(255, 255, 255, 0.84);
}

.contact__box {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  margin-top: 14px;
}
.contact__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact__row:last-child {
  border-bottom: none;
}
.contact__k {
  color: rgba(255, 255, 255, 0.82);
  min-width: 110px;
}
.contact__v {
  color: rgba(255, 255, 255, 0.92);
  text-align: right;
}
.contact__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
}
label {
  display: block;
  margin-top: 12px;
}
label span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 6px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  padding: 12px 12px;
  outline: none;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.form__hint {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  line-height: 1.4;
  margin-bottom: 6px;
}
.form__fineprint {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  margin-top: 12px;
}
.toast {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.9);
  display: none;
}
.toast.is-show {
  display: block;
}

.detailHero {
  position: relative;
  padding: 62px 0 42px;
  background: #0b0e11;
  color: #fff;
  overflow: hidden;
}
.detailHero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(0, 0, 0, 0.62) 45%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("assets/segmentos/seg-construtora-1600.webp") right center/cover
      no-repeat;
  opacity: 0.95;
}
.detailHero__bg--cond {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(0, 0, 0, 0.62) 45%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("assets/segmentos/seg-condominio-1600.webp") right center/cover
      no-repeat;
}

.detailHero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.kicker {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
}
.detailTitle {
  font-size: clamp(2rem, 2vw + 1.2rem, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
}
.detailLead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 70ch;
}
.detailActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.detailCard {
  background: rgba(15, 20, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  padding: 16px;
}
.cleanList {
  margin: 10px 0 0;
  padding-left: 18px;
}
.cleanList li {
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.86);
}
.mutedNote {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 10px;
}

.footer {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 980px) {
  .header__inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
  }
  .header__cta {
    display: inline-flex;
  }
  .header__ctaText {
    display: none;
  }
  .brand {
    width: auto;
    justify-content: flex-start;
    margin: 0;
  }
  .brand__logo {
    height: 40px;
  }
  .nav {
    width: auto;
    justify-content: flex-end;
    align-items: center;
  }
  .nav__toggle {
    margin-left: 8px;
  }
  .heroStrip__text {
    text-align: center;
    margin-bottom: 14px;
  }

  .grid3 {
    grid-template-columns: 1fr;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .homeShowcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .homeShowcase__card,
  .homeShowcase__card img {
    min-height: 240px;
  }
  .cases {
    grid-template-columns: 1fr;
  }
  .segmentos__grid {
    grid-template-columns: 1fr;
  }
  .segCard__imgWrap {
    height: 240px;
  }

  .heroStrip__inner {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }
  .heroStrip__cta {
    justify-self: start;
    align-items: flex-start;
  }
  .heroStrip__buttons {
    justify-content: flex-start;
  }

  .detailHero__inner {
    grid-template-columns: 1fr;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav__menu {
    position: absolute;
    top: 66px;
    right: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line2);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .nav__menu.is-open {
    display: flex;
  }
  .nav__link {
    padding: 12px;
  }
  .nav__link:hover {
    background: rgba(0, 0, 0, 0.04);
  }
  .nav__cta {
    margin-left: 0;
  }
}

@media (max-width: 1200px) {
  .header__inner {
    padding: 10px 0;
  }
  .brand__logo {
    height: 30px;
  }
  .heroStrip__title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
  }
  .section {
    padding: 58px 0;
  }
  .section__head {
    margin-bottom: 18px;
  }
}

@media (max-width: 640px) {
  .header__inner {
    padding: 8px 0;
    gap: 8px;
  }
  .brand__logo {
    height: 26px;
  }
  .heroStrip__inner {
    padding: 12px 0;
  }
  .heroStrip__title {
    font-size: clamp(1.4rem, 6vw, 1.7rem);
  }
  .section {
    padding: 40px 0;
  }
  .section__head {
    margin-bottom: 14px;
  }
  .homeShowcase__grid {
    grid-template-columns: 1fr;
  }
  .homeShowcase__card,
  .homeShowcase__card img {
    min-height: 240px;
  }
  .logoWall,
  .logoWall--compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .logoCell {
    padding: 10px;
  }
  .contact__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
  justify-items: stretch;
}
.diferenciais__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: var(--text);
  padding: 18px 12px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  text-align: center;
  height: 100%;
  min-height: 160px;
}
.diferenciais__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diferenciais__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.diferenciais__underline {
  width: 36px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red2));
}
.diferenciais__label {
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: none;
  color: rgba(15, 23, 42, 0.92);
}

@media (max-width: 1100px) {
  .diferenciais__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .diferenciais__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .diferenciais__item {
    min-height: 140px;
  }
  .diferenciais__icon {
    width: 48px;
    height: 48px;
  }
}

.sobreBadge {
  background: linear-gradient(90deg, var(--red), var(--red2));
  color: #fff;
  padding: 10px 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.sobre__grid img {
  width: 100%;
  height: auto;
  display: block;
}
.sobre__grid p {
  color: rgba(15, 23, 42, 0.88);
  margin-bottom: 14px;
}

.pkt-page {
  background: #f6f8fb;
}

.pkt-page .topbar {
  background: #0a0f14;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.pkt-page .topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pkt-page .topbar__left,
.pkt-page .topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pkt-page .topbar__link {
  color: rgba(255, 255, 255, 0.82);
}

.pkt-page .topbar__link:hover {
  color: #fff;
}

.pkt-page .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(209, 31, 42, 0.15);
}

.pkt-page .sep {
  opacity: 0.35;
}

.pkt-page .header {
  background: rgba(10, 15, 20, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pkt-page .header__inner {
  min-height: 78px;
}

.pkt-page .brand__logo {
  max-height: 46px;
  width: auto;
}

.pkt-page .nav__link {
  color: rgba(255, 255, 255, 0.9);
}

.pkt-page .nav__link:hover {
  color: #fff;
  background: transparent;
}

.pkt-page .nav__toggleBar {
  background: #fff;
}

.pkt-page .pktHero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(209, 31, 42, 0.22),
      transparent 32%
    ),
    linear-gradient(135deg, #0b1117 0%, #121a24 55%, #0a0f14 100%);
  color: #f4f7fb;
}

.pkt-page .pktHero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 12, 18, 0.92) 0%,
      rgba(8, 12, 18, 0.72) 42%,
      rgba(8, 12, 18, 0.55) 100%
    ),
    url("assets/segmentos/seg-construtora-1600.webp") right center / cover
      no-repeat;
  opacity: 0.95;
}

.pkt-page .pktHero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  padding: 64px 0 56px;
  align-items: center;
}

.pkt-page .pktHero__content h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.25rem, 3.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
}

.pkt-page .accent {
  background: linear-gradient(90deg, #ff8a7e, #ff4f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pkt-page .pktLead {
  max-width: 62ch;
  color: rgba(244, 247, 251, 0.78);
  font-size: 1.05rem;
}

.pkt-page .pktHero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 18px;
}

.pkt-page .pktHero__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pkt-page .pktHero__list li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pkt-page .pktPanel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.pkt-page .pktPanel__eyebrow {
  display: inline-flex;
  padding: 6px 10px;
  background: rgba(209, 31, 42, 0.16);
  color: #ffd8db;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pkt-page .pktPanel h3,
.pkt-page .pktPanel p,
.pkt-page .pktQuickCard strong,
.pkt-page .pktQuickCard span,
.pkt-page .pktMeta span {
  color: #fff;
}

.pkt-page .pktQuickGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.pkt-page .pktQuickCard {
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pkt-page .pktMeta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pkt-page .pktMeta span {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.84rem;
}

.pkt-page .pktStats {
  margin-top: -26px;
  position: relative;
  z-index: 2;
}

.pkt-page .pktStats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pkt-page .pktStat,
.pkt-page .storyCard,
.pkt-page .systemCard {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 20px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.06);
}

.pkt-page .pktStat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  color: #101826;
}

.pkt-page .pktStat span {
  color: rgba(15, 23, 42, 0.72);
  font-size: 0.94rem;
}

.pkt-page .storyGrid,
.pkt-page .choiceGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.pkt-page .storyMedia {
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.pkt-page .storyMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkt-page .storyList {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.pkt-page .storyList li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pkt-page .storyList li::before {
  content: "•";
  color: var(--red);
  font-weight: 900;
}

.pkt-page .pktChoice {
  background: #0e141c;
  color: #fff;
}

.pkt-page .pktChoice .section__head,
.pkt-page .pktChoice .section__head h2,
.pkt-page .pktChoice .section__head p {
  color: #fff;
}

.pkt-page .choiceCard {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  background: #131c27;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pkt-page .choiceCard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkt-page .choiceCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 18, 0.12),
    rgba(10, 14, 18, 0.88)
  );
}

.pkt-page .choiceCard__body {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.pkt-page .choiceTag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pkt-page .choiceCard h3,
.pkt-page .choiceCard p {
  color: #fff;
}

.pkt-page .systemGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pkt-page .bannerCta {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(
    135deg,
    rgba(209, 31, 42, 0.08),
    rgba(255, 111, 97, 0.08)
  );
  border: 1px solid rgba(209, 31, 42, 0.15);
  padding: 20px;
}

.pkt-page .pktClients .logoWall {
  margin-top: 18px;
}

.pkt-page .pktClients .logoCell {
  min-height: 120px;
}

.pkt-page .pktContactIntro {
  max-width: 56ch;
}

.pkt-page #contato .muted {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 980px) {
  .pkt-page .topbar {
    display: none;
  }

  .pkt-page .pktHero__inner,
  .pkt-page .storyGrid,
  .pkt-page .choiceGrid,
  .pkt-page .systemGrid,
  .pkt-page .pktStats__grid {
    grid-template-columns: 1fr;
  }

  .pkt-page .pktHero__list,
  .pkt-page .pktQuickGrid {
    grid-template-columns: 1fr;
  }

  .pkt-page .pktStats {
    margin-top: 0;
  }

  .pkt-page .nav__menu {
    background: rgba(10, 15, 20, 0.98);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 980px) {
  .sobre__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.grid2.sobre__grid {
  gap: 18px;
}

.grid2.sobre__grid img {
  width: 50%;
  height: auto;
  display: block;
  margin: auto;
}

.heroSplit {
  display: flex;
  height: 85vh;
  min-height: 550px;
  background: #fff;
}
.heroSplit__panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.heroSplit__panel:last-child {
  border-right: none;
}
@media (min-width: 981px) {
  .heroSplit__panel:hover {
    flex: 1.15;
  }
}
.heroSplit__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.2);
  transition:
    filter 0.6s ease,
    transform 0.6s ease;
  z-index: 0;
}
.heroSplit__panel:hover .heroSplit__img {
  filter: brightness(0.6) saturate(1);
  transform: scale(1.05);
}
.heroSplit__content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}
.heroSplit__kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f7c600;
  margin-bottom: 12px;
}
.heroSplit__title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.heroSplit__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
  line-height: 1.6;
  max-width: 90%;
}
.heroSplit__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #d11f2a;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}
.heroSplit__panel:hover .heroSplit__btn {
  background: #ff3b47;
  transform: translateY(-2px);
}

.header#topo {
  color: #fff;
}
.header#topo .nav__link {
  color: rgba(255, 255, 255, 0.85);
}
.header#topo .nav__link:hover {
  color: #fff;
}
.header#topo .nav__toggleBar {
  background-color: #fff;
}

@media (max-width: 768px) {
  .header#topo .nav__menu {
    background-color: #0b0e11;
  }
  .heroSplit {
    flex-direction: column;
    height: auto;
  }
  .heroSplit__panel {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 450px;
  }
  .heroSplit__title {
    font-size: 1.8rem;
  }
}

#sobre-nos .diferenciais__item {
  min-height: 130px;
  padding: 14px 10px;
}
#sobre-nos .diferenciais__icon {
  width: 50px;
  height: 50px;
}
#sobre-nos .diferenciais__label {
  font-size: 0.82rem;
}
