.hero {
  display: grid;
  align-items: center;
  padding: 88px 0 28px;
}

.hero__inner {
  display: grid;
  gap: 18px;
}

.hero__lead {
  max-width: 660px;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 5vw, 1.72rem);
  font-style: italic;
  line-height: 1.22;
}

.hero__actions,
.cta-box__actions {
  display: grid;
  gap: 12px;
  margin: 18px 0 14px;
}

.hero__meta {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid rgba(200,161,91,0.25);
  background: rgba(0,0,0,0.26);
  color: var(--cm-text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-card {
  position: relative;
  border: 1px solid var(--cm-line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(42, 27, 12, 0.7), rgba(6, 5, 4, 0.88));
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 70% 18%, rgba(200,161,91,0.18), transparent 30%);
  pointer-events: none;
}

.hero-card__media { aspect-ratio: 4 / 5; }
.hero-card__media img,
.about-media img,
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-card__body {
  position: relative;
  padding: 16px 10px 8px;
}

.hero-card__kicker {
  margin-bottom: 6px;
  color: var(--cm-gold);
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 7vw, 2.05rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hero-card__body p:not(.hero-card__kicker) {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.25;
}

.proof-strip {
  display: grid;
  gap: 8px;
  padding: 10px 0 0;
}

.proof-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: var(--cm-text-soft);
  font-family: var(--font-title);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section--portfolio {
  background: rgba(0,0,0,0.34);
}

.gallery-shell {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
}

.portfolio-slider {
  overflow: hidden;
  border-radius: var(--radius-20);
}

.portfolio-track {
  display: flex;
  width: 100%;
  transform: translateX(-100%);
  transition: transform 0.42s ease;
  will-change: transform;
}

.portfolio-track.is-no-transition {
  transition: none;
}

.portfolio-card {
  flex: 0 0 100%;
  aspect-ratio: 4 / 5;
  background: rgba(0,0,0,0.38);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224,194,125,0.56);
  border-radius: 999px;
  background: rgba(5,4,3,0.76);
  color: var(--cm-gold-2);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 12px 34px rgba(0,0,0,0.34);
}

.gallery-arrow--prev { left: -10px; }
.gallery-arrow--next { right: -10px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.slider-dots span {
  width: 8px;
  height: 8px;
  border: 1px solid var(--cm-gold);
  border-radius: 999px;
  opacity: 0.7;
}
.slider-dots .is-active { background: var(--cm-gold); }

.split-grid, .about-grid {
  display: grid;
  gap: 22px;
}

.feature-grid,
.steps,
.testimonial-grid {
  display: grid;
  gap: 12px;
}

.feature-card,
.step-card,
.testimonial-card,
.symbol-card,
.cta-box {
  border: 1px solid rgba(200,161,91,0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(24,17,10,0.82), rgba(7,6,5,0.9));
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}

.feature-card,
.step-card,
.testimonial-card {
  padding: 16px;
}

.feature-card h3,
.step-card h3 { color: var(--cm-gold-2); }
.feature-card p,
.step-card p,
.testimonial-card p { margin-bottom: 0; }

.symbol-card,
.cta-box {
  display: grid;
  gap: 18px;
  padding: 22px 18px;
  background:
    linear-gradient(135deg, rgba(79,49,20,0.76), rgba(7,6,5,0.94)),
    url("../img/bg/paper-aged.webp"),
    var(--cm-surface);
  background-size: cover;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cm-gold);
  font-family: var(--font-title);
  font-weight: 700;
}

.about-media {
  aspect-ratio: 4 / 3;
}

.about-copy p { font-size: 1rem; }

.google-review {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 178px;
  color: inherit;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.google-review:hover {
  transform: translateY(-2px);
  border-color: var(--cm-gold-2);
  background: linear-gradient(180deg, rgba(35,24,13,0.9), rgba(9,7,5,0.94));
}
.google-review__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #4285f4;
  font-weight: 900;
  font-size: 1.15rem;
  font-family: var(--font-body);
}
.google-review__stars {
  color: #ffb703;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}
.google-review strong {
  color: var(--cm-text);
  font-size: 0.93rem;
}
.google-review p {
  color: var(--cm-text-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.cta-final {
  padding-bottom: 54px;
}

.cta-box {
  text-align: center;
}
.cta-box h2 { color: var(--cm-gold-2); }
.cta-box p { margin-inline: auto; max-width: 620px; }

.cm-footer {
  border-top: 1px solid rgba(200,161,91,0.14);
  padding: 22px 0;
  background: #020202;
}
.cm-footer .cm-container {
  display: grid;
  gap: 8px;
  text-align: center;
}
.cm-footer p,
.cm-footer a {
  margin: 0;
  color: var(--cm-muted);
  font-size: 0.82rem;
}
.cm-footer a { color: var(--cm-gold); }

.quiz-modal__panel {
  padding: 28px 18px 18px;
}

.quiz-progress {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  margin: 16px 34px 22px 0;
}
.quiz-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cm-bronze), var(--cm-gold-2));
  transition: width 0.2s ease;
}

.quiz-result { display: grid; gap: 14px; }
.quiz-result h2 { color: var(--cm-gold-2); }

.quiz-form {
  display: grid;
  gap: 16px;
}
.quiz-question h2 {
  margin-bottom: 8px;
  color: var(--cm-gold-2);
  font-size: clamp(1.35rem, 6vw, 2.15rem);
}
.quiz-options {
  display: grid;
  gap: 10px;
}
.quiz-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 46px;
  padding: 12px;
  border: 1px solid rgba(200,161,91,0.25);
  border-radius: 10px;
  background: rgba(0,0,0,0.22);
  color: var(--cm-text-soft);
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}
.quiz-option:hover {
  transform: translateY(-1px);
  border-color: var(--cm-gold);
  background: rgba(200,161,91,0.08);
}
.quiz-option input { margin-top: 2px; accent-color: var(--cm-gold); }

