/* Atelier acústico — canvas off-white, tipografia editorial, traços discretos */

/* Evita rolagem horizontal por transforms/gradientes que ultrapassam 100% da viewport */
html {
  overflow-x: clip;
}

:root {
  --ac-ink: #1a1714;
  --ac-ink-soft: #3d3834;
  --ac-slate: #575049;
  --ac-muted: #6f665e;
  --ac-bg: #f4f1eb;
  --ac-panel: #faf8f4;
  --ac-line: rgba(26, 23, 20, 0.09);
  --ac-accent: #7a7268;
  --ac-accent-bright: #e8e4dc;
  --ac-accent-dim: rgba(122, 114, 104, 0.18);
  --ac-shadow-lg: 0 24px 48px -24px rgba(26, 22, 18, 0.12);
  --ac-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --site-max: 1240px;
  --site-gutter: clamp(1.25rem, 4.5vw, 2.75rem);
  --section-y: clamp(3.5rem, 9vw, 6.5rem);
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
}

.site-body {
  font-family: "DM Sans", system-ui, sans-serif;
  background-color: var(--ac-bg);
  background-image:
    radial-gradient(ellipse 85% 50% at 0% 0%, rgba(200, 192, 178, 0.14), transparent 50%),
    radial-gradient(ellipse 65% 45% at 100% 5%, rgba(220, 214, 204, 0.2), transparent 48%),
    linear-gradient(180deg, #f7f4ee 0%, #f0ebe3 42%, #e8e3da 100%);
  color: var(--ac-ink-soft);
}

.site-body h1,
.site-body h2,
.site-body h3,
.site-body .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Cor padrão dos títulos com especificidade 0 (:where) para não sobrepor classes Tailwind (ex.: text-white na CTA). */
:where(.site-body h1, .site-body h2, .site-body h3, .site-body .font-display) {
  color: var(--ac-ink);
}

/* Largura e margens consistentes em todo o site */
.site-container {
  width: 100%;
  max-width: var(--site-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

.site-section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.site-header {
  background: rgba(250, 248, 244, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--ac-line);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 10px 36px -22px rgba(42, 36, 30, 0.08);
  transition: box-shadow 0.35s var(--ac-ease-out), background 0.35s ease;
}

.site-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--ac-accent-dim) 12%,
    rgba(180, 190, 206, 0.65) 50%,
    var(--ac-accent-dim) 88%,
    transparent
  );
  opacity: 1;
}

/* Fundo “onda sonora” muito subtil em secções */
.acoustic-bg {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
}

.acoustic-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 13px,
      rgba(140, 150, 168, 0.06) 13px,
      rgba(140, 150, 168, 0.06) 14px
    ),
    repeating-linear-gradient(
      -8deg,
      transparent 0,
      transparent 48px,
      rgba(90, 74, 58, 0.025) 48px,
      rgba(90, 74, 58, 0.025) 49px
    );
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .acoustic-bg::before {
    animation: acoustic-bg-drift 24s ease-in-out infinite alternate;
  }
}

@keyframes acoustic-bg-drift {
  from {
    transform: translateY(0);
    opacity: 0.42;
  }
  to {
    transform: translateY(10px);
    opacity: 0.58;
  }
}

/* Hero */
.hero-acoustic {
  position: relative;
  overflow: hidden;
}

.hero-acoustic::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  background: radial-gradient(circle, rgba(200, 208, 220, 0.16) 0%, rgba(120, 132, 150, 0.06) 38%, transparent 68%);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-acoustic::before {
    animation: hero-glow-pulse 14s ease-in-out infinite alternate;
  }
}

@keyframes hero-glow-pulse {
  from {
    transform: scale(1);
    opacity: 0.85;
  }
  to {
    transform: scale(1.06);
    opacity: 1;
  }
}

.hero-acoustic::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(circle at 20% 80%, rgba(190, 198, 212, 0.1), transparent 35%);
}

.hero-acoustic .site-container {
  position: relative;
  z-index: 1;
}

/* Hero escuro — impacto visual alinhado à marca premium (Brasília, ticket alto) */
.hero-acoustic--lux {
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  padding-top: clamp(3.25rem, 9vw, 5.5rem);
  padding-bottom: clamp(3.25rem, 9vw, 5.5rem);
  background:
    radial-gradient(ellipse 88% 72% at 90% 12%, rgba(210, 216, 228, 0.18), transparent 54%),
    radial-gradient(ellipse 48% 42% at 6% 88%, rgba(160, 170, 188, 0.1), transparent 50%),
    linear-gradient(168deg, #16110e 0%, #0a0807 50%, #12100e 100%);
  color: rgba(250, 247, 241, 0.92);
}

.hero-acoustic--lux::before {
  background: radial-gradient(circle, rgba(220, 226, 236, 0.22) 0%, rgba(70, 78, 92, 0.06) 42%, transparent 72%);
}

.hero-acoustic--lux::after {
  opacity: 0.45;
  background-image:
    linear-gradient(32deg, transparent 46%, rgba(190, 198, 212, 0.06) 46%, rgba(190, 198, 212, 0.06) 54%, transparent 54%),
    linear-gradient(-32deg, transparent 46%, rgba(160, 170, 188, 0.05) 46%, rgba(160, 170, 188, 0.05) 54%, transparent 54%);
}

.hero-acoustic--lux h1,
.hero-acoustic--lux h2,
.hero-acoustic--lux h3,
.hero-acoustic--lux .font-display {
  color: #fffdf9;
}

.hero-acoustic--lux.acoustic-bg::before {
  opacity: 0.42;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(175, 184, 200, 0.05) 20px,
    rgba(175, 184, 200, 0.05) 21px
  );
}

