/* landing-6 — Heynds design system (docs/design-system1.md) */
:root {
  --l6-bg: #0b0b0b;
  --l6-surface: #1a1a1a;
  --l6-white: #ffffff;
  --l6-muted: #666666;
  --l6-gray-light: #f5f5f5;
  --l6-accent: #1354ed;
  --l6-accent-hover: #2f67f5;
  --l6-accent-soft: rgba(19, 84, 237, 0.14);
  --l6-border: rgba(255, 255, 255, 0.08);
  --l6-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --l6-font-display: "Sora", system-ui, sans-serif;
  --l6-font-body: "Manrope", system-ui, sans-serif;
  --l6-r-sm: 8px;
  --l6-r-md: 12px;
  --l6-r-lg: 16px;
  --l6-space-xs: 8px;
  --l6-space-sm: 16px;
  --l6-space-md: 24px;
  --l6-space-lg: 40px;
  --l6-space-xl: 80px;
  --l6-container: min(1200px, 100% - 48px);
  --l6-top-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--l6-top-h);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-l6-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--l6-font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--l6-white);
  background: var(--l6-bg);
  -webkit-font-smoothing: antialiased;
}

.l6-container {
  width: var(--l6-container);
  margin-inline: auto;
}

/* ——— Header ——— */
.l6-top {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding-block: 0;
  transition: background 0.28s ease, box-shadow 0.28s ease;
}

.l6-top.is-scrolled {
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--l6-shadow);
}

.l6-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--l6-space-md);
  min-height: var(--l6-top-h);
}

.l6-logo img {
  display: block;
  max-height: 28px;
  width: auto;
  height: auto;
}

.l6-top__nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.l6-top__nav a {
  color: var(--l6-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.l6-top__nav a:hover {
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 880px) {
  .l6-top__nav {
    display: flex;
  }
}

.l6-top__cta {
  flex-shrink: 0;
}

/* ——— Type ——— */
.l6-eyebrow {
  margin: 0 0 var(--l6-space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--l6-muted);
}

.l6-eyebrow--accent {
  color: var(--l6-accent);
}

.l6-h2 {
  margin: 0;
  font-family: var(--l6-font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.l6-h2--sm {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
}

.l6-section__head {
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: var(--l6-space-lg);
  text-align: center;
}

.l6-section__lead {
  margin: var(--l6-space-md) auto 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--l6-muted);
  text-align: center;
}

.l6-section__lead strong {
  color: var(--l6-white);
  font-weight: 600;
}

.l6-section__cta {
  margin-top: var(--l6-space-lg);
  display: flex;
  justify-content: center;
}

/* ——— Buttons ——— */
.l6-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--l6-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--l6-r-md);
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.2s ease;
}

.l6-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.l6-btn--lg {
  padding: 0.95rem 1.65rem;
  font-size: 1rem;
}

.l6-btn--primary {
  background: var(--l6-accent);
  color: var(--l6-white);
}

.l6-btn--primary:hover {
  background: var(--l6-accent-hover);
  transform: translateY(-1px);
}

.l6-btn--ghost {
  background: transparent;
  color: var(--l6-white);
  border-color: var(--l6-border);
}

.l6-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

/* ——— Hero ——— */
.l6-hero {
  position: relative;
  padding-top: calc(var(--l6-top-h) + clamp(4rem, 10vw, 7rem));
  padding-bottom: clamp(4rem, 10vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}

.l6-hero__bg {
  position: absolute;
  inset: 0;
  background: url("bg-hero.jpg") center center / cover no-repeat;
  z-index: -2;
}

.l6-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* camada uniforme — aumenta contraste do texto sobre o mapa */
    linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)),
    /* borda superior */
    linear-gradient(to bottom, rgba(0, 0, 0, 0.94) 0%, transparent 32%),
    /* borda inferior */
    linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, transparent 38%),
    /* borda esquerda */
    linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, transparent 34%),
    /* borda direita */
    linear-gradient(to left, rgba(0, 0, 0, 0.9) 0%, transparent 34%),
    /* escurecimento central (área do título) */
    radial-gradient(
      ellipse 88% 72% at 50% 46%,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.68) 45%,
      rgba(0, 0, 0, 0.78) 100%
    );
}

.l6-hero__inner {
  position: relative;
  display: flex;
  justify-content: center;
}

.l6-hero__langs {
  display: flex;
  justify-content: center;
  gap: var(--l6-space-xs);
  margin-bottom: var(--l6-space-md);
}

.l6-hero__langs span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--l6-r-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.l6-eyebrow--light {
  color: rgba(255, 255, 255, 0.55);
}

