/* ========== HERO — estilo Power: foto full-bleed + texto legível à esquerda ========== */
.hero {
  position: relative;
  min-height: min(100dvh, 820px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 1.5rem) 0 4rem;
  overflow: hidden;
  color: var(--ink);
  background: #eef2f8;
}

.hero__media {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: brightness(0.92) saturate(0.92);
  transform: scale(1.03);
}

/* Véu: esquerda clara/legível, direita foto (como Power) */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      95deg,
      rgba(238, 242, 248, 0.97) 0%,
      rgba(238, 242, 248, 0.94) 34%,
      rgba(238, 242, 248, 0.55) 52%,
      rgba(12, 24, 48, 0.15) 72%,
      rgba(12, 24, 48, 0.28) 100%
    );
  pointer-events: none;
}

/* Monograma gigante “tipo Power brand-mark” — sutil, não adesivo em foto */
.hero__mark {
  position: absolute;
  z-index: 1;
  right: -6%;
  bottom: -8%;
  width: min(52vw, 520px);
  height: auto;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  transform: rotate(-8deg);
  filter: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: min(560px, 58vw);
  /* sem caixa — só “marca texto” nas linhas */
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

@media (max-width: 800px) {
  .hero__content {
    max-width: 100%;
  }
}

/* realce de linha (estilo marca-texto), translúcido */
.mark-line {
  display: inline;
  padding: 0.08em 0.22em;
  margin: 0 -0.05em;
  border-radius: 0.12em;
  background: rgba(238, 242, 248, 0.62);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: none;
}

.hero .proof-line .mark-line {
  background: rgba(238, 242, 248, 0.55);
  padding: 0.12em 0.35em;
}

.hero .eyebrow .mark-line {
  background: rgba(232, 241, 255, 0.7);
  color: var(--singel-deep);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 1.1rem;
  color: var(--navy-deep);
}

.hero h1 .mark-line {
  background: rgba(238, 242, 248, 0.7);
}

.hero h1 .mark-line--accent {
  color: var(--singel);
  font-weight: 600;
  background: rgba(232, 241, 255, 0.72);
}

.hero h1 .mark-line {
  display: inline;
}

.hero__lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 1.6rem;
  line-height: 1.65;
}

.hero__lead .mark-line {
  background: rgba(238, 242, 248, 0.58);
  color: var(--ink);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero .btn--ghost {
  border-color: rgba(27, 51, 95, 0.22);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.55);
}

.hero .btn--ghost:hover {
  background: #fff;
  border-color: var(--singel);
  color: var(--singel);
}

.proof-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.proof-line i {
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background: var(--singel);
  display: inline-block;
  transform: rotate(45deg);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-cue__bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--singel), transparent);
  animation: cuePulse 1.8s ease-in-out infinite;
}

@keyframes cuePulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.7);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 800px) {
  .hero {
    min-height: auto;
    padding-bottom: 3.5rem;
  }
  .hero__media-img {
    object-position: center 30%;
    opacity: 0.35;
  }
  .hero__veil {
    background: linear-gradient(180deg, rgba(238, 242, 248, 0.96) 40%, rgba(238, 242, 248, 0.88) 100%);
  }
  .hero__mark {
    width: 70vw;
    opacity: 0.06;
  }
}

/* ========== STAT STRIP ========== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: -2.25rem;
  position: relative;
  z-index: 4;
}

.stat-strip article {
  background: #fff;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.stat-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.stat-strip span {
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== BRAND BAR ========== */
.brand-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 3rem;
  padding: 1.5rem 0;
}

.brand-bar__link {
  display: inline-flex;
  align-items: center;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-bar__link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.brand-bar img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: none;
}

.brand-bar img.brand-bar__singel {
  height: 64px;
  max-width: 220px;
}

.brand-bar__label {
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: -0.25rem;
}

@media (max-width: 700px) {
  .brand-bar img {
    height: 44px;
  }
  .brand-bar img.brand-bar__singel {
    height: 52px;
  }
}

