/* ======================================================================
   CENTER CLEAN — DIREÇÃO DIGITAL 2026
   Camada final de direção de arte e experiência. Carregada depois dos
   estilos legados para modernizar todas as páginas sem perder componentes.
   ====================================================================== */

:root {
  --cc-navy: #06172d;
  --cc-navy-2: #0a2345;
  --cc-blue: #0757d6;
  --cc-blue-bright: #1b72ff;
  --cc-sky: #b9dcff;
  --cc-ice: #eef5fc;
  --cc-mist: #f6f9fc;
  --cc-line: rgba(6, 23, 45, 0.12);
  --cc-muted: #526173;
  --cc-mint: #75e0bd;
  --cc-shadow: 0 24px 80px rgba(6, 23, 45, 0.14);
  --cc-shadow-soft: 0 14px 44px rgba(6, 23, 45, 0.09);
  --cc-radius-sm: 14px;
  --cc-radius: 24px;
  --cc-radius-lg: 38px;
  --cc-container: 1320px;
  --container-max: var(--cc-container);
}

html { scroll-padding-top: 96px; }

body {
  color: var(--cc-navy);
  background: var(--cc-mist);
  font-size: 16px;
  line-height: 1.65;
}

::selection { color: #fff; background: var(--cc-blue); }

.container { padding-inline: clamp(20px, 4vw, 48px); }
.container-narrow { padding-inline: clamp(20px, 4vw, 36px); }

h1, h2, h3, h4 {
  color: var(--cc-navy);
  letter-spacing: -0.035em;
}

.section {
  padding-block: clamp(76px, 9vw, 132px);
}

.section-alt {
  background: var(--cc-ice);
}

.section-alt::before,
.hero-shell::before,
footer.site-footer::before {
  opacity: 0.48;
}

/* Navegação: uma barra estável, leve e com prioridade para conversão. */
.nav {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(6, 23, 45, 0.08);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.nav.nav--scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(6, 23, 45, 0.08);
}

.nav .container {
  min-height: 82px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-logo img { height: 42px; }

.nav-links {
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 0.86rem;
}

.nav-links a {
  color: #3d4b5b;
  padding: 11px 0;
}

.nav-links a::after {
  bottom: 4px;
  height: 2px;
  background: var(--cc-blue);
}

.nav-cta {
  min-height: 46px;
  padding-inline: 20px;
  background: var(--cc-navy);
  box-shadow: none;
}

.nav-cta:hover {
  background: var(--cc-blue);
  box-shadow: 0 12px 30px rgba(7, 87, 214, 0.25);
}

.nav-burger {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.mobile-menu {
  padding: 12px 20px 24px;
  box-shadow: 0 24px 36px rgba(6, 23, 45, 0.12);
}

.mobile-menu a { padding: 13px 14px; }

/* Botões */
.btn {
  min-height: 50px;
  padding: 13px 24px;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--cc-blue);
  box-shadow: 0 14px 34px rgba(7, 87, 214, 0.26);
}

.btn-primary:hover {
  background: var(--cc-blue-bright);
  box-shadow: 0 18px 44px rgba(7, 87, 214, 0.34);
}

.btn-dark {
  color: #fff;
  background: var(--cc-navy);
  box-shadow: 0 16px 38px rgba(6, 23, 45, 0.2);
}

.btn-dark:hover {
  transform: translateY(-2px);
  background: #0d2c55;
}

.btn-light {
  color: var(--cc-navy);
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 23, 45, 0.14);
}

.btn-light:hover { transform: translateY(-2px); }

.btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cc-blue);
  font-weight: 750;
  font-size: 0.92rem;
}

.btn-inline svg {
  transition: transform 0.25s ease;
}

.btn-inline:hover svg { transform: translateX(5px); }

/* Páginas internas: hero e componentes existentes recebem o novo sistema. */
body:not(.page-home) .hero-shell {
  background:
    radial-gradient(circle at 82% 15%, rgba(27, 114, 255, 0.32), transparent 32%),
    radial-gradient(circle at 15% 100%, rgba(117, 224, 189, 0.13), transparent 33%),
    linear-gradient(145deg, var(--cc-navy), var(--cc-navy-2));
  border-radius: 0 0 clamp(30px, 5vw, 64px) clamp(30px, 5vw, 64px);
}