/* Hero claro — off-white como protagonista (home) */
.hero-acoustic--atelier {
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  background:
    radial-gradient(ellipse 70% 55% at 92% 18%, rgba(232, 226, 216, 0.65), transparent 52%),
    radial-gradient(ellipse 45% 40% at 8% 85%, rgba(220, 212, 200, 0.35), transparent 50%),
    linear-gradient(165deg, #faf8f4 0%, #f3efe8 48%, #ebe6de 100%);
  color: var(--ac-ink-soft);
}

.hero-acoustic--atelier::before {
  background: radial-gradient(circle, rgba(200, 190, 176, 0.12) 0%, transparent 65%);
}

.hero-acoustic--atelier::after {
  opacity: 0.55;
  background-image:
    linear-gradient(105deg, transparent 48%, rgba(180, 170, 156, 0.04) 48%, rgba(180, 170, 156, 0.04) 52%, transparent 52%);
}

.hero-acoustic--atelier h1,
.hero-acoustic--atelier h2,
.hero-acoustic--atelier h3,
.hero-acoustic--atelier .font-display {
  color: var(--ac-ink);
}

.hero-acoustic--atelier .hero-photo-card {
  border-radius: 0.2rem;
  border-color: rgba(42, 36, 30, 0.1);
  box-shadow:
    0 24px 56px -28px rgba(42, 36, 30, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

.hero-acoustic--atelier.acoustic-bg::before {
  opacity: 0.35;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 22px,
    rgba(120, 110, 98, 0.035) 22px,
    rgba(120, 110, 98, 0.035) 23px
  );
}

.atelier-kicker-line {
  display: inline-block;
  width: 2.75rem;
  height: 1px;
  background: linear-gradient(90deg, var(--ac-accent), transparent);
  vertical-align: middle;
  margin-right: 0.65rem;
  opacity: 0.85;
}

.hero-acoustic--atelier .door-croquis {
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--ac-line);
  border-radius: 0.35rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.hero-acoustic--lux .hero-photo-card {
  border-radius: 0.125rem;
  border-color: rgba(190, 198, 212, 0.45);
  box-shadow:
    0 28px 70px -20px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(200, 208, 220, 0.28) inset;
}

.lux-gradient-text {
  background: linear-gradient(118deg, #f8fafc 0%, #c5ccd8 38%, #5c6575 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.badge-acoustic--on-dark {
  color: rgba(244, 246, 250, 0.96);
  background: linear-gradient(135deg, rgba(190, 198, 212, 0.2), rgba(20, 16, 14, 0.55));
  border: 1px solid rgba(200, 208, 220, 0.4);
  box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.45);
}

.badge-acoustic--on-dark::before {
  background: linear-gradient(145deg, #eef1f6, var(--ac-accent));
  box-shadow: 0 0 0 3px rgba(190, 198, 212, 0.35);
}

.hero-visual-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.hero-photo-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--ac-line);
  box-shadow:
    0 20px 50px -20px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  background: var(--ac-panel);
}

.hero-photo-card__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ——— Croqui porta acústica: ondas + camadas alinhadas e legíveis ——— */
.door-croquis {
  margin: 0;
  padding: clamp(1.1rem, 2.8vw, 1.65rem);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.door-croquis__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ac-accent);
  margin: 0 0 0.45rem;
  opacity: 0.92;
}

.door-croquis__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.22rem);
  font-weight: 700;
  color: var(--ac-ink);
  margin: 0 0 1.1rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.door-croquis.door-croquis--spec-section {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.15rem;
  width: 100%;
  max-width: 52rem;
}

.door-croquis.door-croquis--spec-section .door-croquis__kicker,
.door-croquis.door-croquis--spec-section .door-croquis__title {
  text-align: center;
}

.door-croquis.door-croquis--spec-section .door-croquis__legend {
  text-align: center;
}

.door-croquis__sides-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  width: 100%;
  padding-bottom: 0.15rem;
}

.door-croquis__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  text-align: center;
  min-height: 0;
}

.door-croquis__side-title {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ac-slate);
  line-height: 1.2;
}

