/* K Portas — layout compacto, leitura editorial, acabamento luxuoso */
:root {
  --kp-bg: #061020;
  --kp-bg-elevated: #0a1929;
  --kp-card: #112240;
  --kp-gold: #d4af37;
  --kp-gold-soft: rgba(212, 175, 55, 0.12);
  --kp-text: #f5f5f5;
  --kp-muted: #a0aab5;
  --kp-max: 1280px;
  --kp-section-y: clamp(2.5rem, 4vw, 3.25rem);
  --kp-block-gap: clamp(1.35rem, 3vw, 1.85rem);
  --kp-compact-pad: min(2.5rem, 40px);
  --kp-breathe: clamp(1.75rem, 3.5vw, 2.5rem);
  --kp-radius: 10px;
  --kp-font-sans: "Inter", system-ui, sans-serif;
  --kp-font-display: "Montserrat", system-ui, sans-serif;
  /* Altura aproximada do header (padding + logo + borda) para faixa CREA sticky */
  --kp-header-sticky-offset: 75px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--kp-bg);
  color: var(--kp-text);
  font-family: var(--kp-font-sans);
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Imagens e mídia: evita overflow horizontal (mobile / CWV) */
main img,
footer img,
section img {
  max-width: 100%;
  height: auto;
}

/* Tabelas em conteúdo editorial (envolva com .kp-table-wrap no HTML) */
.kp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  margin: 0.75rem 0 1rem;
}

.kp-table-wrap table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
}

/* Foco visível — acessibilidade (WCAG 2.4.7) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-links a:focus-visible,
.footer-aux-nav a:focus-visible {
  outline: 2px solid var(--kp-gold);
  outline-offset: 3px;
}

/* Font Awesome carregado de forma assíncrona: reduz CLS até o CSS do CDN aplicar */
.fa-solid,
.fa-brands,
.fa-regular,
.fa-light {
  display: inline-block;
  min-width: 0.875em;
  font-style: normal;
  line-height: 1;
  vertical-align: -0.125em;
}

.container {
  width: 100%;
  max-width: var(--kp-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.75rem);
}

.text-center {
  text-align: center;
}

/* HEADER */
header {
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background-color: rgba(6, 16, 32, 0.92);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.header-container .logo {
  margin-right: auto;
}

.header-container nav {
  flex-shrink: 0;
}

.main-nav {
  display: block;
}

.mobile-menu-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 8px;
  background: rgba(17, 34, 64, 0.55);
  cursor: pointer;
}

.crea-announcement-bar {
  position: sticky;
  top: var(--kp-header-sticky-offset);
  z-index: 999;
  width: 100%;
  background-color: rgba(5, 7, 11, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-crea-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 30px;
  padding-bottom: 0;
  overflow: hidden;
}

.header-crea-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.35rem;
  color: #ffffff;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  font-family: var(--kp-font-display);
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}

.header-crea-pill i {
  margin-right: 0.25rem;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.logo-site {
  display: block;
  height: auto;
  width: clamp(160px, 38vw, 220px);
  max-height: 48px;
}

.logo-site.logo-kportas-inline {
  width: 180px;
  max-width: min(180px, calc(100vw - 9rem));
  height: auto;
  max-height: none;
  aspect-ratio: 600 / 148;
  object-fit: contain;
  object-position: left center;
}

.logo-site:not(.logo-kportas-inline) {
  object-fit: contain;
  object-position: left center;
}

.logo-kportas-inline {
  flex-shrink: 0;
}

.logo-site--footer.logo-kportas-inline {
  width: clamp(150px, 42vw, 200px);
  max-height: 44px;
  opacity: 0.88;
  margin-bottom: 0.65rem;
  margin-left: auto;
  margin-right: auto;
}

.header-logo {
  height: 52px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  opacity: 0.92;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
  color: var(--kp-gold);
  opacity: 1;
}

.nav-item--dropdown {
  position: relative;
}

.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0;
}

.nav-dropdown a {
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  text-transform: uppercase;
}

@media (min-width: 769px) {
  .nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 230px;
    padding: 0.65rem 0;
    margin-top: 0.15rem;
    background: rgba(6, 16, 32, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
    z-index: 1200;
  }

  .nav-dropdown li {
    padding: 0.4rem 1rem;
    white-space: nowrap;
  }

  .nav-item--dropdown:hover .nav-dropdown,
  .nav-item--dropdown:focus-within .nav-dropdown {
    display: block;
  }
}

@media (max-width: 768px) {
  .nav-item--dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.35rem;
    padding-left: 0.35rem;
    border-left: 2px solid rgba(212, 175, 55, 0.28);
  }
}