.l6-hero__copy {
  width: 100%;
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

.l6-hero__title {
  margin: 0 0 var(--l6-space-md);
  font-family: var(--l6-font-display);
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.l6-hero__lead {
  margin: 0 auto var(--l6-space-lg);
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.0625rem;
  max-width: 36rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.l6-hero__author {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 auto var(--l6-space-lg);
  padding: 0.35rem 0.85rem 0.35rem 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.l6-hero__author-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.l6-hero__author-text {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.l6-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--l6-space-sm);
  justify-content: center;
}

@media (max-width: 520px) {
  .l6-hero__actions .l6-btn {
    width: 100%;
  }
}

/* ——— Sections ——— */
.l6-section {
  padding-block: var(--l6-space-xl);
}

.l6-section--tight {
  padding-block: calc(var(--l6-space-xl) * 0.85);
}

.l6-section--surface {
  background: #111111;
  border-block: 1px solid var(--l6-border);
}

.l6-section--compact {
  padding-block: var(--l6-space-lg);
}

/* ——— Problem ——— */
#problema .l6-section__head {
  margin-bottom: var(--l6-space-xl);
}

.l6-problem__items {
  display: grid;
  gap: 1px;
  border: 1px solid var(--l6-border);
  border-radius: var(--l6-r-lg);
  overflow: hidden;
  margin: 0;
  background: var(--l6-border);
}

@media (min-width: 720px) {
  .l6-problem__items {
    grid-template-columns: 1fr 1fr;
  }
}

.l6-pitem {
  display: flex;
  gap: var(--l6-space-md);
  align-items: flex-start;
  padding: var(--l6-space-lg);
  background: var(--l6-bg);
  transition: background 0.2s ease;
}

.l6-pitem:hover {
  background: #0f0f0f;
}

.l6-pitem__num {
  flex-shrink: 0;
  font-family: var(--l6-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--l6-accent);
  line-height: 1;
  margin-top: 0.2rem;
}

.l6-pitem__content {
  min-width: 0;
}

.l6-pitem__title {
  margin: 0 0 var(--l6-space-xs);
  font-family: var(--l6-font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.l6-pitem__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--l6-muted);
}

.l6-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--l6-gray-light);
}

.l6-list li {
  margin-bottom: 0.65rem;
}

.l6-list li::marker {
  color: var(--l6-accent);
}

.l6-list--check {
  list-style: none;
  padding-left: 0;
}

.l6-list--check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.l6-list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--l6-accent);
  box-shadow: 0 0 0 2px var(--l6-accent-soft);
}

.l6-list--inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--l6-space-md);
}

.l6-list--inline li {
  margin: 0;
  color: var(--l6-muted);
  font-size: 0.9375rem;
}

.l6-list--inline li::before {
  content: "·";
  margin-right: 0.5rem;
  color: var(--l6-accent);
}

.l6-pullquote {
  margin: 0;
  padding: var(--l6-space-lg);
  border-radius: var(--l6-r-lg);
  background: var(--l6-surface);
  border: 1px solid var(--l6-border);
  text-align: left;
  align-self: center;
}

.l6-pullquote p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--l6-gray-light);
}

.l6-pullquote strong {
  color: var(--l6-white);
  font-weight: 600;
}

.l6-compare {
  display: grid;
  gap: var(--l6-space-md);
}

@media (min-width: 640px) {
  .l6-compare {
    grid-template-columns: 1fr 1fr;
    gap: var(--l6-space-md);
  }
}

.l6-compare__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 7.5rem;
  padding: var(--l6-space-md) var(--l6-space-lg);
  border-radius: var(--l6-r-lg);
  border: 1px solid var(--l6-border);
}

.l6-compare__col--bad {
  background: rgba(255, 255, 255, 0.03);
}

.l6-compare__col--good {
  background: var(--l6-accent-soft);
  border-color: rgba(19, 84, 237, 0.4);
}

.l6-compare__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--l6-space-sm);
  color: var(--l6-muted);
}

.l6-compare__col--good .l6-compare__label {
  color: #93b4ff;
}

.l6-compare__body {
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--l6-white);
  text-align: left;
}

/* ——— Features grid ——— */
.l6-section--surface .l6-section__head {
  margin-bottom: var(--l6-space-xl);
}

.l6-features {
  display: grid;
  gap: var(--l6-space-lg);
}

@media (min-width: 720px) {
  .l6-features {
    grid-template-columns: 1fr 1fr;
  }
}