.door-croquis__waves {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  width: 100%;
  height: 92px;
  padding: 0.55rem 0.65rem 0.35rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(26, 23, 20, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(240, 235, 228, 0.35) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.door-croquis__bar {
  width: 7px;
  border-radius: 5px 5px 3px 3px;
  background: linear-gradient(
    180deg,
    #faf8f4 0%,
    var(--ac-accent-bright) 22%,
    rgba(122, 114, 104, 0.55) 72%,
    rgba(90, 84, 76, 0.5) 100%
  );
  box-shadow: 0 1px 2px rgba(42, 36, 30, 0.08);
  transform-origin: bottom center;
  animation: croqui-wave 1.35s ease-in-out infinite;
}

.door-croquis__bar:nth-child(1) { height: 32%; animation-delay: 0s; }
.door-croquis__bar:nth-child(2) { height: 58%; animation-delay: 0.1s; }
.door-croquis__bar:nth-child(3) { height: 82%; animation-delay: 0.2s; }
.door-croquis__bar:nth-child(4) { height: 52%; animation-delay: 0.3s; }
.door-croquis__bar:nth-child(5) { height: 38%; animation-delay: 0.4s; }

@keyframes croqui-wave {
  0%, 100% { transform: scaleY(0.88); opacity: 0.72; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .door-croquis__bar {
    animation: none;
    opacity: 0.88;
  }

  .acoustic-bg::before,
  .hero-acoustic::before {
    animation: none;
  }
}

.door-croquis__main {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  min-width: 0;
}

.door-croquis__badge {
  margin: 0;
  text-align: center;
}

.door-croquis__badge span {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ac-ink-soft);
  border: 1px solid rgba(26, 23, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.door-croquis__layers {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 1.35vw, 14px);
  width: 100%;
  padding: 0.75rem 0.55rem 0.85rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(26, 23, 20, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.door-croquis__layer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.4rem;
  min-width: 0;
}

.door-croquis__layer-name {
  display: block;
  margin: 0;
  padding: 0 2px;
  min-height: 2.35em;
  font-size: clamp(0.52rem, 0.95vw + 0.2rem, 0.72rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ac-slate);
  text-shadow: none;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

.door-croquis__swatch {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  border-radius: 6px;
  border: 1px solid rgba(26, 23, 20, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 2px 6px rgba(42, 36, 30, 0.06);
}

.door-croquis__layer--mdf .door-croquis__swatch {
  background: repeating-linear-gradient(
    -14deg,
    #ebe4da,
    #ebe4da 3px,
    #ddd4c8 3px,
    #ddd4c8 6px
  );
}

.door-croquis__layer--damp .door-croquis__swatch {
  background: linear-gradient(180deg, #c9c2b8 0%, #948c84 48%, #6f6962 100%);
}

.door-croquis__layer--core .door-croquis__swatch {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.1), transparent),
    repeating-linear-gradient(
      0deg,
      #4a4540,
      #4a4540 4px,
      #353230 4px,
      #353230 8px
    );
}

.door-croquis__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  width: 100%;
  min-height: 92px;
  padding: 0.55rem 0.65rem 0.4rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(26, 23, 20, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(236, 230, 222, 0.4) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.door-croquis__result-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(122, 114, 104, 0.35);
  position: relative;
  opacity: 0.95;
  flex-shrink: 0;
  background: radial-gradient(circle at 32% 28%, rgba(255, 253, 249, 0.9), rgba(232, 228, 220, 0.5) 65%);
  box-shadow: 0 1px 2px rgba(42, 36, 30, 0.06);
}

.door-croquis__result-icon::before,
.door-croquis__result-icon::after {
  content: "";
  position: absolute;
  background: rgba(90, 84, 76, 0.75);
  border-radius: 1px;
}

.door-croquis__result-icon::before {
  width: 13px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.door-croquis__result-icon::after {
  width: 2px;
  height: 13px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.door-croquis__result-text {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ac-slate);
  line-height: 1.38;
  text-align: center;
}

.door-croquis__legend {
  margin-top: 1rem;
  padding: 0.85rem 0.5rem 0;
  border-top: 1px solid var(--ac-line);
  display: grid;
  gap: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ac-muted);
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.door-croquis__legend strong {
  color: var(--ac-ink);
  font-weight: 600;
}

.door-croquis.door-croquis--spec-section .door-croquis__legend {
  padding-left: clamp(0.25rem, 2vw, 0.75rem);
  padding-right: clamp(0.25rem, 2vw, 0.75rem);
}

/* Gráfico ilustrativo Rw (página portas — especificações) */
.door-rw-chart {
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: linear-gradient(165deg, #faf8f4 0%, #f0ebe3 55%, #e5dfd6 100%);
  border: 1px solid var(--ac-line);
  border-radius: 0.4rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 18px 44px -28px rgba(42, 36, 30, 0.1);
}

.door-rw-chart__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ac-accent);
  margin: 0 0 0.35rem;
}

.door-rw-chart__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--ac-ink);
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.door-rw-chart__lead {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ac-muted);
  max-width: 42rem;
}

.door-rw-chart__lead strong {
  color: var(--ac-ink-soft);
  font-weight: 600;
}

.door-rw-chart__frame {
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
  border: 1px solid rgba(20, 16, 14, 0.08);
  padding: 0.5rem 0.35rem 0.15rem;
  overflow: hidden;
}

.door-rw-chart__svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(340px, 52vw);
}

.door-rw-chart__caption {
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(20, 16, 14, 0.08);
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ac-muted);
}

.door-rw-chart__caption strong {
  color: var(--ac-ink-soft);
  font-weight: 600;
}

.door-rw-chart__sources {
  margin-top: 0.85rem;
  padding: 0.9rem 1rem 1rem;
  border-radius: 0.7rem;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(248, 245, 240, 0.96) 100%);
  border: 1px solid rgba(20, 16, 14, 0.07);
}

.door-rw-chart__sources-title {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ac-accent);
}

.door-rw-chart__sources-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr));
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ac-muted);
}

.door-rw-chart__sources-grid strong {
  color: var(--ac-ink-soft);
  font-weight: 600;
}

@media (max-width: 768px) {
  .door-rw-chart__svg {
    max-height: none;
  }

  .door-croquis.door-croquis--spec-section {
    gap: 1rem;
  }

  .door-croquis__sides-row {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
  }

  .door-croquis__side {
    max-width: 18rem;
    margin-inline: auto;
  }

  .door-croquis__main {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  .door-croquis__layers:not(.door-croquis__layers--slice) {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.55rem 0.45rem 0.65rem;
  }

  .door-croquis__layers:not(.door-croquis__layers--slice) .door-croquis__layer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
  }

  .door-croquis__layers:not(.door-croquis__layers--slice) .door-croquis__layer-name {
    min-height: 0;
    flex: 0 1 auto;
    min-width: 0;
    width: min(11.5rem, 50%);
    font-size: 0.72rem;
    line-height: 1.3;
    text-align: left;
    overflow-wrap: break-word;
  }

  .door-croquis__layers:not(.door-croquis__layers--slice) .door-croquis__swatch {
    flex: 1 1 auto;
    min-height: 48px;
  }
}

/* ——— Diagrama parede acústica (corte horizontal esquemático) ——— */
.wall-diagram {
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 1.2rem;
  box-shadow: 0 14px 36px -24px rgba(15, 23, 42, 0.18);
}

.wall-diagram__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac-accent);
}

.wall-diagram__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  color: var(--ac-ink);
  letter-spacing: -0.02em;
}

.wall-diagram__board {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.wall-diagram__zone {
  flex: 1 1 9rem;
  max-width: 14rem;
  min-height: 11rem;
  padding: 1rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}

.wall-diagram__zone--source {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

.wall-diagram__zone--quiet {
  background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: rgba(16, 185, 129, 0.2);
}

.wall-diagram__zone-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ac-muted);
}

.wall-diagram__waves {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 4.5rem;
  width: 100%;
}

.wall-diagram__bar {
  width: 7px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--ac-accent-bright), var(--ac-accent));
  opacity: 0.85;
}

.wall-diagram__bar:nth-child(1) {
  height: 38%;
}
.wall-diagram__bar:nth-child(2) {
  height: 72%;
}
.wall-diagram__bar:nth-child(3) {
  height: 55%;
}
.wall-diagram__bar:nth-child(4) {
  height: 88%;
}
.wall-diagram__bar:nth-child(5) {
  height: 48%;
}