/* HERO */
.hero {
  padding: clamp(2.5rem, 7vw, 3.75rem) 0 clamp(2.25rem, 4.5vw, 3rem);
  background: radial-gradient(ellipse 120% 80% at 50% -20%, #1a3352 0%, var(--kp-bg) 55%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: min(56rem, 100%);
  margin-inline: auto;
}

.hero-content .subtitle {
  margin-bottom: 1.15rem;
}

.hero-content .cta-group {
  margin-top: 0.5rem;
}

/* Garantia estendida — referência visual: cartão claro, verde #28a745, cinzas editoriais */
.kp-warranty-ref {
  width: 100%;
  max-width: 26rem;
  margin: 0 auto 1.75rem;
  padding: 1.5rem 1.65rem 1.35rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.kp-warranty-ref__eyebrow {
  font-family: var(--kp-font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #757575;
  margin: 0 0 1.15rem;
  line-height: 1.35;
}

.kp-warranty-ref__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.35rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

.kp-warranty-ref__shield-wrap {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kp-warranty-ref__shield {
  font-size: 3.75rem;
  color: #28a745;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(40, 167, 69, 0.25));
}

.kp-warranty-ref__check {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1;
  pointer-events: none;
}

.kp-warranty-ref__words {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.05;
}

.kp-warranty-ref__w-strong {
  display: block;
  font-family: var(--kp-font-sans);
  font-size: clamp(1.65rem, 4.5vw, 2rem);
  font-weight: 800;
  color: #4d4d4d;
  letter-spacing: -0.02em;
}

.kp-warranty-ref__w-soft {
  display: block;
  font-family: var(--kp-font-sans);
  font-size: clamp(1.35rem, 3.8vw, 1.65rem);
  font-weight: 500;
  color: #757575;
  margin-top: 0.15rem;
}

.kp-warranty-ref__note {
  font-family: var(--kp-font-sans);
  font-size: 0.84rem;
  line-height: 1.55;
  color: #757575;
  margin: 0;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.kp-warranty-ref--compact {
  max-width: 22rem;
  padding: 1.15rem 1.25rem 1rem;
  margin-bottom: 0.5rem;
}

.kp-warranty-ref--compact .kp-warranty-ref__eyebrow {
  font-size: 0.62rem;
  margin-bottom: 0.85rem;
}

.kp-warranty-ref--compact .kp-warranty-ref__shield-wrap {
  width: 3rem;
  height: 3rem;
}

.kp-warranty-ref--compact .kp-warranty-ref__shield {
  font-size: 3rem;
}

.kp-warranty-ref--compact .kp-warranty-ref__check {
  font-size: 0.95rem;
}

.kp-warranty-ref--compact .kp-warranty-ref__w-strong {
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
}

.kp-warranty-ref--compact .kp-warranty-ref__w-soft {
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
}

.kp-warranty-ref--compact .kp-warranty-ref__note {
  font-size: 0.78rem;
}

.faq-warranty-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.faq-warranty-wrap__lead {
  color: #e0e0e0;
  font-size: 1.1rem;
  font-family: "Montserrat", system-ui, sans-serif;
  margin: 0;
}

.faq-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 360px);
}

/* Carrossel infinito de logos — logo abaixo do Hero */
section.clients-marquee-section {
  padding-block: clamp(0.85rem, 2vw, 1.25rem);
  padding-inline: 0;
  margin: 0;
  background: linear-gradient(180deg, rgba(10, 25, 47, 0.5) 0%, rgba(6, 16, 32, 0.98) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
}

.clients-marquee__lead {
  text-align: center;
  color: var(--kp-muted);
  font-size: clamp(0.88rem, 1.35vw, 1.05rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 auto var(--kp-breathe);
  max-width: 100%;
  padding: 0 clamp(1rem, 4vw, 1.75rem);
  white-space: nowrap;
}

.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.clients-marquee:hover .clients-marquee__track {
  animation-play-state: paused;
}

.clients-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  width: max-content;
  animation: kp-clients-marquee 45s linear infinite;
}

.clients-marquee__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  min-width: 180px;
  padding: 0 1rem;
}

.clients-marquee__img {
  width: 190px;
  height: 68px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: none;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.clients-marquee__item:hover .clients-marquee__img {
  opacity: 1;
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee__track {
    animation: none;
  }

  .clients-marquee__img {
    transition: none;
  }

  .clients-marquee__item:hover .clients-marquee__img {
    transform: none;
  }
}

@keyframes kp-clients-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Faixa de selos abaixo do carrossel de clientes */
.trust-strip {
  background-color: var(--kp-bg);
  padding: var(--kp-compact-pad) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  flex-wrap: wrap;
  text-transform: uppercase;
}

.trust-strip--compact {
  padding-block: var(--kp-compact-pad);
}

.trust-strip__item {
  color: var(--kp-muted);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.06em;
}

.trust-strip__icon {
  color: var(--kp-gold);
  font-size: 1.1rem;
}

.trust-strip__item--crea {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.35rem;
  justify-content: center;
}

/* Selo CREA oficial inline (substitui o texto "CREA" onde aplicável) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-crea-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.35rem;
}

.crea-wordmark {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  line-height: 1;
  flex-shrink: 0;
}

.crea-wordmark img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.crea-wordmark--hero img {
  max-height: 22px;
}

.crea-wordmark--strip img {
  max-height: 18px;
}

.crea-wordmark--badge img {
  max-height: 20px;
}

.crea-sufixo {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: var(--kp-font-display);
  font-size: clamp(2.35rem, 3.4vw + 1.45rem, 4.1rem);
  font-weight: 800;
  margin: 1rem 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: min(44rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.subtitle {
  color: var(--kp-muted);
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  font-size: clamp(1.05rem, 1.1vw + 0.85rem, 1.2rem);
  line-height: 1.65;
}

/* BOTÕES */
.cta-group {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--kp-gold);
  color: var(--kp-bg);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.22);
}

.btn-secondary {
  border: 1px solid var(--kp-gold);
  color: var(--kp-gold);
  background: transparent;
}

/* SEÇÕES — ritmo editorial, sem “esticar” verticalmente */
section {
  padding-block: var(--kp-section-y);
  padding-inline: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.section-title {
  font-family: var(--kp-font-display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  color: var(--kp-gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.section-title + .section-desc {
  margin-top: 0.15rem;
}

.section-desc {
  color: var(--kp-muted);
  font-size: 0.95rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  margin-bottom: var(--kp-block-gap);
}

.section-desc--light {
  max-width: 800px;
  color: #e0e0e0;
  font-size: clamp(1.08rem, 2.4vw, 1.25rem);
  line-height: 1.68;
}

/* Revenda: destaque consultoria (antes da grade de soluções) */
#revenda .revenda-consultoria-highlight {
  max-width: min(960px, 100%);
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
  background: linear-gradient(145deg, #152a45 0%, #0f1f35 45%, #112240 100%);
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 14px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#revenda .revenda-consultoria-highlight__icon {
  display: block;
  margin: 0 auto 0.85rem;
  font-size: clamp(2rem, 4vw, 2.65rem);
  color: #d4af37;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

#revenda .revenda-consultoria-highlight__text {
  margin: 0;
  color: #f5f5f5;
  font-family: var(--kp-font-display);
  font-size: clamp(1.12rem, 2.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

#revenda .revenda-cta-footer {
  margin-top: clamp(3rem, 6vw, 4.75rem);
}

/* Banner parceria serralheiros — alinhado ao padrão visual (revenda highlight + section-title / section-desc) */
#parceiro-serralheiro-estrategico.kp-parceiro-banner {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

#parceiro-serralheiro-estrategico.kp-parceiro-banner .kp-parceiro-banner__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  max-width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.5rem, 4vw, 2.75rem);
  text-align: left;
  background: linear-gradient(145deg, #152a45 0%, #0f1f35 45%, #112240 100%);
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 14px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#parceiro-serralheiro-estrategico .kp-parceiro-banner__copy {
  min-width: 0;
}

#parceiro-serralheiro-estrategico .kp-parceiro-banner__copy .section-title {
  text-align: left;
  margin-bottom: 0.45rem;
}

#parceiro-serralheiro-estrategico .kp-parceiro-banner__desc.section-desc {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  text-align: left;
  max-width: 38rem;
  font-family: var(--kp-font-sans);
}

#parceiro-serralheiro-estrategico .kp-parceiro-banner__cta {
  justify-self: end;
  align-self: center;
}

#parceiro-serralheiro-estrategico .kp-parceiro-banner__cta .btn.btn-primary {
  white-space: nowrap;
}

@media (max-width: 768px) {
  #parceiro-serralheiro-estrategico .kp-parceiro-banner__panel {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: center;
    gap: clamp(1rem, 3vw, 1.5rem);
    padding: clamp(1.2rem, 4vw, 1.65rem);
  }

  #parceiro-serralheiro-estrategico .kp-parceiro-banner__copy .section-title {
    text-align: center;
  }

  #parceiro-serralheiro-estrategico .kp-parceiro-banner__desc.section-desc {
    text-align: center;
    margin-inline: auto;
  }

  #parceiro-serralheiro-estrategico .kp-parceiro-banner__cta {
    justify-self: stretch;
    width: 100%;
    max-width: min(22rem, 100%);
    margin-inline: auto;
  }

  #parceiro-serralheiro-estrategico .kp-parceiro-banner__cta .btn.btn-primary {
    width: 100%;
    white-space: normal;
  }
}