/* ========== SERVICE GRID ========== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  min-height: 280px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  isolation: isolate;
}

.service-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
  z-index: -2;
}

.service-card:hover .service-card__bg {
  transform: scale(1.06);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(8, 16, 36, 0.92) 10%, rgba(8, 16, 36, 0.25) 70%);
}

.service-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  color: #fff;
}

.service-card p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.service-card .link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: #9ec5ff;
}

/* ========== SPLIT ========== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.split__visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* sem monograma colado em foto — vira “reflexo” confuso */
.split__visual .mono-img,
.split__visual .brand-mark {
  display: none;
}

/* ========== TIMELINE CARROSSEL (sempre dentro de .shell) ========== */
.timeline-carousel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.timeline-carousel__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-carousel__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.timeline-carousel__btn:hover {
  border-color: var(--singel);
  color: var(--singel);
}

.timeline-carousel__viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--r-lg);
}

.timeline-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.timeline-card {
  flex: 0 0 min(320px, 85%);
  max-width: 340px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
  min-height: 190px;
  box-sizing: border-box;
}

.timeline-card.is-active {
  border-color: rgba(0, 102, 255, 0.35);
  box-shadow: var(--shadow);
}

.timeline-card__year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--singel);
  margin-bottom: 0.55rem;
}

.timeline-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--ink);
}

.timeline-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.timeline-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
}

.timeline-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #c9d2e3;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.timeline-dots button.is-active {
  width: 22px;
  border-radius: 99px;
  background: var(--singel);
}

/* ========== MAPA DE ATUAÇÃO (Leaflet + OSM) ========== */
.actuation {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.25rem;
  align-items: stretch;
}

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

.actuation-map {
  height: 420px;
  min-height: 320px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #dfe8f5;
  z-index: 1;
}

.actuation-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-height: 420px;
  overflow: auto;
}

.actuation-list button {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.actuation-list button:hover,
.actuation-list button.is-active {
  border-color: rgba(0, 102, 255, 0.45);
  background: #f3f8ff;
  box-shadow: var(--shadow-sm);
  color: var(--singel-deep);
}

.actuation-list .code {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--singel);
  min-width: 1.75rem;
  font-weight: 700;
}

/* marcadores Leaflet */
.leaflet-container {
  font-family: var(--font);
}

.singel-map-marker {
  background: var(--singel);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 80, 180, 0.35);
}

.singel-map-marker.is-active {
  background: #1b335f;
  box-shadow: 0 0 0 6px rgba(0, 102, 255, 0.22);
}

/* ========== PORTFÓLIO GALERIA ========== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.9rem;
}

.portfolio-card {
  position: relative;
  grid-column: span 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 220px;
  background: var(--navy-deep);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.portfolio-card--wide {
  grid-column: span 8;
  min-height: 280px;
}

.portfolio-card--tall {
  min-height: 300px;
}

@media (max-width: 900px) {
  .portfolio-card,
  .portfolio-card--wide {
    grid-column: span 6;
  }
}

@media (max-width: 560px) {
  .portfolio-card,
  .portfolio-card--wide {
    grid-column: span 12;
    min-height: 220px;
  }
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out);
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 16, 36, 0.88) 0%, rgba(8, 16, 36, 0.15) 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.portfolio-card__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.1rem 1.2rem 1.15rem;
  color: #fff;
}

.portfolio-card__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
}

.portfolio-card__meta span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}

.portfolio-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ========== PROCESS STORY (sticky ciclo) ========== */
.process-story {
  position: relative;
  height: 180vh;
  background: var(--navy-deep);
  color: #fff;
}

.process-story__sticky {
  position: sticky;
  top: var(--header-h);
  /* altura da viewport útil — sem max-height que cortava cards */
  height: calc(100vh - var(--header-h));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 1.25rem 0 1.5rem;
  box-sizing: border-box;
}

.process-story__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
  align-items: stretch;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  height: 100%;
  min-height: 0;
}

@media (max-width: 900px) {
  .process-story__layout {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
}

.process-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.process-story h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.55rem;
}

.process-story__copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.process-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  margin: 1rem 0 0.65rem;
  overflow: hidden;
  flex-shrink: 0;
}