body:not(.page-home) .hero-grid {
  min-height: 520px;
  padding-block: clamp(82px, 10vw, 142px);
}

body:not(.page-home) .hero-shell h1 {
  max-width: 17ch;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  line-height: 0.98;
}

body:not(.page-home) .hero-shell .lede {
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
  line-height: 1.65;
}

.section-head h2,
body:not(.page-home) .section h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.03;
}

.section-head { max-width: 850px; }

.section-head p {
  max-width: 62ch;
  color: var(--cc-muted);
  font-size: 1.04rem;
}

.section-index,
.eyebrow {
  color: var(--cc-blue);
  letter-spacing: 0.14em;
}

.card-3d,
.credential-item,
.segment-detail-card,
.blog-card,
.faq,
.num-bg-card {
  border-color: var(--cc-line);
  border-radius: var(--cc-radius);
  box-shadow: none;
}

.card-3d:hover,
.credential-item:hover,
.segment-detail-card:hover,
.blog-card:hover {
  border-color: rgba(7, 87, 214, 0.28);
  box-shadow: var(--cc-shadow-soft);
}

.media-proof,
.blog-card-media,
.map-frame {
  border-radius: var(--cc-radius);
}

.mid-cta,
.wedge-banner,
.quote-block {
  border-radius: var(--cc-radius-lg);
}

.faq {
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq summary { padding: 22px 24px; }
.faq p { padding: 0 24px 24px; }

/* ======================================================================
   HOME — composição editorial própria
   ====================================================================== */

.page-home { background: #fff; }

.cc-hero {
  position: relative;
  min-height: min(860px, calc(100svh - 82px));
  color: #fff;
  background: var(--cc-navy);
  overflow: hidden;
  isolation: isolate;
}

.cc-hero .hero-video-slot { z-index: -3; }

.cc-hero .hero-video-slot video {
  transform: scale(1.015);
  filter: saturate(0.82) contrast(1.06);
}

.cc-hero .hero-video-overlay {
  background:
    linear-gradient(90deg, rgba(4, 18, 37, 0.95) 0%, rgba(4, 18, 37, 0.86) 42%, rgba(4, 18, 37, 0.3) 72%, rgba(4, 18, 37, 0.22) 100%),
    linear-gradient(0deg, rgba(4, 18, 37, 0.76) 0%, transparent 45%);
}

.cc-hero.has-video .hero-video-overlay {
  background:
    linear-gradient(90deg, rgba(4, 18, 37, 0.95) 0%, rgba(4, 18, 37, 0.82) 40%, rgba(4, 18, 37, 0.24) 74%, rgba(4, 18, 37, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 18, 37, 0.74) 0%, transparent 48%);
}

.cc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.cc-hero__inner {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(82px, 10vw, 138px);
  padding-bottom: clamp(104px, 13vw, 170px);
}

.cc-hero__content { max-width: 1020px; }

.cc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cc-kicker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cc-mint);
  box-shadow: 0 0 0 5px rgba(117, 224, 189, 0.14);
}

.cc-hero h1 {
  max-width: 15ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 6.3vw, 6.3rem);
  font-weight: 800;
  line-height: 0.91;
  letter-spacing: -0.067em;
  text-wrap: balance;
}

.cc-hero h1 em {
  color: var(--cc-sky);
  font-style: normal;
}

.cc-hero__lede {
  max-width: 58ch;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.58;
}

.cc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.cc-hero__actions .btn-ghost-light {
  min-height: 52px;
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.28);
}

.cc-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.cc-hero__fact {
  display: grid;
  gap: 2px;
}

.cc-hero__fact strong {
  color: #fff;
  font-size: 0.95rem;
}

.cc-hero__fact span {
  color: rgba(255,255,255,0.58);
  font-size: 0.78rem;
}

.cc-hero__signal {
  position: absolute;
  right: clamp(24px, 5vw, 74px);
  bottom: clamp(26px, 4vw, 54px);
  width: min(340px, calc(100% - 48px));
  padding: 20px;
  color: #fff;
  background: rgba(8, 30, 58, 0.72);
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.2);
}