.section-desc--emphasis {
  max-width: 42rem;
  color: #f5f5f5;
  font-weight: 500;
}

.section-desc--portfolio {
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

/* Portfolio: linha discreta após galeria + bloco “Nosso Diferencial” */
#portfolio .portfolio-instagram-lite {
  margin: clamp(0.5rem, 1.5vw, 0.85rem) auto 0;
  max-width: 36rem;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
  font-size: clamp(0.86rem, 1.15vw, 0.95rem);
  line-height: 1.5;
  color: #9aa3ad;
  text-align: center;
}

#portfolio .portfolio-instagram-lite__icon {
  margin-right: 0.28rem;
  color: rgba(212, 175, 55, 0.62);
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  vertical-align: -0.05em;
}

#portfolio .portfolio-instagram-lite__link {
  color: rgba(212, 175, 55, 0.82);
  font-weight: 600;
  text-decoration: none;
}

#portfolio .portfolio-instagram-lite__link:hover {
  color: var(--kp-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

#portfolio .portfolio-after-grid {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid rgba(212, 175, 55, 0.5);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#portfolio .portfolio-after-grid__box {
  background-color: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: clamp(1.1rem, 2.5vw, 1.35rem) clamp(1.1rem, 2.5vw, 1.5rem);
  text-align: left;
}

.section-desc--ssma {
  max-width: 850px;
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Bloco título + texto: espaço antes de grids / listas */
.container > .section-title:first-child:not(:only-child) ~ .differentials-grid,
.container > .section-title:first-child:not(:only-child) ~ .products-grid,
.container > .section-title:first-child:not(:only-child) ~ .produtos-solucoes-layout,
.container > .section-title:first-child:not(:only-child) ~ .cities-list,
.container > .section-title:first-child:not(:only-child) ~ .faq-container {
  margin-top: 0;
}

.text-center > .section-title + .section-desc {
  margin-bottom: clamp(1.25rem, 3vw, 1.85rem);
}

/* Diferencial + Nossas Soluções (seção unificada: #diferencial + âncora #produtos) */
#diferencial.solucoes-diferencial-section {
  scroll-margin-top: 5.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-block: var(--kp-section-y);
}

#produtos.solucoes-diferencial__anchor-produtos {
  scroll-margin-top: 5.5rem;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.solucoes-diferencial-section__intro {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(1.15rem, 2.8vw, 1.75rem);
  max-width: min(48rem, 100%);
  padding: clamp(0.85rem, 2.2vw, 1.35rem) clamp(1rem, 3vw, 1.65rem);
  padding-left: clamp(1.15rem, 3.2vw, 1.85rem);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(
    145deg,
    rgba(17, 34, 64, 0.78) 0%,
    rgba(10, 25, 41, 0.92) 48%,
    rgba(6, 16, 32, 0.9) 100%
  );
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.solucoes-diferencial-section__intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--kp-gold), rgba(212, 175, 55, 0.32));
  border-radius: 4px 0 0 4px;
}

.solucoes-diferencial-section__intro .section-title {
  position: relative;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
  font-size: clamp(1.05rem, 2.05vw, 1.42rem);
  line-height: 1.18;
  margin-bottom: 0.35rem;
}

@media (min-width: 992px) {
  .solucoes-diferencial-section__intro .section-title {
    white-space: nowrap;
  }
}