.wall-diagram__calm {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 4rem;
  width: 100%;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px dashed rgba(16, 185, 129, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  color: #047857;
}

.wall-diagram__assembly {
  flex: 0 1 7.5rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-height: 11rem;
  padding: 0.35rem;
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.wall-diagram__layer {
  flex: 1 1 0;
  min-height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.35rem;
  border-radius: 3px;
  font-size: 0.58rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: rgba(15, 23, 42, 0.88);
}

.wall-diagram__layer--board {
  background: linear-gradient(90deg, #e7e5e4, #d6d3d1);
}

.wall-diagram__layer--wool {
  background: linear-gradient(90deg, #cbd5e1, #94a3b8);
  color: #0f172a;
}

.wall-diagram__layer--stud {
  background: linear-gradient(90deg, #78716c, #57534e);
  color: #fff;
  font-size: 0.52rem;
}

.wall-diagram__layer--gap {
  background: repeating-linear-gradient(
    -45deg,
    rgba(150, 160, 178, 0.16),
    rgba(150, 160, 178, 0.16) 4px,
    rgba(255, 255, 255, 0.5) 4px,
    rgba(255, 255, 255, 0.5) 8px
  );
  color: #4a5568;
  font-weight: 600;
}

.wall-diagram__legend {
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ac-muted);
}

.wall-diagram__legend strong {
  color: var(--ac-ink-soft);
  font-weight: 600;
}

@media (max-width: 640px) {
  .wall-diagram__board {
    flex-direction: column;
    align-items: center;
  }

  .wall-diagram__zone,
  .wall-diagram__assembly {
    max-width: 20rem;
    width: 100%;
  }

  .wall-diagram__assembly {
    flex: 1 1 auto;
    min-height: 10rem;
  }
}

/* Cartões / superfícies mais “premium” */
.surface-card {
  border-radius: 1.35rem;
  border: 1px solid var(--ac-line);
  background: linear-gradient(165deg, #ffffff 0%, #fafbfc 100%);
  box-shadow: var(--ac-shadow-lg);
  transition:
    box-shadow 0.4s var(--ac-ease-out),
    border-color 0.35s ease,
    transform 0.45s var(--ac-ease-out);
}

.surface-card:hover {
  border-color: rgba(150, 160, 178, 0.4);
  box-shadow:
    0 28px 56px -26px rgba(20, 14, 10, 0.22),
    0 0 0 1px rgba(200, 208, 220, 0.18) inset;
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .surface-card {
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .surface-card:hover {
    transform: none;
  }
}

.badge-acoustic {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3d4555;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 239, 245, 0.92));
  border: 1px solid rgba(150, 160, 178, 0.4);
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 2px 16px -4px rgba(60, 70, 88, 0.14);
}

.badge-acoustic::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ac-accent-bright), var(--ac-accent));
  box-shadow: 0 0 0 3px rgba(180, 190, 206, 0.35);
}

@media (prefers-reduced-motion: no-preference) {
  .badge-acoustic::before {
    animation: badge-pulse 2.4s ease-in-out infinite;
  }
}

@keyframes badge-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(180, 190, 206, 0.28);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 5px rgba(180, 190, 206, 0.12);
  }
}

.site-body a:focus-visible {
  outline: 2px solid var(--ac-accent);
  outline-offset: 3px;
}

/* Fichas técnicas — cards */
.spec-card-pro {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  padding: clamp(1.25rem, 2.8vw, 1.65rem);
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 1.2rem;
  box-shadow: 0 14px 36px -24px rgba(15, 23, 42, 0.18);
  transition:
    box-shadow 0.35s var(--ac-ease-out),
    border-color 0.3s ease,
    transform 0.35s var(--ac-ease-out);
}

.spec-card-pro:hover {
  border-color: rgba(150, 160, 178, 0.4);
  box-shadow: 0 22px 48px -22px rgba(15, 23, 42, 0.24);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .spec-card-pro {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .spec-card-pro:hover {
    transform: none;
  }
}

.spec-card-pro__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.spec-card-pro__index {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(120, 132, 150, 0.5);
  letter-spacing: -0.04em;
}

.spec-card-pro__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: var(--ac-ink);
  letter-spacing: -0.02em;
}

.spec-card-pro__subtitle {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  color: var(--ac-muted);
  line-height: 1.35;
}

.spec-card-pro__head {
  flex: 1;
  min-width: 0;
}

.spec-card-pro__dl {
  margin: 0;
  flex: 1;
}

.spec-card-pro__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0.5rem 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.88rem;
  align-items: start;
}

.spec-card-pro__row:last-of-type {
  border-bottom: none;
}

.spec-card-pro__row dt {
  margin: 0;
  font-weight: 600;
  color: var(--ac-muted);
}

.spec-card-pro__row dd {
  margin: 0;
  font-weight: 600;
  color: var(--ac-ink-soft);
  text-align: right;
  line-height: 1.45;
}

.spec-card-pro__hint {
  font-weight: 500;
  color: var(--ac-muted);
  font-size: 0.82em;
}

.spec-card-pro__foot {
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.72rem;
  line-height: 1.5;
  color: #3f4d5f;
}

@media (max-width: 380px) {
  .spec-card-pro__row {
    grid-template-columns: 1fr;
  }

  .spec-card-pro__row dd {
    text-align: left;
  }
}

/* Portfólio — página portas (grelha + destaque, overlay sempre legível) */
.door-portfolio {
  position: relative;
  background: linear-gradient(178deg, #f7f4ee 0%, #efeae2 40%, #e6e0d6 100%);
  border-block: 1px solid var(--ac-line);
}

.door-portfolio::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 255, 255, 0.5), transparent 55%);
}

.door-portfolio .site-container {
  position: relative;
  z-index: 1;
}

.door-portfolio__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}

@media (min-width: 768px) {
  .door-portfolio__intro {
    margin-bottom: 2.75rem;
  }
}

