/* /clientes — client stories page. Scoped .cli-* classes (new, page-only).
   Uses brand tokens from colors_and_type.css with safe fallbacks. */

/* "Ver todos os depoimentos" link (rendered on the home testimonials section). */
.cli-seeall {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.cli-seeall__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--vaas-blue, #0434f4);
  text-decoration: none;
  transition: gap 160ms ease;
}
.cli-seeall__link:hover {
  gap: 12px;
  text-decoration: underline;
}

.cli-hero {
  padding: 96px 0 40px;
  text-align: center;
}
.cli-hero__inner {
  max-width: 760px;
}
.cli-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-h1, 56px);
  line-height: var(--lh-tight, 1.05);
  color: var(--vaas-blue-deep, #000b58);
  margin: 16px 0 0;
}
.cli-hero__title em {
  font-style: normal;
  color: var(--vaas-blue, #0434f4);
}
.cli-hero__sub {
  margin: 20px auto 0;
  max-width: 620px;
  font-size: var(--fs-body, 16px);
  line-height: var(--lh-normal, 1.5);
  color: var(--fg-muted, #6b6f80);
}

.cli-list {
  padding: 32px 0 80px;
}

.cli-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--border, rgba(7, 9, 20, 0.08));
}
.cli-story:first-child {
  border-top: 0;
}
.cli-story--rev .cli-story__meta {
  order: 2;
}

.cli-story__logo {
  height: 60px;
  margin-bottom: 24px;
}
.cli-story__logo img {
  height: 100%;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.cli-story__company-lg {
  display: inline-block;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: var(--fs-h3, 28px);
  font-weight: 600;
  color: var(--vaas-blue-deep, #000b58);
}
.cli-story__block {
  margin-top: 20px;
}
.cli-story__label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--fs-micro, 11px);
  font-weight: 600;
  color: var(--vaas-blue, #0434f4);
  margin-bottom: 6px;
}
.cli-story__text {
  margin: 0;
  font-size: var(--fs-body, 16px);
  line-height: var(--lh-normal, 1.5);
  color: var(--fg, #1a181b);
}

.cli-story__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cli-story__chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--vaas-blue-10, rgba(4, 52, 244, 0.08));
  border: 1px solid var(--border, rgba(7, 9, 20, 0.08));
  font-size: 13px;
  font-weight: 500;
  color: var(--vaas-blue-deep, #000b58);
}

.cli-story__quote {
  position: relative;
  margin: 0;
  background: var(--bg-subtle, #f6f7fb);
  border: 1px solid var(--border, rgba(7, 9, 20, 0.08));
  border-radius: var(--radius-lg, 16px);
  padding: 40px;
}
.cli-story__mark {
  position: absolute;
  top: 10px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--vaas-blue, #0434f4);
  opacity: 0.22;
}
.cli-story__quote blockquote {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--vaas-blue-deep, #000b58);
}
.cli-story__author {
  margin-top: 24px;
}
.cli-story__name {
  display: block;
  font-weight: 600;
  color: var(--fg, #1a181b);
}
.cli-story__role {
  display: block;
  font-size: 14px;
  color: var(--fg-muted, #6b6f80);
}

@media (max-width: 860px) {
  .cli-hero {
    padding: 72px 0 24px;
  }
  .cli-story {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
  }
  .cli-story--rev .cli-story__meta {
    order: 0;
  }
  .cli-story__quote {
    padding: 28px;
  }
  .cli-story__quote blockquote {
    font-size: 17px;
  }
}