.l6-card {
  padding: var(--l6-space-md);
  border-radius: var(--l6-r-lg);
  background: var(--l6-surface);
  border: 1px solid var(--l6-border);
  transition: border-color 0.22s ease;
}

.l6-card:hover {
  border-color: rgba(19, 84, 237, 0.35);
}

.l6-card__head {
  display: flex;
  align-items: center;
  gap: var(--l6-space-sm);
  margin-bottom: var(--l6-space-md);
}

.l6-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--l6-r-md);
  background: var(--l6-accent-soft);
  color: #93b4ff;
}

.l6-card__title {
  margin: 0;
  font-family: var(--l6-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.l6-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--l6-muted);
  text-align: left;
}

/* ——— Proof ——— */
.l6-proof {
  display: grid;
  gap: var(--l6-space-lg);
  align-items: start;
}

@media (min-width: 840px) {
  .l6-proof {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    align-items: center;
    gap: var(--l6-space-xl);
  }
}

.l6-proof__content {
  max-width: 38rem;
  min-width: 0;
}

.l6-proof__lead {
  margin: 0 0 var(--l6-space-md);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--l6-gray-light);
}

.l6-proof__content .l6-list--check {
  margin: 0;
}

.l6-proof__content .l6-list--check li {
  margin-bottom: 0.9rem;
}

.l6-proof__support {
  margin: var(--l6-space-md) 0 0;
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--l6-muted);
}

.l6-chart {
  padding: var(--l6-space-lg) var(--l6-space-md) var(--l6-space-md);
  border-radius: var(--l6-r-lg);
  background: linear-gradient(165deg, rgba(19, 84, 237, 0.06) 0%, var(--l6-surface) 45%);
  border: 1px solid var(--l6-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.l6-chart__canvas-wrap {
  position: relative;
  width: 100%;
  height: min(260px, 48vw);
  min-height: 200px;
  margin-bottom: var(--l6-space-md);
}

.l6-chart__canvas-wrap canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.l6-chart__caption {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--l6-muted);
  line-height: 1.55;
  text-align: center;
}

/* ——— Offer ——— */
.l6-offer__main {
  max-width: 40rem;
  margin-inline: auto;
}

.l6-offer__main > .l6-eyebrow,
.l6-offer__main > .l6-h2 {
  text-align: center;
}

.l6-offer__main > .l6-section__lead {
  margin-bottom: var(--l6-space-lg);
}

.l6-offer__timeline {
  position: relative;
  margin: 0 auto var(--l6-space-lg);
  padding-left: 3.75rem;
  display: grid;
  gap: var(--l6-space-md);
  counter-reset: offer-step;
}

.l6-offer__timeline::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(19, 84, 237, 0) 0%,
    rgba(19, 84, 237, 0.55) 14%,
    rgba(19, 84, 237, 0.25) 72%,
    rgba(19, 84, 237, 0) 100%
  );
}

.l6-offer-step {
  position: relative;
  counter-increment: offer-step;
}

.l6-offer-step__dot {
  position: absolute;
  left: 0.1rem;
  top: 0.7rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f67f5 0%, #1354ed 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 5px rgba(19, 84, 237, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.35);
  color: #fff;
  font-family: var(--l6-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.l6-offer-step__dot::before {
  content: counter(offer-step, decimal-leading-zero);
}

.l6-offer-step__card {
  padding: var(--l6-space-md);
  border-radius: var(--l6-r-md);
  border: 1px solid var(--l6-border);
  background: linear-gradient(165deg, rgba(19, 84, 237, 0.06) 0%, rgba(255, 255, 255, 0.02) 70%);
}

.l6-offer-step__meta {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93b4ff;
}

.l6-offer-step__title {
  margin: 0 0 0.5rem;
  font-family: var(--l6-font-display);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
}

.l6-offer-step__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--l6-muted);
}

.l6-offer-step--highlight .l6-offer-step__card {
  border-color: rgba(19, 84, 237, 0.35);
  background: linear-gradient(160deg, rgba(19, 84, 237, 0.12) 0%, rgba(255, 255, 255, 0.03) 65%);
}

@media (max-width: 919px) {
  .l6-offer__timeline {
    padding-left: 3.25rem;
    gap: 1rem;
  }

  .l6-offer__timeline::before {
    left: 1.15rem;
  }

  .l6-offer-step__dot {
    left: calc(-3.25rem + 0.15rem);
    top: 0.95rem;
    width: 1.85rem;
    height: 1.85rem;
    box-shadow:
      0 0 0 4px rgba(19, 84, 237, 0.15),
      0 6px 14px rgba(0, 0, 0, 0.3);
  }

  .l6-offer-step__card {
    padding: 1rem;
  }
}