.cc-hero__signal-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,0.63);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cc-hero__signal-label::after {
  content: "";
  width: 38px;
  height: 8px;
  border-radius: 99px;
  background: var(--cc-mint);
  box-shadow: 0 0 18px rgba(117, 224, 189, 0.65);
}

.cc-hero__signal strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.25;
}

.cc-intro-rail {
  position: relative;
  z-index: 4;
  margin-top: -22px;
}

.cc-intro-rail__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--cc-line);
  border-radius: 26px;
  box-shadow: var(--cc-shadow);
}

.cc-intro-card {
  min-height: 158px;
  padding: 28px;
  border-right: 1px solid var(--cc-line);
  transition: background 0.25s ease, transform 0.25s ease;
}

.cc-intro-card:last-child { border-right: 0; }
.cc-intro-card:hover { background: var(--cc-ice); }

.cc-intro-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cc-intro-card__num {
  color: var(--cc-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.cc-intro-card svg { color: var(--cc-blue); }

.cc-intro-card h2 {
  margin: 22px 0 6px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.cc-intro-card p {
  color: var(--cc-muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

.cc-logo-band {
  padding: 76px 0 92px;
  background: #fff;
}

.cc-logo-band__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
}

.cc-logo-band__head h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.cc-logo-band__head p {
  max-width: 42ch;
  color: var(--cc-muted);
  font-size: 0.9rem;
}

.cc-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--cc-line);
  border-left: 1px solid var(--cc-line);
}

.cc-logo-grid span {
  min-height: 128px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-right: 1px solid var(--cc-line);
  border-bottom: 1px solid var(--cc-line);
  background: #fff;
}

.cc-logo-grid img {
  max-width: 132px;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.67;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.cc-logo-grid span:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.cc-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: start;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.cc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cc-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cc-eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.cc-section-head h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 5.2rem);
  line-height: 0.96;
}

.cc-section-head__copy p {
  max-width: 60ch;
  color: var(--cc-muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.cc-section-head__copy .btn-inline { margin-top: 22px; }

.cc-method { background: var(--cc-mist); }

.cc-method__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.cc-method__media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--cc-radius-lg);
  box-shadow: var(--cc-shadow);
}

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

.cc-method__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px 22px;
  color: #fff;
  background: rgba(6, 23, 45, 0.78);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  backdrop-filter: blur(16px);
}

.cc-method__caption small {
  display: block;
  color: var(--cc-mint);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cc-method__caption strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
}

.cc-diagnostic-list {
  display: grid;
  gap: 12px;
}

.cc-diagnostic {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--cc-line);
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cc-diagnostic:hover {
  transform: translateX(5px);
  box-shadow: var(--cc-shadow-soft);
}

.cc-diagnostic__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--cc-blue);
  background: var(--cc-ice);
  border-radius: 16px;
}

.cc-diagnostic h3 {
  margin: 2px 0 6px;
  font-size: 1.05rem;
}

.cc-diagnostic p {
  color: var(--cc-muted);
  font-size: 0.9rem;
}

.cc-services {
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(117,224,189,0.16), transparent 30%),
    linear-gradient(140deg, #06172d 0%, #0a2c57 100%);
  border-radius: clamp(28px, 4vw, 56px);
  margin-inline: clamp(10px, 2vw, 28px);
  overflow: hidden;
}

.cc-services .cc-eyebrow { color: var(--cc-sky); }
.cc-services .cc-section-head h2 { color: #fff; }
.cc-services .cc-section-head__copy p { color: rgba(255,255,255,0.65); }

.cc-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-left: 1px solid rgba(255,255,255,0.15);
}

.cc-service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: background 0.28s ease;
}

.cc-service-card:hover { background: rgba(255,255,255,0.07); }

.cc-service-card__num {
  color: var(--cc-sky);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cc-service-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-top: 48px;
  color: var(--cc-mint);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
}