.door-portfolio__eyebrow {
  display: inline-block;
  margin: 0 0 0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ac-accent);
}

.door-portfolio__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ac-ink);
}

.door-portfolio__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ac-muted);
}

.door-portfolio__grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .door-portfolio__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

@media (min-width: 900px) {
  .door-portfolio__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    grid-auto-flow: dense;
  }

  .door-portfolio__cell--spotlight {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.door-portfolio__cell {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0.3rem;
  background: #14100e;
  cursor: pointer;
  text-align: left;
  color: inherit;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 42px -26px rgba(10, 8, 6, 0.55);
  outline: none;
  transition:
    transform 0.4s var(--ac-ease-out),
    box-shadow 0.4s ease;
}

.door-portfolio__cell:focus-visible {
  box-shadow:
    0 0 0 2px #faf8f5,
    0 0 0 5px rgba(95, 106, 120, 0.55),
    0 22px 50px -22px rgba(10, 8, 6, 0.6);
}

.door-portfolio__cell:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 28px 56px -24px rgba(10, 8, 6, 0.65);
}

.door-portfolio__frame {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1a1816;
}

.door-portfolio__cell--spotlight .door-portfolio__frame {
  aspect-ratio: auto;
  min-height: 240px;
}

@media (min-width: 900px) {
  .door-portfolio__cell--spotlight .door-portfolio__frame {
    min-height: 360px;
  }
}

.door-portfolio__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ac-ease-out);
}

.door-portfolio__cell:hover .door-portfolio__img {
  transform: scale(1.045);
}

.door-portfolio__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.55rem 0.8rem 0.65rem;
  background: linear-gradient(0deg, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.5) 52%, transparent 100%);
}

.door-portfolio__kicker {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(216, 221, 229, 0.72);
  margin-bottom: 0.12rem;
}

.door-portfolio__cell-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #faf9f7;
  line-height: 1.2;
}

.door-portfolio__cell-desc {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  color: rgba(245, 242, 237, 0.78);
  line-height: 1.35;
}

.door-portfolio__open {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #f4f2ee;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.door-portfolio__open svg {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .door-portfolio__cell,
  .door-portfolio__img {
    transition: none;
  }

  .door-portfolio__cell:hover {
    transform: none;
  }

  .door-portfolio__cell:hover .door-portfolio__img {
    transform: none;
  }
}

/* Ferragens — módulo «door-hw» (coluna escura + lista numerada) */
.door-hw {
  --dh-accent-portal: #c45c32;
  --dh-accent-hinge: #2f6f6b;
  --dh-accent-rubber: #5c4d8a;
  --dh-accent-drop: #b4532a;
  --dh-accent-lock: #3d4a5c;
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
}

.door-hw__shell {
  display: grid;
  gap: 0;
  max-width: 72rem;
  margin-inline: auto;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(26, 22, 18, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 26px 60px -34px rgba(12, 10, 8, 0.45);
}

@media (min-width: 900px) {
  .door-hw__shell {
    grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
    align-items: stretch;
  }
}

.door-hw__hero {
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.2rem, 2.8vw, 1.75rem);
  background: linear-gradient(168deg, #1a1614 0%, #2c2622 42%, #3a332e 100%);
  color: #f7f2eb;
}

.door-hw__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e0b078;
}

.door-hw__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
}

.door-hw__lede {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.58;
  color: rgba(247, 242, 235, 0.78);
}

.door-hw__lede strong {
  font-weight: 700;
  color: #fff;
}

.door-hw__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 22, 18, 0.92);
  background: linear-gradient(135deg, #f0d4a8 0%, #e8b078 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.door-hw__list {
  list-style: none;
  margin: 0;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: linear-gradient(180deg, #faf6f1 0%, #f0e9e0 100%);
}

.door-hw__row {
  --dh-row-accent: var(--ac-slate);
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.65rem 0.85rem;
  padding: 0.85rem 0.95rem 0.9rem 0.85rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(42, 36, 30, 0.08);
  border-left: 4px solid var(--dh-row-accent);
  box-shadow: 0 8px 22px -16px rgba(20, 16, 14, 0.2);
  transition:
    border-color 0.25s ease,
    box-shadow 0.3s var(--ac-ease-out),
    transform 0.3s var(--ac-ease-out);
}

.door-hw__row--portal {
  --dh-row-accent: var(--dh-accent-portal);
}

.door-hw__row--hinge {
  --dh-row-accent: var(--dh-accent-hinge);
}

.door-hw__row--rubber {
  --dh-row-accent: var(--dh-accent-rubber);
}

.door-hw__row--drop {
  --dh-row-accent: var(--dh-accent-drop);
}

.door-hw__row--lock {
  --dh-row-accent: var(--dh-accent-lock);
}

.door-hw__row:hover {
  border-color: rgba(42, 36, 30, 0.14);
  box-shadow: 0 14px 32px -18px rgba(20, 16, 14, 0.28);
  transform: translateY(-1px);
}

.door-hw__index {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(42, 36, 30, 0.28);
  line-height: 1;
  min-width: 1.65rem;
}

.door-hw__glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--dh-row-accent);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(42, 36, 30, 0.1);
}

.door-hw__row--portal .door-hw__glyph {
  background: rgba(196, 92, 50, 0.12);
  border-color: rgba(196, 92, 50, 0.28);
}

.door-hw__row--hinge .door-hw__glyph {
  background: rgba(47, 111, 107, 0.12);
  border-color: rgba(47, 111, 107, 0.28);
}

.door-hw__row--rubber .door-hw__glyph {
  background: rgba(92, 77, 138, 0.12);
  border-color: rgba(92, 77, 138, 0.28);
}

.door-hw__row--drop .door-hw__glyph {
  background: rgba(180, 83, 42, 0.12);
  border-color: rgba(180, 83, 42, 0.28);
}

.door-hw__row--lock .door-hw__glyph {
  background: rgba(61, 74, 92, 0.12);
  border-color: rgba(61, 74, 92, 0.28);
}