.solucoes-diferencial-section__intro .section-desc {
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  color: #dce3eb;
  font-size: clamp(0.9rem, 1.75vw, 1.02rem);
  font-weight: 500;
  line-height: 1.45;
  max-width: 36rem;
}

.solucoes-diferencial-section__solucoes {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding-top: clamp(1.25rem, 3vw, 2rem);
  border-top: 1px dashed rgba(212, 175, 55, 0.18);
}

.produtos-engenharia-card__crea {
  margin: 0 0 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(4, 13, 26, 0.4);
  aspect-ratio: 16 / 5;
  max-height: 9.5rem;
}

.produtos-engenharia-card__crea-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0.5rem;
  box-sizing: border-box;
}

/* #produtos — setores atendidos + engenharia (mobile-first, dark/gold) */
.produtos-solucoes-section__lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--kp-muted);
}

.produtos-solucoes-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.25rem);
}

.produtos-solucoes-sectors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.produtos-setor-card {
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1rem, 2.5vw, 1.2rem);
  background: rgba(17, 34, 64, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.produtos-setor-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.produtos-setor-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.65rem;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.produtos-setor-card__icon {
  font-size: 1.45rem;
  color: var(--kp-gold);
  line-height: 1;
}

.produtos-setor-card__title {
  margin: 0 0 0.4rem;
  font-family: var(--kp-font-display);
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  font-weight: 700;
  color: var(--kp-text);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.produtos-setor-card__desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #b8c0ca;
}

.produtos-setor-card--wide-mobile {
  grid-column: 1 / -1;
  max-width: 18.5rem;
  justify-self: center;
  width: 100%;
}

.produtos-engenharia-card {
  position: relative;
  margin: 0;
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  background: linear-gradient(145deg, #152a45 0%, #0f1f35 48%, #112240 100%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 14px;
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.produtos-engenharia-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--kp-gold), rgba(212, 175, 55, 0.35));
  border-radius: 4px 0 0 4px;
}

.produtos-engenharia-card__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kp-gold);
  font-family: var(--kp-font-display);
}

.produtos-engenharia-card__kicker .fa-helmet-safety {
  margin-right: 0.35rem;
  opacity: 0.95;
}

.produtos-engenharia-card__title {
  margin: 0 0 1rem;
  font-family: var(--kp-font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--kp-text);
  letter-spacing: 0.015em;
}

.produtos-engenharia-card__body {
  margin: 0;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.68;
  color: #d2dae3;
}

@media (min-width: 901px) {
  .produtos-solucoes-layout {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .produtos-engenharia-card {
    grid-column: 1;
    grid-row: 1;
  }

  .produtos-solucoes-sectors {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-content: start;
  }

  .produtos-setor-card--wide-mobile {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
    width: auto;
  }
}

.bg-darker {
  background: linear-gradient(180deg, rgba(4, 13, 26, 0.35) 0%, transparent 100%);
}

/* GRIDS */
.differentials-grid,
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.35rem;
}