.cc-service-card h3 {
  margin: auto 0 10px;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.cc-service-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

.cc-segments { background: #fff; }

.cc-segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cc-segment-card {
  min-height: 248px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--cc-mist);
  border: 1px solid var(--cc-line);
  border-radius: 24px;
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.cc-segment-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: var(--cc-shadow-soft);
}

.cc-segment-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--cc-blue);
  background: #fff;
  border: 1px solid var(--cc-line);
  border-radius: 18px;
}

.cc-segment-card h3 {
  margin: auto 0 8px;
  font-size: 1.35rem;
}

.cc-segment-card p {
  color: var(--cc-muted);
  font-size: 0.86rem;
}

.cc-segment-card__arrow {
  position: absolute;
  right: 24px;
  top: 24px;
  color: var(--cc-blue);
}

.cc-segment-card { position: relative; }

.cc-lines { background: var(--cc-ice); }

.cc-line-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cc-brand-card {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border-radius: var(--cc-radius-lg);
  isolation: isolate;
}

.cc-brand-card--tork {
  color: #fff;
  background: linear-gradient(145deg, #09234b, #0b5db9);
}

.cc-brand-card--oleak {
  color: var(--cc-navy);
  background: linear-gradient(145deg, #fff, #dff4f8);
  border: 1px solid rgba(6,23,45,0.08);
}

.cc-brand-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.cc-brand-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cc-brand-card__logo {
  max-width: 145px;
  max-height: 58px;
  object-fit: contain;
}

.cc-brand-card__badge {
  padding: 8px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.68;
}

.cc-brand-card h3 {
  max-width: 12ch;
  margin: 42px 0 12px;
  color: inherit;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.96;
}

.cc-brand-card > p {
  max-width: 46ch;
  opacity: 0.7;
}

.cc-brand-card__products {
  min-height: 240px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
  margin: auto 0 26px;
}

.cc-brand-card__products img {
  max-width: 30%;
  max-height: 224px;
  object-fit: contain;
  filter: drop-shadow(0 28px 26px rgba(6,23,45,0.2));
  transition: transform 0.3s ease;
}

.cc-brand-card:hover .cc-brand-card__products img:nth-child(1) { transform: translateY(-8px) rotate(-2deg); }
.cc-brand-card:hover .cc-brand-card__products img:nth-child(2) { transform: translateY(-13px); }
.cc-brand-card:hover .cc-brand-card__products img:nth-child(3) { transform: translateY(-8px) rotate(2deg); }

.cc-brand-card--tork .btn-inline { color: #fff; }

.cc-proof { background: #fff; }

.cc-proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 14px;
}

.cc-proof-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 26px;
}

.cc-proof-card:first-child { grid-row: 1 / 3; }

.cc-proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(.2,.8,.2,1);
}

.cc-proof-card:hover img { transform: scale(1.035); }

.cc-proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,23,45,0.82), transparent 58%);
}

.cc-proof-card__text {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  color: #fff;
}

.cc-proof-card__text span {
  color: var(--cc-mint);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cc-proof-card__text h3 {
  max-width: 24ch;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.3rem, 2.2vw, 2.2rem);
}

.cc-process {
  background: var(--cc-mist);
}

.cc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  counter-reset: steps;
}

.cc-process-step {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--cc-line);
  border-radius: 22px;
  counter-increment: steps;
}