.door-hw__glyph svg {
  display: block;
}

.door-hw__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.door-hw__name {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ac-ink);
  line-height: 1.2;
}

.door-hw__detail {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ac-muted);
}

@media (max-width: 520px) {
  .door-hw__row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .door-hw__glyph {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .door-hw__index {
    grid-column: 2;
    grid-row: 1;
  }

  .door-hw__body {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .door-hw__row {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .door-hw__row:hover {
    transform: none;
  }
}

/* Processo de instalação — página portas */
.door-install {
  position: relative;
  background: linear-gradient(172deg, #f5f2ec 0%, #ebe6de 42%, #e2dcd3 100%);
  border-block: 1px solid var(--ac-line);
}

.door-install::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 45% at 20% 0%, rgba(255, 255, 255, 0.45), transparent 55%);
}

.door-install .site-container {
  position: relative;
  z-index: 1;
}

.door-install__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}

@media (min-width: 768px) {
  .door-install__intro {
    margin-bottom: 2.75rem;
  }
}

.door-install__eyebrow {
  display: inline-block;
  margin: 0 0 0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ac-accent);
}

.door-install__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ac-ink);
}

.door-install__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ac-muted);
}

.door-install__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 1024px) {
  .door-install__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    align-items: stretch;
    padding: 1px;
    border-radius: 0.5rem;
    overflow: hidden;
    background: rgba(26, 24, 22, 0.14);
    box-shadow: 0 18px 44px -30px rgba(20, 16, 14, 0.4);
  }
}

.door-install__step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem 1.2rem;
  background: linear-gradient(165deg, #ffffff 0%, #faf9f7 100%);
  border: 1px solid rgba(26, 24, 22, 0.09);
  border-radius: 0.45rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 16px 40px -28px rgba(20, 16, 14, 0.35);
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s var(--ac-ease-out),
    transform 0.35s var(--ac-ease-out);
}

.door-install__step:hover {
  border-color: rgba(95, 106, 120, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 22px 48px -26px rgba(20, 16, 14, 0.42);
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .door-install__step {
    min-height: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .door-install__step:hover {
    transform: none;
    z-index: 2;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.85) inset,
      0 0 0 1px rgba(95, 106, 120, 0.22),
      0 20px 50px -24px rgba(20, 16, 14, 0.35);
  }
}

.door-install__step-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f4f2ee;
  background: linear-gradient(145deg, #2a2624 0%, #1a1816 55%, #141210 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.4rem;
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.45);
}

.door-install__step-body {
  min-width: 0;
}

.door-install__step-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ac-ink);
  letter-spacing: -0.02em;
}

.door-install__step-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--ac-muted);
}

/* Cronograma / tempo — painel “chrono” (faixa escura + régua + faixas de duração) */
.door-install__time.door-install-chrono {
  position: relative;
  margin-top: clamp(2rem, 4.5vw, 2.85rem);
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.door-install__time.door-install-chrono::before {
  display: none;
}

.door-install-chrono__shell {
  display: grid;
  gap: 0;
  max-width: 72rem;
  margin-inline: auto;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 22, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 28px 70px -40px rgba(12, 10, 9, 0.55);
}

@media (min-width: 900px) {
  .door-install-chrono__shell {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
    align-items: stretch;
  }
}

.door-install-chrono__head {
  padding: clamp(1.35rem, 3.2vw, 2rem) clamp(1.25rem, 2.8vw, 1.85rem);
  background: linear-gradient(165deg, #1c1917 0%, #2a2623 42%, #3d3834 100%);
  color: #f4f1ec;
}

.door-install-chrono__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.55);
}

.door-install-chrono__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
}

.door-install-chrono__lede {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.58;
  color: rgba(244, 241, 236, 0.78);
}

.door-install-chrono__lede strong {
  font-weight: 700;
  color: #fff;
}

.door-install-chrono__board {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1.15rem, 2.6vw, 1.65rem) clamp(1.1rem, 2.4vw, 1.6rem) clamp(1.2rem, 2.8vw, 1.7rem);
  background:
    linear-gradient(180deg, #fdfcfa 0%, #f5f1eb 55%, #ebe6df 100%);
}

.door-install-chrono__ruler {
  margin-bottom: 1.1rem;
}

.door-install-chrono__ruler-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ac-muted);
}

.door-install-chrono__ruler-track {
  display: flex;
  height: 0.35rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(42, 36, 30, 0.08);
  gap: 1px;
}

.door-install-chrono__ruler-track span {
  flex: 1 1 0;
  min-width: 0;
  background: linear-gradient(90deg, rgba(122, 114, 104, 0.12), rgba(122, 114, 104, 0.04));
}

.door-install-chrono__ruler-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ac-muted);
}

.door-install-chrono__lanes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.door-install-chrono__lane {
  display: grid;
  gap: 0.65rem 1rem;
  padding: 0.85rem 0.95rem 0.95rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(42, 36, 30, 0.09);
  box-shadow: 0 10px 28px -22px rgba(20, 16, 14, 0.25);
  transition:
    border-color 0.25s ease,
    box-shadow 0.3s var(--ac-ease-out),
    transform 0.3s var(--ac-ease-out);
}

@media (min-width: 720px) {
  .door-install-chrono__lane {
    grid-template-columns: minmax(0, 1fr) minmax(0, 13.5rem);
    align-items: center;
    padding: 0.95rem 1.05rem 1rem;
  }
}

.door-install-chrono__lane:hover {
  border-color: rgba(95, 106, 120, 0.22);
  box-shadow: 0 16px 36px -20px rgba(20, 16, 14, 0.28);
  transform: translateY(-1px);
}

.door-install-chrono__lane-meta {
  min-width: 0;
}

.door-install-chrono__lane-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ac-ink);
  margin-bottom: 0.28rem;
}

.door-install-chrono__lane-spec {
  display: block;
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--ac-muted);
}

.door-install-chrono__lane-viz {
  display: grid;
  gap: 0.45rem;
  align-content: center;
}