@media (min-width: 920px) {
  .l6-offer__timeline {
    padding-left: 0;
    gap: var(--l6-space-lg);
  }

  .l6-offer__timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .l6-offer-step {
    min-height: 120px;
  }

  .l6-offer-step:nth-child(odd) {
    padding-right: calc(50% + 2.2rem);
  }

  .l6-offer-step:nth-child(even) {
    padding-left: calc(50% + 2.2rem);
  }

  .l6-offer-step__dot {
    left: 50%;
    transform: translateX(-50%);
  }
}

.l6-offer__prazo {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--l6-muted);
  text-align: center;
}

.l6-offer__x {
  display: inline-block;
  min-width: 1ch;
  font-weight: 700;
  color: var(--l6-white);
}

/* ——— Recent Projects (Swiper FreeMode) ——— */
.l6-projects__head {
  text-align: center;
  margin-bottom: var(--l6-space-md);
}

.l6-projects-swiper {
  position: relative;
  padding: 0.75rem 0;
}

.l6-projects-swiper::before,
.l6-projects-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.2rem, 10vw, 7rem);
  z-index: 5;
  pointer-events: none;
}

.l6-projects-swiper::before {
  left: -1px;
  background: linear-gradient(to right, rgba(11, 11, 11, 0.98) 0%, rgba(11, 11, 11, 0) 100%);
}

.l6-projects-swiper::after {
  right: -1px;
  background: linear-gradient(to left, rgba(11, 11, 11, 0.98) 0%, rgba(11, 11, 11, 0) 100%);
}

.l6-projects-swiper .swiper-wrapper {
  align-items: stretch;
}

.l6-projects-swiper .swiper-slide {
  width: clamp(220px, 58vw, 320px);
  background: transparent;
}

.l6-pslide {
  position: relative;
  height: clamp(320px, 72vw, 460px);
  overflow: hidden;
  border-radius: var(--l6-r-md);
  border: none;
  background: #000;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.33);
  transform: translateZ(0);
  isolation: isolate;
}

.l6-pslide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1.5px rgba(0, 0, 0, 0.62);
  z-index: 3;
}