.cc-process-step::before {
  content: "0" counter(steps);
  color: var(--cc-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.cc-process-step h3 {
  margin: auto 0 10px;
  font-size: 1.45rem;
}

.cc-process-step p {
  color: var(--cc-muted);
  font-size: 0.88rem;
}

.cc-process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 22px;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background: var(--cc-blue);
  border-radius: 24px;
}

.cc-process-cta h3 {
  max-width: 25ch;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
}

.cc-process-cta p {
  margin-top: 7px;
  color: rgba(255,255,255,0.72);
}

.cc-journal { background: #fff; }

.cc-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cc-article-card {
  overflow: hidden;
  background: var(--cc-mist);
  border: 1px solid var(--cc-line);
  border-radius: 24px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.cc-article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cc-shadow-soft);
}

.cc-article-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.cc-article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cc-article-card:hover img { transform: scale(1.035); }

.cc-article-card__body { padding: 24px; }

.cc-article-card__tag {
  color: var(--cc-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cc-article-card h3 {
  min-height: 3.6em;
  margin: 14px 0 20px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.cc-faq { background: var(--cc-ice); }

.cc-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}

.cc-faq-title h2 {
  margin: 18px 0;
  font-size: clamp(2.3rem, 4.5vw, 4.6rem);
  line-height: 0.97;
}

.cc-faq-title p { color: var(--cc-muted); }

.cc-faq-list details {
  background: #fff;
  border-bottom: 1px solid var(--cc-line);
}

.cc-faq-list details:first-child {
  border-radius: 22px 22px 0 0;
}

.cc-faq-list details:last-child {
  border-bottom: 0;
  border-radius: 0 0 22px 22px;
}

.cc-faq-list summary {
  position: relative;
  padding: 24px 58px 24px 24px;
  list-style: none;
  cursor: pointer;
  font-weight: 750;
}

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

.cc-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 22px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--cc-blue);
  border-radius: 50%;
  font-size: 1.1rem;
}

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

.cc-faq-list details p {
  max-width: 68ch;
  padding: 0 24px 26px;
  color: var(--cc-muted);
}

.cc-closing {
  position: relative;
  padding: clamp(80px, 11vw, 154px) 0;
  color: #fff;
  background: var(--cc-blue);
  overflow: hidden;
}

.cc-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(117,224,189,0.24), transparent 26%),
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,0.09) 50%, transparent 50.2%);
  background-size: auto, 110px 110px;
}

.cc-closing__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.cc-closing h2 {
  max-width: 18ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
}

.cc-closing p {
  max-width: 55ch;
  margin-top: 24px;
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
}

.cc-closing__actions {
  display: grid;
  gap: 12px;
  min-width: 250px;
}

/* Rodapé */
.site-footer {
  background: var(--cc-navy);
}

.site-footer .page-close {
  border-radius: var(--cc-radius-lg);
}

.footer-grid {
  gap: clamp(36px, 7vw, 100px);
  padding-top: 76px;
}

.footer-grid h4 { letter-spacing: 0.08em; }
.footer-bottom { padding-block: 28px; }

/* Movimento discreto e seguro. */
@media (prefers-reduced-motion: no-preference) {
  .cc-hero__content {
    animation: cc-rise 0.9s cubic-bezier(.16,1,.3,1) both;
  }
  .cc-hero__signal {
    animation: cc-rise 0.9s 0.18s cubic-bezier(.16,1,.3,1) both;
  }
  @keyframes cc-rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 1100px) {
  .cc-intro-rail__grid { grid-template-columns: repeat(2, 1fr); }
  .cc-intro-card:nth-child(2) { border-right: 0; }
  .cc-intro-card:nth-child(-n+2) { border-bottom: 1px solid var(--cc-line); }
  .cc-logo-grid { grid-template-columns: repeat(5, 1fr); }
  .cc-service-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-method__layout { grid-template-columns: 1fr; }
  .cc-method__media { min-height: 520px; }
  .cc-process-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-hero__signal { display: none; }
}