.door-install-chrono__bar {
  position: relative;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(42, 36, 30, 0.07);
  overflow: hidden;
}

.door-install-chrono__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5c534c 0%, #8a7f72 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.door-install-chrono__lane--res .door-install-chrono__fill {
  background: linear-gradient(90deg, #4a6f6a 0%, #7a9a92 100%);
}

.door-install-chrono__lane--stu .door-install-chrono__fill {
  background: linear-gradient(90deg, #5a4f46 0%, #8b7765 100%);
}

.door-install-chrono__lane--full .door-install-chrono__fill {
  background: linear-gradient(90deg, #3a3632 0%, #6b635a 55%, #9a9085 100%);
}

.door-install-chrono__duration {
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  justify-content: flex-end;
  font-family: var(--font-display);
  line-height: 1;
  color: var(--ac-ink);
}

.door-install-chrono__duration-num {
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.door-install-chrono__duration-unit {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-muted);
}

@media (max-width: 719px) {
  .door-install-chrono__duration {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .door-install-chrono__lane {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .door-install-chrono__lane:hover {
    transform: none;
  }
}

.door-install__note {
  margin: clamp(1.35rem, 3vw, 1.75rem) auto 0;
  max-width: 44rem;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ac-ink-soft);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(26, 24, 22, 0.08);
  border-radius: 0.45rem;
  backdrop-filter: blur(8px);
}

.door-install__note-highlight {
  font-weight: 800;
  color: var(--ac-ink);
}

/* Garantia completa — página portas */
.door-garantia {
  position: relative;
  background: linear-gradient(168deg, #faf8f4 0%, #f0ebe3 45%, #e5e0d7 100%);
  border-block: 1px solid var(--ac-line);
}

.door-garantia::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 65% 50% at 80% 0%, rgba(255, 255, 255, 0.5), transparent 52%);
}

.door-garantia .site-container {
  position: relative;
  z-index: 1;
}

.door-garantia__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
  .door-garantia__intro {
    margin-bottom: 3rem;
  }
}

.door-garantia__eyebrow {
  display: inline-block;
  margin: 0 0 0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ac-accent);
}

.door-garantia__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ac-ink);
}

.door-garantia__title-accent {
  color: var(--ac-accent);
  font-style: italic;
  font-weight: 600;
}

.door-garantia__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ac-muted);
}

.door-garantia__grid {
  display: grid;
  gap: 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .door-garantia__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: stretch;
  }
}

.door-garantia__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.35rem 1.45rem;
  border-radius: 0.55rem;
  background: linear-gradient(165deg, #ffffff 0%, #faf9f7 100%);
  border: 1px solid rgba(26, 24, 22, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 18px 42px -28px rgba(20, 16, 14, 0.38);
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s var(--ac-ease-out),
    transform 0.35s var(--ac-ease-out);
}

.door-garantia__card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 0.55rem 0.55rem 0 0;
  background: linear-gradient(90deg, rgba(95, 106, 120, 0.35), rgba(26, 24, 22, 0.45));
  opacity: 0.85;
}