.quiz-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.quiz-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 12px;
}
.quiz-pill-list span {
  padding: 7px 10px;
  border: 1px solid rgba(200,161,91,0.24);
  border-radius: 999px;
  color: var(--cm-text-soft);
  background: rgba(0,0,0,0.22);
  font-size: 0.8rem;
}


/* V1.3 · galeria em carrossel real */
@media (min-width: 820px) {
  .gallery-shell { max-width: 960px; }
  .portfolio-card { flex-basis: calc(100% / 3); }
}

/* V1.3 · depoimentos em carrossel */
.testimonial-shell {
  position: relative;
  width: 100%;
  margin-inline: auto;
}

.testimonial-slider {
  overflow: hidden;
  border-radius: var(--radius-20);
}

.testimonial-track {
  display: flex;
  width: 100%;
  transform: translateX(-100%);
  transition: transform 0.42s ease;
  will-change: transform;
}

.testimonial-track.is-no-transition { transition: none; }

.testimonial-track .testimonial-card {
  flex: 0 0 100%;
  min-height: 168px;
}

.google-review {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  margin: 0;
  color: inherit;
}

.google-review:hover {
  transform: none;
  border-color: rgba(200,161,91,0.22);
  background: linear-gradient(180deg, rgba(24,17,10,0.82), rgba(7,6,5,0.9));
}

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

.google-review__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}

.google-review__stars {
  color: #f4c542;
  letter-spacing: 0.03em;
  font-size: 0.94rem;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224,194,125,0.56);
  border-radius: 999px;
  background: rgba(5,4,3,0.76);
  color: var(--cm-gold-2);
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 12px 34px rgba(0,0,0,0.34);
}

.testimonial-arrow--prev { left: -8px; }
.testimonial-arrow--next { right: -8px; }

.slider-dots--testimonials { margin-top: 14px; }

@media (min-width: 820px) {
  .testimonial-track .testimonial-card { flex-basis: calc(100% / 3); }
}