@media (max-width: 900px) {
  .nav .container { min-height: 74px; }
  .nav-logo img { height: 38px; }
  .cc-hero { min-height: auto; }
  .cc-hero__inner { padding-top: 100px; padding-bottom: 118px; }
  .cc-hero .hero-video-overlay,
  .cc-hero.has-video .hero-video-overlay {
    background: linear-gradient(90deg, rgba(4,18,37,0.94), rgba(4,18,37,0.58)), linear-gradient(0deg, rgba(4,18,37,0.72), transparent 65%);
  }
  .cc-section-head,
  .cc-faq-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .cc-section-head h2 { max-width: 18ch; }
  .cc-segment-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-line-showcase { grid-template-columns: 1fr; }
  .cc-brand-card { min-height: 560px; }
  .cc-closing__inner { grid-template-columns: 1fr; align-items: start; }
  .cc-closing__actions { min-width: 0; max-width: 300px; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 78px; }
  .section { padding-block: 78px; }
  .cc-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .cc-hero__actions { align-items: stretch; flex-direction: column; max-width: 310px; }
  .cc-hero__actions .btn { width: 100%; }
  .cc-hero__facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .cc-intro-rail { margin-top: -18px; }
  .cc-intro-rail__grid { grid-template-columns: 1fr; }
  .cc-intro-card { min-height: 138px; border-right: 0; border-bottom: 1px solid var(--cc-line); }
  .cc-intro-card:nth-child(2) { border-bottom: 1px solid var(--cc-line); }
  .cc-intro-card:last-child { border-bottom: 0; }
  .cc-logo-band__head { align-items: start; flex-direction: column; }
  .cc-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-logo-grid span { min-height: 108px; }
  .cc-logo-grid img { max-width: 112px; max-height: 52px; }
  .cc-method__media { min-height: 440px; }
  .cc-diagnostic { grid-template-columns: 46px 1fr; padding: 20px; }
  .cc-diagnostic__icon { width: 46px; height: 46px; }
  .cc-services { margin-inline: 0; border-radius: 30px; }
  .cc-service-grid { grid-template-columns: 1fr; }
  .cc-service-card { min-height: 270px; }
  .cc-service-card__icon { margin-top: 30px; }
  .cc-segment-grid { grid-template-columns: 1fr; }
  .cc-segment-card { min-height: 210px; }
  .cc-brand-card { min-height: 520px; padding: 28px 24px; }
  .cc-brand-card__products img { max-width: 33%; }
  .cc-proof-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .cc-proof-card, .cc-proof-card:first-child { min-height: 360px; grid-row: auto; }
  .cc-process-grid { grid-template-columns: 1fr; }
  .cc-process-step { min-height: 240px; }
  .cc-process-cta { align-items: flex-start; flex-direction: column; }
  .cc-article-grid { grid-template-columns: 1fr; }
  .cc-article-card h3 { min-height: 0; }
  .cc-closing h2 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  body:not(.page-home) .hero-grid { min-height: 460px; }
  body:not(.page-home) .hero-shell h1 { font-size: clamp(2.7rem, 12vw, 4.2rem); }
}

@media (max-width: 420px) {
  .cc-hero h1 { font-size: 2.95rem; }
  .cc-hero__facts { grid-template-columns: 1fr; }
  .cc-logo-grid { grid-template-columns: 1fr 1fr; }
  .cc-proof-card, .cc-proof-card:first-child { min-height: 320px; }
}

/* ======================================================================
   REVISÃO COMPACTA — mais próxima, mais viva, menos monumental
   ====================================================================== */

:root { --cc-container: 1180px; }

.section { padding-block: clamp(58px, 7vw, 88px); }

.nav .container { min-height: 72px; padding-top: 9px; padding-bottom: 9px; }
.nav-logo img { height: 36px; }
.nav-links { gap: clamp(16px, 1.8vw, 27px); font-size: 0.82rem; }
.nav-cta { min-height: 42px; padding: 9px 18px; }

.cc-hero {
  min-height: 640px;
  max-height: 740px;
}

.cc-hero__inner {
  min-height: 640px;
  padding-top: 66px;
  padding-bottom: 76px;
}

.cc-hero__content { max-width: 860px; }

.cc-kicker { margin-bottom: 18px; padding: 7px 12px; font-size: 0.7rem; }