.card,
.product-card {
  background: var(--kp-card);
  padding: 1.35rem 1.25rem;
  border-radius: var(--kp-radius);
  border: 1px solid rgba(212, 175, 55, 0.12);
  height: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-info {
  padding-top: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card:hover,
.product-card:hover {
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.card-icon {
  font-size: 2.15rem;
  color: var(--kp-gold);
  margin-bottom: 0.85rem;
  display: block;
  opacity: 0.95;
}

.card-icon-image {
  display: block;
  width: min(100%, 220px);
  height: auto;
  margin: 0 auto 0.85rem;
  object-fit: contain;
}

.card-icon-image--warranty {
  max-height: 140px;
}

.card h3 {
  margin-bottom: 0.5rem;
  font-family: var(--kp-font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.card p,
.product-info p {
  font-size: 0.92rem;
  color: #c8cdd4;
  line-height: 1.55;
}

.product-img-placeholder {
  border-radius: 8px;
  min-height: 220px;
}

.product-img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.product-img--industrial {
  object-position: center 58%;
}

.product-img--shopping {
  object-position: center 42%;
}

.products-highlight-block {
  margin-top: clamp(2rem, 4vw, 2.75rem) !important;
}

.btn-manual-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
  line-height: 1.2;
  padding: 0.95rem 1.6rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.manual-model-label {
  white-space: nowrap;
}

.product-info h3,
.product-info h4.product-info__title {
  font-family: var(--kp-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--kp-text);
  letter-spacing: 0.01em;
}

/* Nossas Soluções: 3 pilares (Residencial / Comercial / Industrial) */
.section-solucoes-kp {
  background-color: var(--kp-bg);
}

.solutions-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: start;
}

.solutions-pillar {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
  overflow-wrap: break-word;
}

.solutions-pillar__title {
  font-family: var(--kp-font-display);
  color: #d4af37;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  margin: 0 0 0.25rem;
  letter-spacing: 0.03em;
  text-align: center;
}

@media (min-width: 992px) {
  .solutions-pillar__title {
    text-align: left;
  }
}

/* Imagens dos cards: aspect-ratio reserva espaço (CLS) */
.solutions-pillar .product-img-placeholder--ratio {
  position: relative;
  width: 100%;
  min-height: unset;
  padding: 0;
  background: transparent;
  border: none;
  overflow: hidden;
  border-radius: 8px;
}

.solutions-pillar .product-img-placeholder--ratio-industrial {
  aspect-ratio: 576 / 1024;
}

.solutions-pillar .product-img-placeholder--ratio-shop {
  aspect-ratio: 768 / 1024;
}

.solutions-pillar .product-img-placeholder--ratio-motor {
  aspect-ratio: 478 / 758;
  background: rgba(4, 13, 26, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.solutions-pillar .product-img-placeholder--ratio-smart {
  aspect-ratio: 681 / 1024;
}

.solutions-pillar .product-img--fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.solutions-pillar .product-img--motor-contain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  border: none;
}

/* K Portas Smart dentro do pilar */
.tech-showcase--pillar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5), 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-container--smart {
  flex: 1 1 260px;
  max-width: 100%;
  min-height: 280px;
  height: auto;
  aspect-ratio: 682 / 1024;
  max-height: min(460px, 70vh);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  background-color: #0a192f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-showcase__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.tech-showcase__copy {
  flex: 1 1 280px;
  min-width: 0;
  text-align: left;
}

.tech-showcase__kicker {
  display: block;
  color: #a0aab5;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.tech-showcase__kicker .fa-mobile-screen-button {
  margin-right: 5px;
  color: #d4af37;
}

.tech-showcase__headline {
  color: #f5f5f5;
  font-size: clamp(1.35rem, 3.5vw, 2.1rem);
  margin: 0.5rem 0 1rem;
  font-family: var(--kp-font-display);
  line-height: 1.2;
  font-weight: 700;
}

.tech-showcase__accent {
  color: #d4af37;
}

.tech-showcase__quote {
  color: #e0e0e0;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  border-left: 3px solid #d4af37;
  padding-left: 15px;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.tech-showcase__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.tech-showcase__feat {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.tech-showcase__feat > i {
  color: #d4af37;
  font-size: 1.2rem;
  margin-top: 4px;
  min-width: 28px;
  flex-shrink: 0;
}

.tech-showcase__feat strong {
  color: #f5f5f5;
  font-family: var(--kp-font-display);
  display: block;
  font-weight: 700;
}

.tech-showcase__feat span {
  color: #a0aab5;
  font-size: 0.95rem;
  display: block;
  line-height: 1.45;
}

.tech-showcase__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 35px;
  font-size: 1.05rem;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .solutions-pillars {
    grid-template-columns: 1fr;
  }

  .solutions-pillar__title {
    text-align: center;
  }

  .tech-showcase--pillar {
    flex-direction: column;
    align-items: center;
  }

  .video-container--smart {
    width: min(100%, 400px);
    margin-inline: auto;
  }

  .tech-showcase__copy {
    text-align: center;
  }

  .tech-showcase__quote {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }

  .tech-showcase__feat {
    text-align: left;
  }
}

/* Destaque porta manual no pilar comercial */
.products-highlight-block--pillar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background-color: #112240;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  margin-bottom: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.products-highlight-block__text {
  flex: 1 1 280px;
  min-width: 0;
  text-align: left;
}

.products-highlight-block__badges {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.products-highlight-block__badge {
  background-color: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.products-highlight-block__title {
  color: #f5f5f5;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 0 0 0.75rem;
  font-family: var(--kp-font-display);
  font-weight: 700;
}

.products-highlight-block__desc {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.products-highlight-block__tip {
  background-color: rgba(212, 175, 55, 0.08);
  border-left: 4px solid #d4af37;
  padding: 18px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.25rem;
}

.products-highlight-block__tip-label {
  color: #d4af37;
  font-family: var(--kp-font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.products-highlight-block__tip-text {
  color: #e0e0e0;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.products-highlight-block__media {
  flex: 1 1 260px;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.products-highlight-block__img-wrap {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1200 / 1039;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.products-highlight-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 991px) {
  .products-highlight-block--pillar {
    flex-direction: column;
    text-align: center;
  }

  .products-highlight-block__text {
    text-align: center;
  }

  .products-highlight-block__badges {
    justify-content: center;
  }
}

/* Personalização: fechamento mais leve abaixo dos pilares */
.personalizacao-closing {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  background: linear-gradient(180deg, transparent 0%, rgba(4, 13, 26, 0.25) 100%);
  border-radius: 0 0 12px 12px;
}

.personalizacao-closing__title {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem) !important;
  opacity: 0.98;
}

.personalizacao-closing__grid .card {
  border-color: rgba(212, 175, 55, 0.1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.tech-showcase {
  border-radius: var(--kp-radius) !important;
}

/* Manutenção: foto + cards */
.manutencao-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.manutencao-block__figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  aspect-ratio: 1200 / 697;
  background: #0a192f;
}

.manutencao-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.manutencao-block__main {
  min-width: 0;
}

.manutencao-block__grid.differentials-grid {
  margin-top: 0;
}

@media (max-width: 900px) {
  .manutencao-block {
    grid-template-columns: 1fr;
  }

  .manutencao-block__figure {
    max-width: min(100%, 540px);
    margin-inline: auto;
  }
}

/* Área de atendimento: título em duas linhas */
#area-de-atendimento .area-atendimento__heading {
  line-height: 1.14;
  max-width: min(36rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

#area-de-atendimento .area-atendimento__heading-line {
  display: block;
}

#area-de-atendimento .area-atendimento__heading-line + .area-atendimento__heading-line {
  margin-top: 0.22em;
}

/* Área de atendimento: foto à esquerda + texto e lista à direita (~20% mais compacto) */
#area-de-atendimento .area-atendimento__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(1.2rem, 3.2vw, 2.2rem);
  align-items: center;
  margin-top: clamp(0.92rem, 2vw, 1.4rem);
  padding: clamp(1.08rem, 2.8vw, 1.8rem);
  border-radius: 13px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(
    145deg,
    rgba(17, 34, 64, 0.58) 0%,
    rgba(10, 25, 41, 0.78) 48%,
    rgba(6, 16, 32, 0.72) 100%
  );
  box-shadow:
    0 19px 45px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

#area-de-atendimento .area-atendimento__copy {
  min-width: 0;
  text-align: left;
}

#area-de-atendimento .area-atendimento__intro {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-align: left;
  color: #e8ecf1;
  font-size: clamp(1.02rem, 0.9vw + 0.92rem, 1.14rem);
  line-height: 1.68;
}

#area-de-atendimento .area-atendimento__cities {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  width: 100%;
  gap: 0.65rem 1rem;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

#area-de-atendimento .area-atendimento__cities li {
  margin: 0;
  padding: 0.55rem 0.8rem 0.55rem 1.85rem;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.065);
  border: 1px solid rgba(212, 175, 55, 0.16);
  color: #dce1e8;
  font-size: 0.93rem;
  line-height: 1.45;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

#area-de-atendimento .area-atendimento__cities li:hover {
  border-color: rgba(212, 175, 55, 0.32);
  background: rgba(212, 175, 55, 0.1);
}

#area-de-atendimento .area-atendimento__cities li::before {
  left: 0.78rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  opacity: 0.88;
}

#area-de-atendimento .area-atendimento__footer {
  color: #d4af37;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: clamp(1.35rem, 3vw, 1.85rem);
  padding-top: clamp(1rem, 2.5vw, 1.35rem);
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  line-height: 1.6;
  text-align: left;
}

#area-de-atendimento .area-atendimento__media {
  margin: 0;
  width: 100%;
  max-width: min(380px, 100%);
  justify-self: start;
  aspect-ratio: 768 / 1024;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
  background: rgba(4, 13, 26, 0.5);
}

#area-de-atendimento .area-atendimento__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  #area-de-atendimento .area-atendimento__layout {
    grid-template-columns: 1fr;
    align-items: start;
    padding: clamp(1.15rem, 4vw, 1.65rem);
  }

  #area-de-atendimento .area-atendimento__media {
    max-width: min(360px, 88vw);
    margin-inline: auto;
    justify-self: center;
  }

  #area-de-atendimento .area-atendimento__copy {
    text-align: center;
  }

  #area-de-atendimento .area-atendimento__intro {
    text-align: center;
    max-width: 38rem;
    margin-inline: auto;
  }

  #area-de-atendimento .area-atendimento__cities {
    margin-inline: auto;
    max-width: 38rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  #area-de-atendimento .area-atendimento__footer {
    text-align: center;
  }
}