.quiz-nav .btn[hidden] { display: none; }
.quiz-nav .btn[hidden] + .btn { grid-column: 1 / -1; }
.quiz-option input { position: absolute; opacity: 0; pointer-events: none; }
.quiz-option:has(input:checked) {
  border-color: var(--cm-gold-2);
  background: rgba(200,161,91,0.12);
  color: var(--cm-text);
}
.google-review__icon span {
  background: conic-gradient(from 45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* V1.4 · ajustes comerciais e mobile-first */
.section,
.hero,
#projetos,
#estilo,
#simbolo,
#como-funciona,
#sobre,
#depoimentos,
#artes-disponiveis,
#solicitar-projeto {
  scroll-margin-top: 86px;
}

.hero {
  padding-top: 76px;
}

.hero-card {
  order: -1;
}

.hero__copy {
  order: 2;
}

.hero .eyebrow {
  margin-top: 4px;
}

.hero h1 {
  font-size: clamp(2.05rem, 9.4vw, 4.2rem);
  line-height: 1.02;
}

.hero__lead {
  max-width: 560px;
  font-size: clamp(1.02rem, 4.45vw, 1.38rem);
  line-height: 1.32;
}

.hero-card__kicker {
  white-space: normal;
}

.section-head h2,
.about-copy h2,
.cta-box h2,
.symbol-card h2 {
  line-height: 1.03;
}

.section--testimonials .section-head {
  border-top: 1px solid rgba(200,161,91,0.24);
  padding-top: 24px;
}

.section--testimonials .section-head h2 {
  margin-bottom: 0;
}

.google-g {
  color: transparent;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social a {
  color: var(--cm-gold-2);
  font-size: 0.82rem;
}
.footer-social a[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.image-loader {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 1;
  background: linear-gradient(120deg, rgba(15,10,6,0.8), rgba(67,46,24,0.42), rgba(15,10,6,0.8));
  background-size: 200% 100%;
  animation: cm-loader-shimmer 1.1s linear infinite;
}
.image-loader::after {
  content: "";
  width: 34px;
  height: 34px;
  border: 2px solid rgba(224,194,125,0.24);
  border-top-color: var(--cm-gold-2);
  border-radius: 999px;
  animation: cm-spin 0.8s linear infinite;
}
.portfolio-card.is-loading .image-loader { display: grid; }

@keyframes cm-loader-shimmer {
  to { background-position: -200% 0; }
}
@keyframes cm-spin {
  to { transform: rotate(360deg); }
}

.available-grid {
  display: grid;
  gap: 14px;
}
.available-card {
  background: linear-gradient(180deg, rgba(24,17,10,0.82), rgba(7,6,5,0.94));
}
.available-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.available-card__body {
  padding: 16px;
}
.available-card__body h3 {
  color: var(--cm-gold-2);
}

.quiz-question__top {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.quiz-question__top .eyebrow {
  margin: 0;
}
.quiz-back {
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cm-muted);
  font-size: 0.78rem;
  text-align: left;
}
.quiz-back:hover { color: var(--cm-gold-2); }
.quiz-question h2 {
  margin-bottom: 22px;
}
.quiz-options {
  gap: 12px;
}
.quiz-nav {
  min-height: 52px;
}
.quiz-nav:empty { display: none; }
.quiz-nav--final {
  margin-top: 16px;
}
.quiz-loader {
  min-height: 380px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
}
.quiz-loader__ring {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(224,194,125,0.18);
  border-top-color: var(--cm-gold-2);
  border-radius: 999px;
  animation: cm-spin 0.8s linear infinite;
  box-shadow: 0 0 28px rgba(200,161,91,0.14);
}
.quiz-loader p {
  margin: 0;
  color: var(--cm-gold-2);
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
}
.quiz-art-info {
  display: grid;
  gap: 10px;
}
.quiz-art-info .eyebrow {
  margin: 0;
}
.quiz-result .btn--primary {
  margin-top: 6px;
}

@media (min-width: 560px) {
  .available-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  .hero-card { order: 2; }
  .hero__copy { order: 1; }
  .hero h1 { max-width: 720px; }
  .hero-card__kicker { white-space: nowrap; }
  .available-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


/* PATCH V1.4.1 · quiz resultado como tela própria */
.quiz-form[hidden],
.quiz-result[hidden],
.quiz-progress[hidden] {
  display: none !important;
}

.quiz-modal.is-result .quiz-modal__panel {
  display: grid;
  align-content: start;
}

.quiz-modal.is-result .quiz-result {
  min-height: min(620px, calc(100vh - 150px));
  display: grid;
  align-content: center;
  gap: 16px;
}

.quiz-modal.is-result .quiz-result h2 {
  font-size: clamp(2rem, 10vw, 3.4rem);
  line-height: 0.98;
}

.quiz-modal.is-result .quiz-result .btn--primary {
  margin-top: 12px;
  animation: cmPulseGoldStrong 2.6s ease-in-out infinite;
}

@keyframes cmPulseGoldStrong {
  0%, 100% {
    box-shadow: 0 8px 28px rgba(0,0,0,0.34), 0 0 0 0 rgba(224,194,125,0);
  }
  50% {
    box-shadow: 0 12px 36px rgba(0,0,0,0.44), 0 0 0 9px rgba(224,194,125,0.13), 0 0 28px rgba(224,194,125,0.22);
  }
}


/* PATCH V1.5 · Conversão e enxugamento */
.hero {
  padding: 76px 0 26px;
}

.hero__inner--focused {
  gap: 18px;
}

.hero-card--intro {
  padding: 10px;
}

.hero-card--intro .hero-card__body--top {
  padding: 0 8px 10px;
}

.hero-card--intro .hero-card__kicker {
  margin: 0;
  white-space: nowrap;
  font-size: clamp(1.45rem, 6.2vw, 2.4rem);
  line-height: .95;
}

.hero__copy--after-photo h1 {
  font-size: clamp(2rem, 9.6vw, 4.7rem);
  line-height: .96;
}

.hero__lead {
  font-size: clamp(1.02rem, 4.2vw, 1.32rem);
}

.section-cta {
  display: grid;
  gap: 10px;
  margin: 22px auto 0;
  max-width: 360px;
  text-align: center;
}

.section-cta p {
  margin: 0;
  color: var(--cm-text-soft);
  font-size: .95rem;
}

.section--portfolio {
  padding-top: 34px;
}

.section--symbol {
  padding-top: 28px;
}

.section--process {
  padding-top: 34px;
}

.about-grid {
  gap: 22px;
}

.about-copy .btn {
  margin-top: 12px;
}

.testimonial-shell {
  padding-inline: 42px;
}

.testimonial-card {
  min-height: 170px;
  padding-inline: 22px;
}

.testimonial-arrow {
  z-index: 4;
}

.testimonial-arrow--prev {
  left: 4px;
}

.testimonial-arrow--next {
  right: 4px;
}

.quiz-options {
  margin-top: 24px;
}

.quiz-modal.is-result .quiz-progress,
.quiz-modal.is-result .quiz-form {
  display: none !important;
}

.quiz-result .btn--primary {
  animation: cmPulseGoldStrong 2.45s ease-in-out infinite;
}

@keyframes cmPulseGoldStrong {
  0%, 100% {
    box-shadow: 0 8px 28px rgba(0,0,0,.34), 0 0 0 0 rgba(224,194,125,0);
  }
  50% {
    box-shadow: 0 12px 36px rgba(0,0,0,.44), 0 0 0 9px rgba(224,194,125,.14), 0 0 28px rgba(224,194,125,.24);
  }
}

@media (min-width: 820px) {
  .hero__inner--focused {
    grid-template-columns: 390px minmax(0, 1fr);
    align-items: center;
  }

  .hero-card--intro {
    order: 1;
  }

  .hero__copy--after-photo {
    order: 2;
  }

  .section-cta {
    max-width: 420px;
  }
}


/* PATCH V1.6.1 · correção limpa de largura mobile/tablet */
html,
body,
.cm-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

.cm-container {
  width: min(calc(100% - 28px), 1120px);
  max-width: 1120px;
  margin-inline: auto;
}

.cm-header {
  width: min(calc(100% - 28px), 1120px);
  max-width: 1120px;
  left: 50%;
  right: auto;
  transform: translateX(-50%) !important;
}

.cm-header.is-scrolled {
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  transform: none !important;
}

.hero,
.section,
.cm-footer {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero__inner,
.hero__inner--focused,
.hero-card,
.hero-card--intro,
.hero__copy,
.hero__copy--after-photo,
.gallery-shell,
.testimonial-shell,
.cta-box,
.quiz-card {
  min-width: 0;
  max-width: 100%;
}

.hero-card--intro {
  width: 100%;
  overflow: hidden;
}

.hero-card--intro .hero-card__body--top {
  width: 100%;
  overflow: hidden;
}

.hero-card--intro .hero-card__kicker {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: clamp(1rem, 4.25vw, 1.42rem) !important;
  line-height: 1.05 !important;
  letter-spacing: .01em !important;
}

.hero-card--intro .hero-card__media {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: auto !important;
  max-height: none !important;
}

.hero-card--intro .hero-card__media img {
  display: block;
  width: 100%;
  height: auto !important;
  max-width: 100%;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center top !important;
}

.hero__copy--after-photo h1,
.section-head h2,
.cta-box h2 {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

.hero__copy--after-photo h1 {
  font-size: clamp(2rem, 8.35vw, 3.2rem) !important;
  line-height: .98 !important;
}

@media (max-width: 380px) {
  .cm-container {
    width: min(calc(100% - 24px), 1120px);
  }

  .cm-header {
    width: min(calc(100% - 24px), 1120px);
  }

  .hero__copy--after-photo h1 {
    font-size: clamp(1.78rem, 8vw, 2.15rem) !important;
  }

  .hero-card--intro .hero-card__kicker {
    font-size: clamp(.92rem, 4vw, 1.05rem) !important;
  }
}

/* Tablet/iPad: evita layout híbrido quebrado */
@media (min-width: 768px) and (max-width: 1180px) {
  .cm-container {
    width: min(calc(100% - 48px), 760px);
  }

  .hero__inner--focused {
    grid-template-columns: 1fr !important;
    max-width: 760px;
    margin-inline: auto;
  }

  .hero-card--intro,
  .hero__copy--after-photo {
    max-width: 620px;
    margin-inline: auto;
  }
}



/* PATCH · botão dentro do processo */
.process-card .btn {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.process-card p + .btn {
  margin-top: 16px;
}


/* PATCH FINAL · Sobre, processo e depoimentos */
.about-stack {
  display: grid;
  gap: 18px;
}

.about-stack > .eyebrow {
  margin-bottom: -4px;
}

.about-stack .about-media {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}

.about-stack .about-copy {
  max-width: 720px;
  margin-inline: auto;
}

.about-stack .about-copy h2 {
  margin-top: 0;
}

.process-card .btn {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.process-card h3 {
  margin-top: 8px;
}

.section-title--compact {
  font-size: clamp(1.75rem, 7.8vw, 3.15rem) !important;
  line-height: .98 !important;
}

@media (min-width: 900px) {
  .about-stack {
    max-width: 840px;
    margin-inline: auto;
  }
}


/* PATCH 181 · Sobre e atendimento com processo */
.about-stack {
  display: grid;
  gap: 18px;
}

.about-stack > .eyebrow {
  margin-bottom: -4px;
}

.about-stack .about-media,
.about-stack .about-copy {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}

.about-stack .about-copy h2 {
  margin-top: 0;
}

.step-card .btn {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.step-card h3 {
  margin-top: 8px;
}

@media (min-width: 900px) {
  .about-stack {
    max-width: 840px;
    margin-inline: auto;
  }
}


/* Copy comercial V1 · Guaíba */
.section--commercial,
.section--fit,
.section--faq {
  position: relative;
}

.commercial-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.commercial-grid--two {
  gap: 16px;
}

.commercial-card,
.faq-card {
  border: 1px solid rgba(200,161,91,0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(28, 20, 11, 0.76), rgba(7, 6, 5, 0.86));
  padding: 18px 16px;
  color: var(--cm-text);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

.commercial-card h3,
.faq-card h3 {
  margin: 6px 0 8px;
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 5vw, 1.55rem);
  line-height: 1.05;
  color: var(--cm-light);
}

.commercial-card p,
.faq-card p {
  color: var(--cm-text-soft);
  line-height: 1.5;
}

.commercial-card__label {
  display: inline-block;
  color: var(--cm-gold);
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commercial-card ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--cm-text-soft);
  line-height: 1.45;
}

.commercial-card--positive {
  border-color: rgba(200,161,91,0.32);
}

.commercial-card--attention {
  background: linear-gradient(180deg, rgba(21, 14, 9, 0.78), rgba(5, 5, 4, 0.88));
}

@media (min-width: 760px) {
  .commercial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .commercial-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* FAQ accordion · conversão compacta */
.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-card--details {
  padding: 0;
  overflow: hidden;
}

.faq-card--details summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.5vw, 1.24rem);
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-card--details summary::-webkit-details-marker {
  display: none;
}

.faq-card--details summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(200, 170, 110, .38);
  border-radius: 999px;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1;
}

.faq-card--details[open] summary::after {
  content: "−";
}

.faq-card--details p {
  padding: 0 18px 18px;
  margin: 0;
  font-size: .96rem;
  line-height: 1.62;
  color: var(--color-muted);
}

.faq-card--details[open] {
  border-color: rgba(200, 170, 110, .34);
}

/* PATCH · hero comercial sem foto grande */
.hero--commercial {
  min-height: auto;
  padding: 96px 0 36px;
}

.hero__inner--commercial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.hero__copy--commercial {
  max-width: 860px;
  margin-inline: auto;
  text-align: left;
}

.hero__copy--commercial h1 {
  max-width: 900px;
  font-size: clamp(2.15rem, 9vw, 5rem);
  line-height: .94;
  letter-spacing: -0.055em;
}

.hero__copy--commercial .hero__lead {
  max-width: 780px;
  font-size: clamp(1.02rem, 3.9vw, 1.38rem);
  line-height: 1.38;
}

.hero__meta--commercial {
  max-width: 760px;
  margin-top: 14px;
}

.hero__meta--commercial span {
  position: relative;
  padding-left: 18px;
}

.hero__meta--commercial span::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--cm-gold);
}

@media (min-width: 820px) {
  .hero--commercial {
    padding: 112px 0 46px;
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 260px));
    align-items: center;
  }
}

/* PATCH · hero híbrido comercial */
.hero--hybrid {
  padding: 88px 0 34px;
}

.hero__inner--hybrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.hero__copy--hybrid {
  max-width: 760px;
  margin-inline: auto;
}

.hero__copy--hybrid h1 {
  font-size: clamp(2rem, 8vw, 4.35rem);
  line-height: .94;
  letter-spacing: -0.055em;
}

.hero__copy--hybrid .hero__lead {
  max-width: 680px;
  font-size: clamp(1rem, 3.4vw, 1.22rem);
  line-height: 1.44;
}

.hero-author-card {
  width: min(100%, 360px);
  margin-inline: auto;
  border: 1px solid rgba(200, 170, 110, .34);
  background:
    linear-gradient(180deg, rgba(200, 170, 110, .08), rgba(255,255,255,.02)),
    rgba(0,0,0,.22);
  box-shadow: 0 22px 70px rgba(0,0,0,.42);
  overflow: hidden;
}

.hero-author-card__media {
  aspect-ratio: 4 / 5;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}

.hero-author-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-author-card__body {
  display: grid;
  gap: 5px;
  padding: 16px;
}

.hero-author-card__body strong {
  color: var(--color-gold, #c8aa6e);
  font-family: var(--font-display, serif);
  font-size: 1.3rem;
  line-height: 1;
}

.hero-author-card__body span {
  color: var(--color-muted, rgba(248, 243, 232, .72));
  font-size: .92rem;
  line-height: 1.35;
}

@media (min-width: 860px) {
  .hero--hybrid {
    padding: 104px 0 46px;
  }

  .hero__inner--hybrid {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, .58fr);
    gap: clamp(28px, 5vw, 58px);
  }

  .hero__copy--hybrid {
    margin-inline: 0;
  }

  .hero-author-card {
    margin-inline: 0;
    justify-self: end;
  }
}

@media (max-width: 520px) {
  .hero-author-card {
    width: min(100%, 290px);
  }

  .hero-author-card__body {
    padding: 13px;
  }
}

/* PATCH · ajuste proporção horizontal do card do hero */
.hero-author-card {
  width: min(100%, 320px);
}

.hero-author-card__media {
  aspect-ratio: 16 / 10;
  background: #050505;
}

.hero-author-card__media img {
  object-fit: contain;
  object-position: center;
}

@media (max-width: 859px) {
  .hero__inner--hybrid {
    gap: 22px;
  }

  .hero__copy--hybrid {
    order: 1;
  }

  .hero-author-card {
    order: 2;
    width: min(100%, 300px);
  }

  .hero-author-card__body {
    padding: 12px 14px;
  }

  .hero-author-card__body strong {
    font-size: 1.08rem;
  }

  .hero-author-card__body span {
    font-size: .86rem;
  }
}

@media (max-width: 520px) {
  .hero-author-card {
    width: min(100%, 286px);
  }
}

/* PATCH · hero com imagem horizontal própria */
.hero-author-card {
  width: min(100%, 340px);
}

.hero-author-card__media {
  aspect-ratio: 4 / 3;
  background: #050505;
}

.hero-author-card__media img {
  object-fit: cover;
  object-position: center;
}

.hero-author-card__body {
  display: none;
}

.hero__copy--hybrid .hero__lead {
  font-size: clamp(1.08rem, 3.7vw, 1.32rem);
}

@media (max-width: 859px) {
  .hero--hybrid {
    padding-top: 74px;
  }

  .hero-author-card {
    order: 1;
    width: min(100%, 334px);
    margin-bottom: 6px;
  }

  .hero__copy--hybrid {
    order: 2;
  }

  .hero__copy--hybrid h1 {
    font-size: clamp(2.02rem, 8.2vw, 3rem);
  }
}

@media (max-width: 520px) {
  .hero-author-card {
    width: min(100%, 314px);
  }
}

/* PATCH · hero V1.4 ordem comercial */
.hero--v14 {
  padding: 72px 0 34px;
}

.hero__inner--v14 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.hero__copy--v14 {
  max-width: 760px;
  margin-inline: auto;
}

.hero__eyebrow--v14 {
  font-size: .78rem;
  letter-spacing: .13em;
  margin-bottom: 10px;
}

.hero__copy--v14 h1 {
  max-width: 720px;
  font-size: clamp(2.05rem, 7.2vw, 4.2rem);
  line-height: .95;
  letter-spacing: -0.052em;
  margin-bottom: 0;
}

.hero-author-card--v14 {
  width: min(100%, 520px);
  margin: 8px auto 4px;
  border-color: rgba(200, 170, 110, .32);
}

.hero-author-card--v14 .hero-author-card__media {
  aspect-ratio: 4 / 3;
}

.hero-author-card--v14 .hero-author-card__media img {
  object-fit: cover;
  object-position: center;
}

.hero__after--v14 {
  max-width: 720px;
  margin-inline: auto;
}

.hero__after--v14 .hero__lead {
  font-size: clamp(1.04rem, 3.6vw, 1.28rem);
  line-height: 1.48;
  margin-bottom: 18px;
}

@media (min-width: 860px) {
  .hero--v14 {
    padding: 94px 0 46px;
  }

  .hero__inner--v14 {
    gap: 22px;
  }

  .hero__copy--v14,
  .hero__after--v14 {
    margin-inline: 0;
  }

  .hero-author-card--v14 {
    margin-inline: 0;
  }
}

@media (max-width: 520px) {
  .hero--v14 {
    padding-top: 66px;
  }

  .hero__inner--v14 {
    gap: 16px;
  }

  .hero__copy--v14 h1 {
    font-size: clamp(1.92rem, 8.1vw, 2.55rem);
  }

  .hero-author-card--v14 {
    width: min(100%, 310px);
  }
}

/* PATCH · correção ordem hero V1.4 mobile */
.hero--v14 .hero__copy--v14 {
  order: 1;
}

.hero--v14 .hero-author-card--v14 {
  order: 2;
}

.hero--v14 .hero__after--v14 {
  order: 3;
}

.hero--v14 .hero__after--v14 .hero__actions {
  margin-top: 18px;
}

@media (max-width: 520px) {
  .hero--v14 .hero__copy--v14 {
    order: 1;
  }

  .hero--v14 .hero-author-card--v14 {
    order: 2;
  }

  .hero--v14 .hero__after--v14 {
    order: 3;
  }
}

/* PATCH · hero V1.5 final para tráfego */
.hero__copy--v14 h1 {
  font-size: clamp(2.45rem, 10vw, 4.6rem);
  line-height: .9;
}

.hero__after--v14 .hero__lead {
  font-size: clamp(1.12rem, 4vw, 1.36rem);
  line-height: 1.52;
}

.hero__actions--v15 {
  display: grid;
  gap: 12px;
}

.hero__quiz-note {
  margin: 2px 0 -2px;
  color: var(--color-muted, rgba(248, 243, 232, .72));
  font-size: clamp(.94rem, 3.2vw, 1.05rem);
  line-height: 1.42;
  text-align: center;
}

@media (max-width: 520px) {
  .hero__copy--v14 h1 {
    font-size: clamp(2.32rem, 11vw, 3.05rem);
  }

  .hero__after--v14 .hero__lead {
    font-size: 1.08rem;
  }
}