.cc-hero h1 {
  max-width: 18ch;
  font-size: clamp(3rem, 4.8vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.cc-hero__lede {
  max-width: 54ch;
  margin-top: 20px;
  font-size: 1.04rem;
}

.cc-hero__actions { margin-top: 25px; }
.cc-hero__actions .btn { min-height: 46px; padding: 11px 20px; }
.cc-hero__facts { margin-top: 32px; padding-top: 18px; gap: 20px 28px; }
.cc-hero__fact strong { font-size: 0.86rem; }
.cc-hero__fact span { font-size: 0.72rem; }

.cc-hero__signal {
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 30px;
  width: 275px;
  padding: 16px;
  border-radius: 18px;
}

.cc-hero__signal strong { font-size: 1rem; }

.cc-logo-band {
  padding: 52px 0 66px;
  background: linear-gradient(180deg, #fff 0%, #f3f8ff 100%);
}

.cc-logo-band__head { margin-bottom: 24px; }
.cc-logo-band__head h2 { font-size: clamp(1.55rem, 2.4vw, 2.15rem); }
.cc-logo-grid span { min-height: 88px; padding: 14px; background: rgba(255,255,255,0.72); }
.cc-logo-grid img { max-width: 112px; max-height: 48px; filter: none; opacity: 0.82; }
.cc-logo-grid span:hover img { opacity: 1; }

.cc-section-head {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 38px;
  margin-bottom: 38px;
}

.cc-section-head h2 {
  max-width: 19ch;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1;
}

.cc-section-head__copy p { max-width: 56ch; font-size: 0.98rem; }
.cc-section-head__copy .btn-inline { margin-top: 14px; }
.cc-eyebrow { font-size: 0.69rem; }

.cc-method {
  background:
    radial-gradient(circle at 90% 5%, rgba(117,224,189,0.16), transparent 25%),
    linear-gradient(180deg, #eef6ff, #f7fbff);
}

.cc-method__layout {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 30px;
}

.cc-method__media { min-height: 410px; border-radius: 26px; }
.cc-method__caption { left: 16px; right: 16px; bottom: 16px; padding: 15px 17px; }
.cc-diagnostic-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.cc-diagnostic { grid-template-columns: 44px 1fr; gap: 13px; padding: 18px; border-radius: 17px; }
.cc-diagnostic__icon { width: 44px; height: 44px; border-radius: 13px; }
.cc-diagnostic h3 { font-size: 0.98rem; }
.cc-diagnostic p { font-size: 0.8rem; line-height: 1.45; }

.cc-services { margin-inline: 14px; border-radius: 30px; }
.cc-services.section { padding-block: 70px; }
.cc-service-card { min-height: 245px; padding: 25px; }
.cc-service-card__icon { width: 50px; height: 50px; margin-top: 24px; border-radius: 15px; }
.cc-service-card:nth-child(1) .cc-service-card__icon { color: #7fd1ff; }
.cc-service-card:nth-child(2) .cc-service-card__icon { color: #75e0bd; }
.cc-service-card:nth-child(3) .cc-service-card__icon { color: #ffd978; }
.cc-service-card:nth-child(4) .cc-service-card__icon { color: #aebcff; }
.cc-service-card h3 { font-size: 1.38rem; }
.cc-service-card p { font-size: 0.81rem; }

.cc-segment-grid { gap: 10px; }
.cc-segment-card { min-height: 170px; padding: 21px; border-radius: 19px; }
.cc-segment-card:nth-child(3n+1) { background: #eef6ff; border-top: 3px solid #4e9cff; }
.cc-segment-card:nth-child(3n+2) { background: #effaf7; border-top: 3px solid #64cfad; }
.cc-segment-card:nth-child(3n+3) { background: #fff8e9; border-top: 3px solid #f0c557; }
.cc-segment-card__icon { width: 46px; height: 46px; border-radius: 14px; }
.cc-segment-card h3 { font-size: 1.13rem; }
.cc-segment-card p { font-size: 0.78rem; }

.cc-lines {
  background: linear-gradient(145deg, #eaf3ff 0%, #f6f9fc 58%, #ebfaf6 100%);
}

.cc-line-showcase { gap: 14px; }
.cc-brand-card { min-height: 455px; padding: 32px; border-radius: 28px; }
.cc-brand-card__logo { max-width: 118px; max-height: 48px; }
.cc-brand-card h3 { margin-top: 28px; font-size: clamp(1.9rem, 3vw, 2.75rem); }
.cc-brand-card > p { font-size: 0.88rem; }
.cc-brand-card__products { min-height: 150px; margin-bottom: 14px; }
.cc-brand-card__products img { max-height: 165px; }

.cc-process-grid { gap: 9px; }
.cc-process-step { min-height: 190px; padding: 22px; border-radius: 18px; border-top: 3px solid var(--cc-blue); }
.cc-process-step:nth-child(2) { border-top-color: #56c9a3; }
.cc-process-step:nth-child(3) { border-top-color: #f0c557; }
.cc-process-step:nth-child(4) { border-top-color: #8698ff; }
.cc-process-step h3 { font-size: 1.18rem; }
.cc-process-step p { font-size: 0.8rem; }
.cc-process-cta { margin-top: 14px; padding: 27px 30px; border-radius: 19px; }

.cc-article-grid { gap: 12px; }
.cc-article-card { background: #fff; border-radius: 19px; box-shadow: 0 10px 30px rgba(6,23,45,0.06); }
.cc-article-card__body { padding: 19px; }
.cc-article-card h3 { margin: 10px 0 15px; font-size: 1.08rem; }

.cc-faq-layout { grid-template-columns: 0.65fr 1.35fr; gap: 55px; }
.cc-faq-title h2 { font-size: clamp(1.9rem, 3.2vw, 3rem); }
.cc-faq-list summary { padding: 18px 52px 18px 20px; font-size: 0.9rem; }
.cc-faq-list summary::after { top: 14px; width: 28px; height: 28px; }
.cc-faq-list details p { padding: 0 20px 20px; font-size: 0.86rem; }

.cc-closing { padding: 76px 0; }
.cc-closing h2 { font-size: clamp(2.6rem, 4.8vw, 4.2rem); line-height: 0.95; }
.footer-grid { padding-top: 58px; }

body:not(.page-home) .hero-grid { min-height: 360px; padding-block: 58px; }
body:not(.page-home) .hero-shell h1 { max-width: 19ch; font-size: clamp(2.2rem, 3.35vw, 3rem); line-height: 1.03; }
body:not(.page-home) .hero-shell .lede { font-size: 1.02rem; }
body:not(.page-home) .section h2,
body:not(.page-home) .section-head h2 { font-size: clamp(1.8rem, 3.1vw, 2.75rem); line-height: 1.05; }

@media (max-width: 900px) {
  .cc-section-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 30px; }
  .cc-method__layout { grid-template-columns: 1fr; }
  .cc-method__media { min-height: 360px; }
  .cc-faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .cc-hero__signal { display: none; }
}

@media (max-width: 700px) {
  .section { padding-block: 56px; }
  .nav .container { min-height: 66px; }
  .nav-logo img { height: 32px; }
  .cc-hero { min-height: auto; max-height: none; }
  .cc-hero__inner { min-height: 690px; padding-top: 58px; padding-bottom: 58px; }
  .cc-hero h1 { font-size: clamp(2.55rem, 12.5vw, 3.45rem); }
  .cc-hero__lede { margin-top: 18px; font-size: 0.96rem; }
  .cc-hero__facts { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 25px; padding-top: 16px; }
  .cc-hero__fact strong { font-size: 0.7rem; line-height: 1.25; }
  .cc-hero__fact span { display: none; }
  .cc-hero__actions { max-width: 100%; }
  .cc-hero__actions .btn { min-height: 44px; font-size: 0.86rem; }
  .cc-logo-band { padding: 42px 0 50px; }
  .cc-logo-band__head { gap: 10px; margin-bottom: 20px; }
  .cc-logo-grid span { min-height: 78px; }
  .cc-logo-grid img { max-width: 92px; max-height: 40px; }
  .cc-section-head h2 { font-size: 2.15rem; }
  .cc-method__media { min-height: 320px; }
  .cc-diagnostic-list { grid-template-columns: 1fr; }
  .cc-services { margin-inline: 0; border-radius: 22px; }
  .cc-services.section { padding-block: 56px; }
  .cc-service-card { min-height: 205px; padding: 22px; }
  .cc-service-card__icon { margin-top: 16px; }
  .cc-segment-card { min-height: 166px; }
  .cc-brand-card { min-height: 420px; padding: 25px 22px; }
  .cc-process-step { min-height: 165px; }
  .cc-process-cta { padding: 23px; }
  .cc-closing { padding: 62px 0; }
  .cc-closing h2 { font-size: 3.15rem; }
  body:not(.page-home) .hero-grid { min-height: 360px; padding-block: 58px; }
  body:not(.page-home) .hero-shell h1 { font-size: 2.65rem; }
}