.cities-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem 1.25rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  color: #c8cdd4;
  font-size: 0.92rem;
}

.cities-list li {
  position: relative;
  padding-left: 1.1rem;
}

.cities-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--kp-gold);
  opacity: 0.75;
}

/* FAQ */
.faq-container {
  max-width: 40rem;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--kp-card);
  padding: 1rem 1.1rem;
  border-radius: 8px;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-left: 3px solid var(--kp-gold);
}

.faq-question h3,
.faq-question h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.faq-question:focus-visible {
  outline: 2px solid var(--kp-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 48rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: #c8cdd4;
  padding-top: 0.65rem;
}

.faq-icon {
  color: var(--kp-gold);
  font-size: 0.85rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* FOOTER E MAPA */
.footer .footer-contact__title {
  color: var(--kp-gold);
  margin: 0 0 5px;
  font-family: var(--kp-font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.footer {
  padding: clamp(1.65rem, 3vw, 2.35rem) 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.95) 0%, rgba(3, 5, 8, 1) 100%);
  border-top: 1px solid var(--kp-border-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.footer .contact-info {
  min-width: 0;
}

.contact-block {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
  text-align: left;
}

.footer .contact-link {
  line-height: 1.45;
}

.footer address.footer-contact__address {
  line-height: 1.45;
  font-size: 0.94rem;
}

.contact-icon {
  color: var(--kp-gold);
  font-size: 1.35rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.map-container {
  border-radius: var(--kp-radius);
  overflow: hidden;
  height: min(300px, 44vh);
  max-width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  align-self: stretch;
}

.map-container iframe {
  min-height: 280px;
}

.cta-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.85rem, 2.2vw, 1.35rem);
  margin-bottom: clamp(1.15rem, 3vw, 1.65rem);
}

.crea-seal {
  color: var(--kp-muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: clamp(1.25rem, 3vw, 1.85rem);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: clamp(1.25rem, 2.8vw, 1.85rem);
}

.footer .crea-seal > p:nth-of-type(2) {
  margin-top: 0.65rem !important;
}

.footer-brand-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.85rem);
  width: 100%;
  max-width: 52rem;
  margin: 0 auto 0.65rem;
}

.footer-brand-bar__link {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  justify-self: start;
}

.footer-logo-kportas {
  width: 165px;
  max-width: 165px;
  height: auto;
  aspect-ratio: 600 / 148;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.footer-brand-bar__middle {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
}

.footer-logo-middle {
  display: block;
  width: clamp(72px, 8vw, 96px);
  max-height: 86px;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.footer-brand-bar__crea {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  text-align: right;
  max-width: min(300px, 100%);
  justify-self: end;
}

.footer-logo-crea {
  max-height: 80px;
  max-width: min(250px, 52vw);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.crea-seal__tagline {
  margin: 0.35rem auto 0;
  padding: 0 clamp(0.75rem, 3vw, 1.25rem);
  max-width: 38rem;
  font-family: var(--kp-font-sans), var(--kp-font-display), system-ui, sans-serif;
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.55;
  color: #a0aab5;
  text-align: center;
}

@media (max-width: 600px) {
  .footer-brand-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.35rem;
  }

  .footer-brand-bar__link {
    justify-self: center;
  }

  .footer-brand-bar__middle {
    width: 100%;
  }

  .footer-brand-bar__crea {
    align-items: center;
    text-align: center;
    justify-self: center;
  }

  .footer-logo-kportas {
    margin: 0 auto;
  }

  .footer-logo-middle {
    max-height: 74px;
  }
}

.cta-footer h2 {
  font-family: var(--kp-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
}

.cta-footer .btn {
  margin-top: 0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--kp-gold);
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-icon:hover {
  background: var(--kp-gold-soft);
  border-color: rgba(212, 175, 55, 0.45);
  color: #fff;
}

/* Callback — imagem de orçamento rápido */
.callback-card {
  max-width: 980px;
  margin: 0 auto;
  background-color: #0a192f;
  padding: 34px 30px;
  border-radius: 12px;
  border: 1px solid #d4af37;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(320px, 1fr);
  gap: 1.75rem 2.25rem;
  align-items: center;
}

.callback-card__media {
  display: flex;
  justify-content: center;
  min-height: 280px;
}

.callback-card__content {
  text-align: left;
}

.callback-card__title {
  font-size: clamp(1.65rem, 2.4vw, 2.1rem);
  margin-bottom: 0.65rem;
}

.callback-card__subtitle {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  font-size: 1.03rem;
  line-height: 1.6;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  align-items: stretch;
}

.callback-form__input {
  width: 100%;
  max-width: 390px;
  padding: 15px 16px;
  font-size: 1.1rem;
  border-radius: 8px;
  border: 1px solid #d4af37;
  background-color: #061020;
  color: #f5f5f5;
  font-family: "Inter", system-ui, sans-serif;
  text-align: center;
  outline: none;
  transition: border-color 0.3s ease;
}

.callback-form__button {
  width: 100%;
  max-width: 390px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 15px 22px;
}

.callback-cta-img {
  display: block;
  width: min(100%, 320px);
  max-height: 380px;
  height: auto;
  aspect-ratio: 819 / 1024;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  margin: 0 auto;
}

/* Depoimentos — selo Google + estrelas */
section.section-reviews {
  padding-block: var(--kp-section-y);
}

.section-reviews__subtitle {
  margin: 0.1rem auto clamp(0.55rem, 1.5vw, 0.9rem);
  max-width: 36rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(160, 170, 181, 0.92);
  line-height: 1.35;
}

.reviews-google-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  padding: 0.85rem 1.25rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--kp-radius);
  background: rgba(17, 34, 64, 0.45);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.06);
}

.reviews-google-bar__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.reviews-google-bar__logo {
  height: 44px;
  width: auto;
  max-width: 172px;
  aspect-ratio: 172 / 58;
  object-fit: contain;
  object-position: center;
  display: block;
}

.reviews-google-bar__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0.5rem;
}

.reviews-google-bar__star {
  color: #f8d34a;
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-1px);
  text-shadow: 0 1px 0 #7e5a00, 0 2px 0 #5f4300, 0 4px 8px rgba(0, 0, 0, 0.45);
}