.process-progress span {
  display: block;
  height: 100%;
  width: 8%;
  background: linear-gradient(90deg, var(--singel), #7eb6ff);
  border-radius: 99px;
  transition: width 0.1s linear;
}

.process-step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
}

/* lista de etapas: cabe inteira, sem cortar 1º/último card */
.process-labels {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 0;
  height: 100%;
  overflow: visible;
  justify-content: center;
  padding: 0.15rem 0;
}

.process-labels > div {
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  opacity: 0.38;
  transform: translateX(6px);
  transition: opacity var(--ease), transform var(--ease), border-color var(--ease), background var(--ease);
  flex: 0 0 auto;
}

.process-labels > div.is-active {
  opacity: 1;
  transform: none;
  border-color: rgba(0, 102, 255, 0.45);
  background: rgba(0, 102, 255, 0.12);
}

.process-labels strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.1rem;
  color: #fff;
  font-size: 0.92rem;
}

.process-labels span {
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.68);
  /* 1–2 linhas para caber os 6 cards na viewport */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* watermark sutil no corpo (estilo Power), não adesivo */
.process-story__mark {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: min(42vw, 380px);
  opacity: 0.055;
  filter: none;
  pointer-events: none;
  transform: rotate(-6deg);
}

/* ========== PORTFOLIO LIST ========== */
.ref-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 700px) {
  .ref-list {
    grid-template-columns: 1fr;
  }
}

.ref-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
}

.ref-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--singel);
  flex-shrink: 0;
}

/* ========== VALUES ========== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

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

/* ========== STATES MAP ========== */
.states {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.states span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--fog-2);
  color: var(--navy);
  border: 1px solid var(--line);
}

/* ========== PAGE HERO (inner) — monograma bleed “coca-cola” ========== */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 2.75rem) 0 2.75rem;
  background: linear-gradient(160deg, var(--navy-deep), var(--navy) 55%, #184a9e);
  color: #fff;
  overflow: hidden;
  min-height: 280px;
}

.page-hero .shell {
  position: relative;
  z-index: 2;
}

/* monograma grande, cortado pela faixa (bleed) */
.page-hero__bleed {
  position: absolute;
  z-index: 1;
  right: -10%;
  top: 50%;
  transform: translateY(-48%);
  height: 168%;
  width: auto;
  max-width: none;
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
}

@media (max-width: 700px) {
  .page-hero__bleed {
    right: -22%;
    height: 130%;
    opacity: 0.14;
  }
}

.page-hero .brand-mark,
.page-hero .mono-img:not(.page-hero__bleed) {
  display: none;
}

.section-head .mono-inline {
  display: inline-flex;
  margin-right: 0.4rem;
  color: var(--singel);
  vertical-align: -0.12em;
}

.section-head .mono-inline .mono {
  width: 16px;
  height: 22px;
}

/* cards: monograma no corpo, com hover */
.card__mono {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e8f1ff, #f5f8ff);
  color: var(--singel);
  margin-bottom: 1rem;
  transition: transform 0.35s var(--ease-out), background 0.35s ease;
}

.card__mono .mono {
  width: 20px;
  height: 26px;
}

.card:hover .card__mono {
  transform: scale(1.08) rotate(-6deg);
  background: #e0ecff;
}

.card__watermark {
  position: absolute;
  right: -12px;
  bottom: -16px;
  width: 96px;
  height: 120px;
  opacity: 0;
  color: var(--singel);
  transition: opacity 0.35s ease, transform 0.45s var(--ease-out);
  pointer-events: none;
}

.card__watermark .mono {
  width: 100%;
  height: 100%;
}

.card:hover .card__watermark {
  opacity: 0.08;
  transform: rotate(-8deg) scale(1.05);
}

/* sem monograma em cima de foto de serviço */
.service-card .mono-corner {
  display: none;
}

/* watermark de seção no corpo (Power-like) */
.section-mark {
  position: absolute;
  right: -3%;
  top: 12%;
  width: min(38vw, 340px);
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
  transform: rotate(-7deg);
  z-index: 0;
}