.l6-pslide__media {
  position: absolute;
  inset: -10px;
  background: var(--slide-bg) center top / cover no-repeat;
  transform: scale(1.14) translateZ(0);
  transition: transform 0.65s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.l6-projects-swiper .swiper-slide-active .l6-pslide__media {
  transform: scale(1.06) translateZ(0);
}

.l6-pslide__overlay {
  display: none;
}

.l6-pslide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: clamp(1rem, 3.2vw, 1.45rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  gap: 0.28rem;
}

.l6-pslide__content::before {
  content: "";
  position: absolute;
  left: clamp(0.6rem, 2.2vw, 0.9rem);
  right: clamp(0.6rem, 2.2vw, 0.9rem);
  bottom: clamp(0.6rem, 2.2vw, 0.9rem);
  height: clamp(6.1rem, 19vw, 7.9rem);
  border-radius: 12px;
  background: linear-gradient(
    to top,
    rgba(8, 10, 16, 0.88) 0%,
    rgba(8, 10, 16, 0.78) 55%,
    rgba(8, 10, 16, 0.66) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.l6-pslide__content > * {
  position: relative;
  z-index: 1;
}

.l6-pslide__content .l6-eyebrow--light {
  margin: 0 0 0.15rem;
  color: rgba(255, 255, 255, 0.78);
}

.l6-pslide .l6-vslide__title {
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.l6-vslide__title {
  margin: 0;
  font-family: var(--l6-font-display);
  font-size: clamp(1.12rem, 2.9vw, 1.62rem);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

.l6-projects__pagination {
  display: flex;
  justify-content: center;
  margin-top: var(--l6-space-sm);
}

.l6-projects__pagination .swiper-pagination-bullet {
  width: 0.52rem;
  height: 0.52rem;
  opacity: 1;
  background: rgba(255, 255, 255, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.l6-projects__pagination .swiper-pagination-bullet-active {
  background: var(--l6-accent);
  transform: scale(1.15);
}

@media (min-width: 980px) {
  .l6-projects-swiper .swiper-slide {
    width: clamp(240px, 24vw, 330px);
  }
  .l6-pslide {
    height: clamp(360px, 46vw, 500px);
  }
}

/* ——— Testimonials ——— */
.l6-testimonials {
  display: grid;
  gap: var(--l6-space-md);
}

@media (min-width: 760px) {
  .l6-testimonials {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1180px) {
  .l6-testimonials {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.l6-testimonial {
  position: relative;
  padding: var(--l6-space-md);
  border-radius: var(--l6-r-md);
  border: 1px solid var(--l6-border);
  background: linear-gradient(165deg, rgba(19, 84, 237, 0.05) 0%, rgba(255, 255, 255, 0.01) 72%);
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.l6-testimonial::before {
  content: "“";
  position: absolute;
  top: 0.45rem;
  right: 0.75rem;
  font-family: var(--l6-font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: rgba(19, 84, 237, 0.28);
}

.l6-testimonial__quote {
  margin: 0 0 var(--l6-space-md);
  color: var(--l6-gray-light);
  font-size: 0.93rem;
  line-height: 1.62;
  flex: 1;
}

.l6-testimonial__name {
  margin: 0;
  font-family: var(--l6-font-display);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--l6-white);
}

.l6-testimonial__time {
  margin: 0.28rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--l6-muted);
}

/* ——— CTA ——— */
.l6-cta {
  padding-block: calc(var(--l6-space-xl) * 1.05);
  border-top: 1px solid var(--l6-border);
  background: linear-gradient(180deg, #0e0e12 0%, var(--l6-bg) 100%);
}

.l6-cta__inner {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.l6-cta__title {
  margin: 0 0 var(--l6-space-sm);
  font-family: var(--l6-font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.l6-cta__lead {
  margin: 0 0 var(--l6-space-lg);
  color: var(--l6-muted);
}

.l6-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--l6-space-sm);
  justify-content: center;
}

@media (max-width: 520px) {
  .l6-cta__actions .l6-btn {
    width: 100%;
  }
}

/* ——— Footer ——— */
.l6-foot {
  padding: var(--l6-space-md) 0 calc(var(--l6-space-lg) + env(safe-area-inset-bottom));
  border-top: 1px solid var(--l6-border);
}

.l6-foot__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  color: var(--l6-muted);
  text-align: center;
  padding-inline: 0.5rem;
}

.l6-foot__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.l6-foot__logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 28px;
}

.l6-foot__copy {
  display: block;
  white-space: normal;
  max-width: 100%;
  line-height: 1.45;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .l6-foot__copy {
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .l6-foot__inner {
    gap: 0.4rem;
    font-size: 0.76rem;
  }

  .l6-foot__logo img {
    max-height: 24px;
  }
}

.l6-foot a {
  color: var(--l6-gray-light);
  text-decoration: none;
}

.l6-foot a:hover {
  color: var(--l6-white);
}

/* ——— Popup orçamento ——— */
.l6-popup {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
}

.l6-popup.is-open {
  display: block;
}

.l6-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.l6-popup__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: var(--l6-r-lg);
  border: 1px solid var(--l6-border);
  background:
    linear-gradient(165deg, rgba(6, 10, 20, 0.95) 0%, rgba(6, 8, 12, 0.95) 100%),
    url("bg-hero.jpg") center center / cover no-repeat;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
  padding: clamp(1rem, 3.5vw, 1.4rem);
  opacity: 0;
  transform: translate(-50%, -42%);
  transition: opacity 0.32s ease, transform 0.36s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.l6-popup.is-open .l6-popup__backdrop {
  opacity: 1;
}

.l6-popup.is-open .l6-popup__dialog {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.l6-popup__close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  border: none;
  background: transparent;
  color: var(--l6-muted);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.l6-popup__title {
  margin: 0;
  font-family: var(--l6-font-display);
  font-size: 1.35rem;
}

.l6-popup__subtitle {
  margin: 0.35rem 0 1rem;
  color: var(--l6-muted);
  font-size: 0.92rem;
}

.l6-popup__form {
  display: grid;
  gap: 0.8rem;
}

.l6-popup__field {
  display: grid;
  gap: 0.35rem;
}

.l6-popup__field span {
  font-size: 0.82rem;
  color: var(--l6-gray-light);
}

.l6-popup__field input,
.l6-popup__field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--l6-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--l6-white);
  padding: 0.72rem 0.8rem;
  font: inherit;
}

.l6-popup__field textarea {
  resize: vertical;
  min-height: 120px;
}

.l6-popup__field input:focus,
.l6-popup__field textarea:focus {
  outline: none;
  border-color: rgba(19, 84, 237, 0.55);
  box-shadow: 0 0 0 3px rgba(19, 84, 237, 0.2);
}

.l6-popup__submit {
  width: 100%;
  margin-top: 0.2rem;
}

/* ——— Scroll reveal ——— */
[data-l6-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-l6-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