.reviews-google-bar__text {
  color: #e0e0e0;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--kp-font-display);
  margin-left: 0.25rem;
  letter-spacing: 0.01em;
}

@media (min-width: 560px) {
  .reviews-google-bar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: max(4rem, calc(env(safe-area-inset-bottom, 0px) + 2rem));
  right: max(2rem, calc(env(safe-area-inset-right, 0px) + 1rem));
  background: #25d366;
  color: white;
  text-decoration: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.125rem;
  z-index: 1000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.48);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: max(4.5rem, calc(env(safe-area-inset-bottom, 0px) + 2.5rem));
    right: max(2.5rem, calc(env(safe-area-inset-right, 0px) + 1.25rem));
    width: 80px;
    height: 80px;
    font-size: 2.35rem;
  }
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.52);
}

.whatsapp-balloon {
  position: absolute;
  right: calc(100% + 14px);
  bottom: 50%;
  transform: translateY(50%);
  background: #fff;
  color: #061020;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  max-width: 200px;
  line-height: 1.35;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  white-space: normal;
}

.whatsapp-float:hover .whatsapp-balloon {
  opacity: 1;
}

@media (max-width: 520px) {
  .whatsapp-balloon {
    display: none;
  }
}

/* UTILITÁRIOS */
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1.25rem;
}
.mt-5 {
  margin-top: 1.75rem;
}