.door-garantia__card:hover {
  border-color: rgba(95, 106, 120, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 48px -24px rgba(20, 16, 14, 0.42);
  transform: translateY(-3px);
}

.door-garantia__card--featured {
  border-color: rgba(95, 106, 120, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 22px 50px -22px rgba(20, 16, 14, 0.45),
    0 0 0 1px rgba(95, 106, 120, 0.12);
  z-index: 1;
}

.door-garantia__card--featured::before {
  background: linear-gradient(90deg, #c4b8a8, #5f6a78, #1a1816);
  height: 4px;
  opacity: 1;
}

@media (min-width: 900px) {
  .door-garantia__card--featured:hover {
    transform: translateY(-3px);
  }
}

.door-garantia__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.door-garantia__pill {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3d3834;
  background: rgba(26, 24, 22, 0.06);
  border: 1px solid rgba(26, 24, 22, 0.08);
  border-radius: 0.25rem;
}

.door-garantia__pill--accent {
  color: #faf8f5;
  background: linear-gradient(135deg, #1a1816 0%, #3d3834 100%);
  border-color: rgba(26, 24, 22, 0.2);
}

.door-garantia__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  color: #faf8f5;
  border: 1px solid rgba(26, 24, 22, 0.12);
}

.door-garantia__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.door-garantia__icon--ink {
  background: linear-gradient(145deg, #1a1816 0%, #2c2824 100%);
}

.door-garantia__icon--accent {
  background: linear-gradient(145deg, #5f6a78 0%, #3d454e 100%);
  border-color: rgba(95, 106, 120, 0.35);
}

.door-garantia__icon--slate {
  background: linear-gradient(145deg, #57534e 0%, #3f3b38 100%);
}

.door-garantia__card-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ac-ink);
}

.door-garantia__card-text {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ac-muted);
}

.door-garantia__list {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0 0;
  margin-top: auto;
  border-top: 1px solid rgba(26, 24, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #44403c;
}

.door-garantia__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.door-garantia__check {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.12rem;
  border-radius: 9999px;
  background: rgba(95, 106, 120, 0.14);
  border: 1px solid rgba(95, 106, 120, 0.22);
  position: relative;
}

.door-garantia__check::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 0.28rem;
  height: 0.5rem;
  border: solid #3f454d;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
  .door-garantia__card,
  .door-garantia__card--featured {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .door-garantia__card:hover,
  .door-garantia__card--featured:hover {
    transform: none;
  }

  .door-install__step {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .door-install__step:hover {
    transform: none;
  }
}

/* Diferenciais — “O que nos torna únicos” (página portas) */
.door-diff {
  position: relative;
  background: linear-gradient(168deg, #e8eaef 0%, #dde2ea 42%, #d0d7e2 100%);
  border-block: 1px solid var(--ac-line);
}

.door-diff::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 12% 0%, rgba(255, 255, 255, 0.55), transparent 50%);
}

.door-diff .site-container {
  position: relative;
  z-index: 1;
}

/* Módulo editorial door-uq (coluna escura + faixas) */
.door-uq {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 960px) {
  .door-uq {
    grid-template-columns: minmax(0, 16rem) minmax(0, 1fr);
    gap: 1.5rem 2rem;
    align-items: start;
  }
}

.door-uq__aside {
  border-radius: 1rem;
  padding: 1.2rem 1.15rem 1.25rem;
  background: linear-gradient(168deg, #1c1a18 0%, #2e2a26 48%, #3f3a35 100%);
  color: #f5f1eb;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 22px 50px -30px rgba(8, 6, 5, 0.55);
}

.door-uq__aside-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.5);
}

.door-uq__pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.door-uq__pillar {
  position: relative;
  margin: 0;
  padding: 0.65rem 0 0.65rem 1.05rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(245, 241, 235, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.door-uq__pillar:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.door-uq__pillar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 4px;
  height: 0.55rem;
  border-radius: 2px;
  background: linear-gradient(180deg, #e8b078, #c45c32);
}

.door-uq__main {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.door-uq__band {
  --duq-accent: #5f6a78;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem 1.1rem;
  align-items: start;
  padding: 1.05rem 1.1rem 1.1rem 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(110deg, #ffffff 0%, #faf8f5 55%, #f3efe8 100%);
  border: 1px solid rgba(26, 24, 22, 0.08);
  border-left: 5px solid var(--duq-accent);
  box-shadow: 0 12px 34px -24px rgba(20, 16, 14, 0.35);
  transition:
    border-color 0.25s ease,
    box-shadow 0.3s var(--ac-ease-out),
    transform 0.3s var(--ac-ease-out);
}

.door-uq__band--acab {
  --duq-accent: #5a7f78;
}

.door-uq__band--contract {
  --duq-accent: #3d5c66;
}

.door-uq__band--measure {
  --duq-accent: #3d6b5c;
}

.door-uq__band--color {
  --duq-accent: #6a4f7a;
}

.door-uq__band:hover {
  border-color: rgba(26, 24, 22, 0.12);
  box-shadow: 0 16px 42px -22px rgba(20, 16, 14, 0.32);
  transform: translateX(4px);
}

.door-uq__band-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.55rem;
  flex-shrink: 0;
  color: var(--duq-accent);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 24, 22, 0.07);
}

.door-uq__band-icon svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

.door-uq__band-copy {
  min-width: 0;
}

.door-uq__band-title {
  margin: 0 0 0.32rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ac-ink);
  line-height: 1.2;
}

.door-uq__band-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ac-muted);
}

.door-uq__band-text strong {
  font-weight: 700;
  color: var(--ac-ink-soft);
}

@media (max-width: 520px) {
  .door-uq__band {
    grid-template-columns: 1fr;
    padding-left: 1rem;
  }

  .door-uq__band-icon {
    width: 2.45rem;
    height: 2.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .door-uq__band {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .door-uq__band:hover {
    transform: none;
  }
}

/* ——— Depoimentos: destaque + coluna ——— */
.testimonials-lux {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, #f2efe8 0%, var(--ac-bg) 45%, #ebe6de 100%);
}

.testimonials-lux::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 154, 168, 0.5), transparent);
  pointer-events: none;
}

.testimonials-lux__grid {
  display: grid;
  gap: clamp(1.1rem, 2.8vw, 1.5rem);
  align-items: stretch;
}

@media (min-width: 1024px) {
  .testimonials-lux__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  }

  .testimonials-lux__featured {
    grid-row: 1 / -1;
  }
}

.testimonials-lux__featured {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  min-height: 0;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  background: linear-gradient(165deg, #ffffff 0%, #f4f6f9 100%);
  border: 1px solid var(--ac-line);
  border-left: 4px solid var(--ac-accent);
  border-radius: 0.125rem;
  box-shadow: var(--ac-shadow-lg);
}

.testimonials-lux__eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ac-muted);
  margin-bottom: 0.35rem;
}

.testimonials-lux__stars {
  display: flex;
  gap: 0.12rem;
  font-size: 0.78rem;
  line-height: 1;
  color: var(--ac-accent);
}

.testimonials-lux__stars span {
  opacity: 0.92;
}

.testimonials-lux__quote {
  margin: 0;
  font-size: clamp(1.02rem, 1.85vw, 1.32rem);
  line-height: 1.55;
  color: var(--ac-ink-soft);
}

.testimonials-lux__quote--compact {
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.52;
}

.testimonials-lux__card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 0;
  padding: clamp(1.2rem, 3vw, 1.55rem);
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid var(--ac-line);
  border-radius: 0.125rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s var(--ac-ease-out);
}

.testimonials-lux__card:hover {
  border-color: rgba(148, 154, 168, 0.35);
  box-shadow: 0 18px 44px -30px rgba(15, 16, 20, 0.18);
}

.testimonials-lux__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.testimonials-lux__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(145deg, var(--ac-ink) 0%, #4a505c 100%);
  flex-shrink: 0;
}

.testimonials-lux__name {
  margin: 0;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ac-ink);
}

.testimonials-lux__role {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ac-muted);
  line-height: 1.35;
}

.testimonials-lux__deco {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 0.85;
  color: rgba(148, 154, 168, 0.22);
  user-select: none;
  margin: -0.25rem 0 0;
}

/* Rodapé — continuidade do canvas off-white */
.site-footer {
  background: linear-gradient(180deg, #ebe6de 0%, #e0dbd2 100%);
  color: var(--ac-ink-soft);
  border-top: 1px solid var(--ac-line);
}

.site-footer a:not([class*="bg-"]) {
  color: var(--ac-slate);
}

.site-footer a:not([class*="bg-"]):hover {
  color: var(--ac-ink);
}

.site-footer .site-footer__heading {
  color: var(--ac-ink);
}

.site-footer .site-footer__muted {
  color: var(--ac-muted);
}

/* Galeria modal — página portas (evita CSS inline no HTML) */
#galleryImage {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: optimize-quality;
  -ms-interpolation-mode: bicubic;
  backface-visibility: hidden;
  transform: translateZ(0);
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  #galleryImage {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