.section > .shell {
  position: relative;
  z-index: 1;
}

/*
 * Título interativo: monograma aparece no centro e “desmonta”
 * (metade esq / dir) enquanto o texto se forma — só onde fizer sentido.
 */
.title-split {
  position: relative;
  display: block; /* nunca na mesma linha do eyebrow */
  width: fit-content;
  max-width: 100%;
  margin: 0 0 0.85rem;
  clear: both;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  color: var(--navy-deep);
  cursor: default;
  isolation: isolate;
}

/* herda tamanho do contexto (ex.: section-head / split) */
.section-head .title-split,
.split h2.title-split,
.section h2.title-split {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem) !important;
  margin: 0 0 0.75rem !important;
  line-height: 1.15;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem) !important;
}

.title-split--on-dark {
  color: #fff;
}

.title-split--on-dark .title-split__half {
  background-color: #9ec5ff;
}

.title-split--on-dark:hover .title-split__word,
.title-split--on-dark:focus-within .title-split__word {
  color: #fff;
}

@keyframes titleSplitRevealDark {
  0% {
    opacity: 0.15;
    letter-spacing: 0.08em;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    letter-spacing: -0.02em;
    filter: none;
    color: #fff;
  }
}

.title-split--on-dark:hover .title-split__word,
.title-split--on-dark:focus-within .title-split__word {
  animation-name: titleSplitRevealDark;
}

.title-split__word {
  display: inline-block;
  position: relative;
  z-index: 1;
  transition:
    letter-spacing 0.45s var(--ease-out),
    color 0.35s ease,
    opacity 0.25s ease;
}

.title-split__fx {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 66px;
  margin: -33px 0 0 -26px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.title-split__half {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 66px;
  background-color: var(--singel);
  -webkit-mask: url("../assets/brand/monogram-s.png") center / contain no-repeat;
  mask: url("../assets/brand/monogram-s.png") center / contain no-repeat;
  transition: transform 0.55s var(--ease-out), opacity 0.4s ease;
}

/* metades reais do monograma (clip do S) */
.title-split__half--l {
  clip-path: inset(0 50% 0 0);
}

.title-split__half--r {
  clip-path: inset(0 0 0 50%);
}

.title-split:hover .title-split__fx,
.title-split:focus-within .title-split__fx {
  opacity: 1;
}

.title-split:hover .title-split__half--l,
.title-split:focus-within .title-split__half--l {
  transform: translateX(-88px);
  opacity: 0;
  transition-delay: 0.14s;
}

.title-split:hover .title-split__half--r,
.title-split:focus-within .title-split__half--r {
  transform: translateX(88px);
  opacity: 0;
  transition-delay: 0.14s;
}

/* texto “some” no meio e volta formando o título */
.title-split:hover .title-split__word,
.title-split:focus-within .title-split__word {
  animation: titleSplitReveal 0.7s var(--ease-out) 0.12s both;
}

@keyframes titleSplitReveal {
  0% {
    opacity: 0.15;
    letter-spacing: 0.08em;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    letter-spacing: -0.02em;
    filter: none;
    color: var(--navy-deep);
  }
}

@media (prefers-reduced-motion: reduce) {
  .title-split:hover .title-split__word,
  .title-split:focus-within .title-split__word {
    animation: none;
    opacity: 1;
    letter-spacing: inherit;
    color: var(--navy-deep);
  }
  .title-split__fx {
    display: none;
  }
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  max-width: 18ch;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
  margin: 0;
}

/* ========== CTA BAND ========== */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(125deg, var(--singel-deep), var(--singel) 50%, #3d8bff);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band .mono-img,
.cta-band .brand-mark {
  position: absolute;
  right: -2%;
  bottom: -18%;
  width: min(34vw, 220px);
  opacity: 0.12;
  filter: none;
  pointer-events: none;
  transform: rotate(-8deg);
}

/* ========== DETAIL BLOCKS ========== */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.detail-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}

.detail-grid h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.detail-grid p {
  margin: 0;
  font-size: 0.94rem;
}

.bullet-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.bullet-list li {
  margin-bottom: 0.35rem;
}