/* MOBILE */
@media (max-width: 768px) {
  :root {
    --kp-header-sticky-offset: 72px;
  }

  .hero h1 {
    max-width: none;
  }

  .header-container {
    position: relative;
  }

  .header-logo {
    height: 46px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(6, 16, 32, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    z-index: 1100;
  }

  .main-nav.nav-open {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
  }

  .main-nav.nav-open .nav-links {
    display: flex;
  }

  .mobile-menu-icon {
    display: inline-flex;
  }

  .header-crea-wrap {
    height: 26px;
    padding-bottom: 0;
  }

  .header-crea-pill {
    font-size: clamp(0.72rem, 2.6vw, 0.8rem);
    text-align: right;
    justify-content: flex-end;
    white-space: normal;
  }

  .btn {
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .cta-group .btn {
    width: auto;
    min-width: min(100%, 320px);
  }

  .footer .btn.btn-primary {
    min-height: 44px;
  }

  .clients-marquee__lead {
    font-size: clamp(0.62rem, 2.1vw, 0.78rem);
    letter-spacing: 0.08em;
  }

  .btn-manual-quote {
    width: 100%;
    max-width: 350px;
    white-space: normal;
  }
}

@media (min-width: 1400px) {
  body {
    font-size: 1.02rem;
  }

  .container {
    max-width: min(var(--kp-max), 92vw);
  }
}

/* ===== Ajuste visual inspirado no layout de referência (somente design) ===== */
:root {
  --kp-bg-2: #07090d;
  --kp-bg-3: #0c1017;
  --kp-card-2: #111722;
  --kp-border-soft: rgba(255, 255, 255, 0.08);
}

body {
  background:
    radial-gradient(circle at 50% -12%, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 38%),
    linear-gradient(180deg, #05070b 0%, var(--kp-bg-2) 45%, #06080d 100%);
}

header {
  background-color: rgba(5, 7, 11, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  padding: clamp(3.25rem, 9vw, 5rem) 0 clamp(2.75rem, 6vw, 3.5rem);
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.42) 0%, rgba(6, 8, 12, 0.78) 65%, rgba(6, 8, 12, 0.95) 100%),
    radial-gradient(circle at 50% -20%, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0) 45%);
}

.hero h1 {
  max-width: 19ch;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.subtitle {
  max-width: 60ch;
}

.btn {
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.btn-primary {
  background: linear-gradient(90deg, #d4af37 0%, #c69a26 100%);
  box-shadow: 0 10px 24px rgba(198, 154, 38, 0.28);
}

.btn-secondary {
  border-color: rgba(212, 175, 55, 0.85);
  background: rgba(212, 175, 55, 0.08);
}

section {
  border-bottom: 1px solid var(--kp-border-soft);
}

section:nth-of-type(odd) {
  background-color: rgba(8, 10, 15, 0.58);
}

section:nth-of-type(even) {
  background-color: rgba(12, 16, 23, 0.46);
}

.card,
.product-card,
.faq-item {
  background: linear-gradient(180deg, rgba(17, 23, 34, 0.95) 0%, rgba(13, 18, 27, 0.98) 100%);
  border: 1px solid var(--kp-border-soft);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.card:hover,
.product-card:hover {
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.section-title {
  color: #f4f5f7;
  text-transform: none;
}

.section-desc,
.card p,
.product-info p {
  color: #c4cad3;
}

.trust-strip {
  background: linear-gradient(180deg, rgba(8, 10, 15, 0.88) 0%, rgba(8, 10, 15, 0.62) 100%);
  border-top: 1px solid var(--kp-border-soft);
  border-bottom: 1px solid var(--kp-border-soft);
}

.clients-marquee-section {
  border-bottom: 1px solid var(--kp-border-soft);
}

/* Faixa branca para a seção de autoridade */
section#autoridade.clients-marquee-section {
  background: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}

section#autoridade .clients-marquee__lead {
  color: #1f2937;
}

.reviews-google-bar,
.map-container,
.faq-item {
  border-color: var(--kp-border-soft);
}

@media (max-width: 768px) {
  .hero {
    padding-top: 2.8rem;
  }

  .callback-card {
    grid-template-columns: 1fr;
    padding: 26px 18px;
  }

  .callback-card__content {
    text-align: center;
  }

  .callback-form {
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 26rem;
  }
}

/* ===== DEPOIMENTOS — grade 3×2, altura uniforme, alinhamento consistente ===== */
#depoimentos .differentials-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1.25rem;
}

#depoimentos .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 28px !important;
  box-sizing: border-box;
}

#depoimentos .card > div:first-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#depoimentos .card > div:first-child p {
  flex: 1;
}

#depoimentos .review-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

@media (max-width: 768px) {
  #depoimentos .differentials-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 960px) {
  #depoimentos .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== DEPOIMENTOS — estrelas e rodapé Google ===== */
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars .fa-star {
  color: #f8d34a;
  font-size: 0.85rem;
  text-shadow: 0 1px 0 #7e5a00;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.review-name {
  color: #D4AF37;
  font-weight: 700;
  font-family: "Montserrat", system-ui, sans-serif;
  margin: 0;
  font-size: 0.92rem;
}

.review-source {
  font-size: 0.72rem;
  color: #6b7a8d;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.03em;
}

/* ===== SEÇÃO NÚMEROS DE AUTORIDADE ===== */
.stats-authority {
  background: linear-gradient(135deg, #061020 0%, #0a192f 100%);
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(0.75rem, 2.5vw, 1.25rem);
  gap: 0.4rem;
}

.stat-item--divider {
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item__icon {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-item__number {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-item__number--text {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0;
  color: #D4AF37;
}

.stat-item__label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.7rem, 1.3vw, 0.82rem);
  font-weight: 600;
  color: #a0aab5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.stat-item__sublabel {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.62rem, 1.1vw, 0.72rem);
  font-weight: 400;
  color: #6b7a8d;
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-style: italic;
}

@media (max-width: 680px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item--divider {
    border-right: none;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(212, 175, 55, 0.2);
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }
}

@media (max-width: 400px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item,
  .stat-item--divider {
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

/* Explorar Ecossistema — grid de autoridade (Home) */
.kp-ecossistema-section {
  padding: var(--kp-section-y) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.kp-ecossistema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: var(--kp-block-gap);
}

a.kp-ecossistema-card {
  display: block;
  padding: 1.25rem 1.35rem;
  background: var(--kp-card);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--kp-radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a.kp-ecossistema-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.kp-ecossistema-card__title {
  font-family: var(--kp-font-display);
  color: var(--kp-gold);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.kp-ecossistema-card__desc {
  margin: 0;
  color: var(--kp-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Rodapé — links institucionais */
.footer-aux-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer .social-links.mt-4 {
  margin-top: 0.65rem;
}

@media (max-width: 640px) {
  .footer .contact-grid {
    gap: 0.95rem;
  }

  .footer .contact-block {
    margin-bottom: 0.65rem;
    gap: 0.55rem;
  }

  .footer .map-container {
    height: min(240px, 38vh);
  }

  .footer .footer-contact__title {
    font-size: 0.94rem;
  }

  .footer address.footer-contact__address {
    font-size: 0.9rem;
  }
}

.footer-aux-nav a {
  color: var(--kp-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-aux-nav a:hover {
  text-decoration: underline;
}

.footer-aux-nav__sep {
  color: rgba(160, 170, 181, 0.45);
  user-select: none;
}

/* Páginas internas — bloco editorial */
.kp-page-block {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}

.kp-page-block--bordered {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.kp-blog-feed {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 48rem;
  margin: var(--kp-block-gap) auto 0;
}

a.kp-blog-feed__item,
article.kp-blog-feed__item {
  display: block;
  padding: 1.15rem 1.25rem;
  background: var(--kp-card);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--kp-radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

a.kp-blog-feed__item:hover,
article.kp-blog-feed__item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.kp-blog-feed__item-title {
  font-family: var(--kp-font-display);
  color: var(--kp-gold);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.kp-blog-feed__item-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--kp-muted);
}

.kp-blog-news-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  height: 100%;
}
