/* ─────────────────── HERO ─────────────────── */
.hero {
  position: relative;
  isolation: isolate;
  background-color: #08050f;
  background-image: url('../img/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 56px 0 56px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(92, 33, 120, 0.35) 0%,
    rgba(92, 33, 120, 0.1) 50%,
    rgba(92, 33, 120, 0.45) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 5, 15, 0.6) 0%,
    rgba(8, 5, 15, 0.2) 50%,
    rgba(8, 5, 15, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Aurora animated background (disabled — replaced by static hero background image) */
.hero-aurora {
  display: none;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.aurora-blob--1 {
  width: 75%;
  height: 130%;
  top: 0%;
  left: -5%;
  background: radial-gradient(ellipse at 40% 50%,
    #9A5BC2 0%,
    #7A37A4 30%,
    #5C2178 55%,
    transparent 75%
  );
  opacity: 0.85;
}
.aurora-blob--2 {
  width: 70%;
  height: 110%;
  top: -5%;
  right: 0%;
  background: radial-gradient(ellipse at 60% 45%,
    #BD8AD9 0%,
    #9A5BC2 35%,
    #5C2178 60%,
    transparent 80%
  );
  opacity: 0.65;
}
.aurora-blob--3 {
  width: 60%;
  height: 100%;
  bottom: -10%;
  left: 20%;
  background: radial-gradient(ellipse at 50% 60%,
    #5C2178 0%,
    #4A1A62 40%,
    #240C30 65%,
    transparent 82%
  );
  opacity: 0.9;
}
.aurora-blob--4 {
  width: 45%;
  height: 80%;
  top: 5%;
  left: 10%;
  background: radial-gradient(ellipse at 45% 40%,
    #D8B7EB 0%,
    #BD8AD9 30%,
    #9A5BC2 55%,
    transparent 78%
  );
  opacity: 0.45;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-inner > * {
  min-width: 0;
}
@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
@media (max-width: 560px) {
  .hero {
    padding: 48px 0 56px;
  }
  .hero-inner {
    gap: 34px;
  }
  .hero .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  .hero h1,
  .hero .hero-title {
    font-size: clamp(32px, 9.2vw, 36px) !important;
    line-height: 1.06;
    letter-spacing: 0;
    margin: 18px 0 18px;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero p.hlead {
    font-size: 17px !important;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 34px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .hero-meta {
    gap: 18px;
  }
}
.hero .eyebrow {
  color: var(--asc-lilac-400);
}
.hero h1 {
  font-size: clamp(44px, 6.2vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: var(--asc-fw-regular);
  color: #fff;
  margin: 24px 0 24px;
  max-width: 720px;
}
.hero .hero-title {
  font-size: 50px;
}
.hero b {
  font-weight: var(--asc-fw-black);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #e5c8ff 0%, #c8a4e4 50%, #b388e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.hlead {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 0 0 36px;
  font-weight: var(--asc-fw-light);
}
.hero p.hlead strong {
  color: #fff;
  font-weight: var(--asc-fw-medium);
}
.hero-proof {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  max-width: 90%;
}
.hero-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--asc-fw-medium);
  color: rgba(255, 255, 255, 0.85);
}
.hero-proof-item svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--asc-lilac-400, #c8a4e4);
}
@media (max-width: 560px) {
  .hero-proof {
    gap: 8px 16px;
    margin-bottom: 26px;
  }
  .hero-proof-item {
    font-size: 13px;
  }
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-cta .arrow {
  transition: transform 0.2s ease;
}
.hero-cta .btn-light:hover .arrow {
  transform: translateX(4px);
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: var(--asc-tracking-allcaps);
  font-weight: var(--asc-fw-medium);
}
.hero-meta .meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.hero-meta .meta-badge--partner {
  padding: 8px 14px 8px 0;
  background-color: rgba(255, 255, 255, 0);
  border-style: none;
  border-width: 0 0 0 1px;
}
.hero-meta .meta-badge img {
  height: 28px;
  width: auto;
}
.hero-meta .meta-logo-img {
  width: 100px;
  height: 60px;
  object-fit: contain;
}
.hero-meta .meta-badge-title {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: var(--asc-fw-medium);
}
.hero-meta .stars {
  color: #f79009;
  letter-spacing: 1px;
  font-size: 14px;
}
.hero-rating-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: var(--asc-fw-regular);
  text-transform: none;
  letter-spacing: 0;
}

/* ── Hero image ─────────────────────────────── */
.hero-dashboard {
  position: relative;
  width: 100%;
  height: 640px;
}
.hero-image-wrap {
  min-height: 720px;
  align-self: center;
}
.hero-dashboard .hd-glow {
  position: absolute;
  inset: -10% -20%;
  background:
    radial-gradient(
      60% 50% at 30% 30%,
      rgba(229, 200, 255, 0.35),
      transparent 70%
    ),
    radial-gradient(
      50% 60% at 80% 70%,
      rgba(160, 45, 176, 0.35),
      transparent 70%
    );
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
/* ── Hero scene: layered composition, each object animated independently ── */
.hero-scene {
  position: absolute;
  margin-left: -109px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(862px, 134%);
  max-width: none;
  aspect-ratio: 1536 / 1024;
  container-type: inline-size;
}

/* back blob */
.hs-blob {
  position: absolute;
  left: 17.6%;
  top: -4%;
  width: 72.3%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(circle at 38% 36%,
    #9147E8 0%,
    #7A2FD0 34%,
    #5E1FA8 58%,
    #4A1580 76%,
    rgba(60, 16, 110, 0) 100%
  );
  animation:
    hsBlobIn 0.9s ease-out both,
    hsBlobPulse 9s ease-in-out 2s infinite;
}
.hs-blob::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle 3px at 18% 30%, rgba(255, 255, 255, 0.8), transparent 70%),
    radial-gradient(circle 2px at 82% 16%, rgba(255, 255, 255, 0.7), transparent 70%),
    radial-gradient(circle 2.5px at 91% 62%, rgba(255, 255, 255, 0.55), transparent 70%),
    radial-gradient(circle 2px at 7% 66%, rgba(255, 255, 255, 0.5), transparent 70%);
}
.hs-blob::after {
  content: "";
  position: absolute;
  inset: -3.2%;
  border-radius: 50%;
  border: 1.5px solid rgba(216, 183, 235, 0.28);
  border-left-color: transparent;
  border-bottom-color: rgba(216, 183, 235, 0.1);
  animation: hsOrbit 26s linear infinite;
}

/* paper plane não faz sentido no cenário de caos */
.hs-plane { display: none; }

/* woman (static anchor — life comes from the floating elements) */
.hs-woman {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 34px 60px rgba(20, 5, 40, 0.25));
  animation: hsFadeIn 0.7s ease-out 0.15s both;
}

/* Google rating badge */
.hs-badge {
  position: absolute;
  left: 19.4%;
  top: 17.9%;
  width: 15%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  gap: 0.45cqw;
  padding: 14px 10px;
  padding: 1.5cqw 1.05cqw;
  border-radius: 16px;
  border-radius: 1.8cqw;
  background: linear-gradient(160deg, #2B2444 0%, #1F1933 100%);
  box-shadow: 0 18px 38px rgba(15, 5, 35, 0.45);
  text-align: center;
  transform-origin: 50% 100%;
  animation:
    hsPopIn 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s both,
    hsFloat 7s ease-in-out 2.2s infinite;
  will-change: transform;
  --hs-amp: -8px;
}
.hs-g {
  width: 42%;
  height: auto;
}
.hs-stars {
  color: #F8B826;
  font-size: 13px;
  font-size: 1.45cqw;
  letter-spacing: 0.14em;
  line-height: 1.3;
}
.hs-score {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.6cqw;
}
.hs-reviews {
  color: #9E97B8;
  font-size: 10px;
  font-size: 1.12cqw;
}

/* chat bubbles */
.hs-bubble {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  box-shadow: 0 18px 40px rgba(20, 6, 45, 0.35);
  will-change: transform;
}
.hs-bubble--sofia {
  left: 5.4%;
  top: 51.6%;
  width: 35.2%;
  z-index: 5;
  min-height: 12.6%;
  gap: 12px;
  gap: 1.4cqw;
  padding: 10px 14px 10px 16px;
  padding: 1.1cqw 1.5cqw 1.1cqw 1.8cqw;
  border-radius: 28px;
  border-radius: 3.1cqw;
  background: linear-gradient(135deg, #8E3BD4 0%, #6C23AE 55%, #5C2178 100%);
  color: #fff;
  transform-origin: 12% 50%;
  animation:
    hsPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.95s both,
    hsFloat 5.6s ease-in-out 2.4s infinite;
  --hs-amp: -4px;
}
.hs-bubble--sofia::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: -22px;
  bottom: -2.5cqw;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-left: 2.5cqw solid transparent;
  border-right: 22px solid transparent;
  border-right: 2.5cqw solid transparent;
  border-top: 24px solid #5C2178;
  border-top: 2.7cqw solid #5C2178;
  z-index: -1;
}
.hs-bubble-text {
  font-size: 17px;
  font-size: 1.95cqw;
  line-height: 1.35;
}
.hs-bubble--sofia .hs-bubble-text b {
  font-weight: 700;
  font-size: 19px;
  font-size: 2.15cqw;
}
.hs-bubble--cliente {
  left: 6.6%;
  top: 65.4%;
  width: 40%;
  min-height: 15.7%;
  gap: 10px;
  gap: 1.2cqw;
  padding: 13px 18px 13px 20px;
  padding: 1.4cqw 2cqw 1.4cqw 2.2cqw;
  border-radius: 30px;
  border-radius: 3.4cqw;
  background: #fff;
  color: #3A3550;
  transform-origin: 88% 50%;
  animation:
    hsPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both,
    hsFloat 6.8s ease-in-out 2.9s infinite;
  --hs-amp: -4px;
}
.hs-bubble--cliente .hs-bubble-text {
  flex: 1;
  line-height: 1.4;
}
.hs-bubble-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  gap: 0.5cqw;
  margin-top: 2px;
  color: #98A2B3;
  font-size: 12px;
  font-size: 1.3cqw;
}
.hs-checks {
  width: 18px;
  width: 2cqw;
  height: auto;
}
.hs-checks path {
  stroke: #98A2B3;
  animation: hsChecksRead 0.5s ease 3.4s both;
}
.hs-avatar {
  flex: 0 0 auto;
  width: 66px;
  width: 7.3cqw;
  aspect-ratio: 1;
  border-radius: 50%;
}
.hs-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 2px #fff, 0 0 0 5px #1FA45B;
  box-shadow: 0 0 0 0.24cqw #fff, 0 0 0 0.6cqw #1FA45B;
}
/* Sofia's cutout has alpha — light backdrop behind her */
.hs-bubble--sofia .hs-avatar img {
  background: radial-gradient(circle at 50% 30%, #F3EAFB 0%, #DCC8F0 100%);
}

/* social channel icons */
.hs-social {
  position: absolute;
  inset: 0;
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.hs-icon {
  position: absolute;
  width: 7.6%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(18, 6, 40, 0.35);
  transform-origin: 50% 50%;
  animation:
    hsPopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) var(--hs-d, 1.1s) both,
    hsFloat var(--hs-fd, 5.4s) ease-in-out var(--hs-fdel, 2.2s) infinite;
}
.hs-icon svg {
  width: 47%;
  height: 47%;
}
.hs-icon--tiktok    { left: 79.2%; top: 14.2%; --hs-d: 1.1s;  --hs-fd: 5.2s; --hs-fdel: 2.1s; --hs-amp: -7px; }
.hs-icon--instagram { left: 84.4%; top: 25.3%; --hs-d: 1.25s; --hs-fd: 6.1s; --hs-fdel: 2.5s; --hs-amp: -9px; }
.hs-icon--whatsapp  { left: 86.9%; top: 38.0%; --hs-d: 1.4s;  --hs-fd: 5.7s; --hs-fdel: 2.3s; --hs-amp: -6px; }
.hs-icon--messenger { left: 88.5%; top: 50.4%; --hs-d: 1.55s; --hs-fd: 6.5s; --hs-fdel: 2.7s; --hs-amp: -8px; }
.hs-icon--whatsapp svg {
  transform-origin: 50% 40%;
  animation: hsRing 7s ease-in-out 4s infinite;
}

/* paper plane doodle */
.hs-plane {
  position: absolute;
  left: 0.5%;
  top: 76%;
  width: 21%;
  height: auto;
  z-index: 1;
  overflow: visible;
  animation:
    hsFadeIn 0.8s ease-out 1.8s both,
    hsFloat 7.5s ease-in-out 3s infinite;
  --hs-amp: -5px;
}
.hs-plane-trail {
  stroke: #B794E6;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 0.6 9;
  animation: hsDash 7s linear 2.6s infinite;
}
.hs-plane-glyph {
  stroke: #C9A6F0;
  stroke-width: 2.4;
  stroke-linejoin: round;
  fill: rgba(201, 166, 240, 0.18);
}

/* ------- Channel chips (chaos state around the woman) ------- */
.hs-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(20, 5, 40, 0.08),
    0 18px 34px -14px rgba(20, 5, 40, 0.35);
  max-width: 24%;
  animation:
    hsPopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) var(--hs-d, 1.1s) both,
    hsFloat var(--hs-fd, 5.6s) ease-in-out var(--hs-fdel, 2s) infinite;
  --hs-amp: -6px;
}
.hs-chip-ico {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.3);
}
.hs-chip-ico svg { width: 22px; height: 22px; }
.hs-chip-ico--whatsapp { background: #25D366; }
.hs-chip-ico--instagram {
  background:
    radial-gradient(circle at 30% 110%, #FDCB5C 0%, #EE583F 30%, #D92E7F 55%, #9B36B7 80%, #515ECF 100%);
}
.hs-chip-ico--purple { background: var(--asc-purple-600); }
.hs-chip-ico--sheet { background: var(--asc-success-500); }
.hs-chip-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  line-height: 1.15;
}
.hs-chip-text b {
  font-size: 14px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
  letter-spacing: -0.01em;
}
.hs-chip-text em {
  font-style: normal;
  font-size: 12px;
  color: var(--asc-fg-muted);
  line-height: 1.3;
}
/* Posições ao redor da mulher — coordenadas relativas ao .hero-scene */
.hs-chip--wa    { left: 14%;    top: 4%;   --hs-d: 0.8s;  --hs-fd: 6.1s; --hs-fdel: 2.1s; }
.hs-chip--tel   { left: 4%;   top: 30%;  --hs-d: 1.0s;  --hs-fd: 5.4s; --hs-fdel: 2.4s; }
.hs-chip--gr    { left: 2%;   top: 60%;  --hs-d: 1.2s;  --hs-fd: 5.8s; --hs-fdel: 2.7s; }
.hs-chip--ig    { left: 72%;   top: 8%;   --hs-d: 0.9s;  --hs-fd: 5.6s; --hs-fdel: 2.2s; }
.hs-chip--mail  { left: 78%;   top: 38%;  --hs-d: 1.1s;  --hs-fd: 6.2s; --hs-fdel: 2.5s; }
.hs-chip--sheet { left: 70%;   top: 66%;  --hs-d: 1.3s;  --hs-fd: 5.7s; --hs-fdel: 2.8s; }

@media (max-width: 1080px) {
  .hs-chip { max-width: 30%; padding: 7px 12px 7px 7px; gap: 8px; }
  .hs-chip-ico { width: 36px; height: 36px; }
  .hs-chip-ico svg { width: 18px; height: 18px; }
  .hs-chip-text b { font-size: 12.5px; }
  .hs-chip-text em { font-size: 11px; }
}
@media (max-width: 640px) {
  .hs-chip { max-width: 44%; }
  .hs-chip--wa    { left: 2%;  top: 2%; }
  .hs-chip--tel   { left: -4%; top: 26%; }
  .hs-chip--gr    { left: -6%; top: 55%; }
  .hs-chip--ig    { left: 60%; top: 6%; }
  .hs-chip--mail  { left: 66%; top: 34%; }
  .hs-chip--sheet { left: 60%; top: 62%; }
}

/* ── Hero v2 (home PT): fade na foto, esfera mais escura, chips em arco ── */
.hero--v2 .hs-woman {
  -webkit-mask-image: linear-gradient(to bottom, #000 68%, rgba(0, 0, 0, 0.45) 86%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 68%, rgba(0, 0, 0, 0.45) 86%, transparent 99%);
}
.hero--v2 .hs-blob {
  background: radial-gradient(circle at 38% 34%,
    rgba(113, 42, 214, 0.5) 0%,
    rgba(88, 30, 176, 0.46) 32%,
    rgba(62, 19, 130, 0.4) 56%,
    rgba(41, 12, 92, 0.28) 76%,
    rgba(26, 7, 62, 0) 100%
  );
  box-shadow:
    inset 0 0 110px rgba(18, 4, 48, 0.55),
    0 0 130px rgba(90, 30, 170, 0.16);
}
.hero--v2 .hs-blob::before { opacity: 0.5; }
.hero--v2 .hs-blob::after {
  border-color: rgba(216, 183, 235, 0.14);
  border-left-color: transparent;
  border-bottom-color: rgba(216, 183, 235, 0.04);
}
.hero--v2 .hs-chip--wa    { left: 15%; top: 13%; }
.hero--v2 .hs-chip--tel   { left: 5%;  top: 38%; }
.hero--v2 .hs-chip--gr    { left: 4%;  top: 63%; }
.hero--v2 .hs-chip--ig    { left: 70%; top: 15%; }
.hero--v2 .hs-chip--mail  { left: 76%; top: 41%; }
.hero--v2 .hs-chip--sheet { left: 69%; top: 65%; }

@media (max-width: 640px) {
  .hero--v2 .hs-chip--wa    { left: 3%;  top: 10%; }
  .hero--v2 .hs-chip--tel   { left: -3%; top: 34%; }
  .hero--v2 .hs-chip--gr    { left: -4%; top: 58%; }
  .hero--v2 .hs-chip--ig    { left: 59%; top: 12%; }
  .hero--v2 .hs-chip--mail  { left: 65%; top: 37%; }
  .hero--v2 .hs-chip--sheet { left: 58%; top: 60%; }
}

/* keyframes */
@keyframes hsFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hsBlobIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes hsBlobPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50%      { transform: scale(1.03); filter: brightness(1.08); }
}
@keyframes hsOrbit {
  to { transform: rotate(360deg); }
}
@keyframes hsPopIn {
  0%   { opacity: 0; transform: translateY(14px) scale(0.7); }
  65%  { opacity: 1; transform: translateY(-3px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hsFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(var(--hs-amp, -6px)); }
}
@keyframes hsRing {
  0%, 86%, 100% { transform: rotate(0); }
  88% { transform: rotate(14deg); }
  91% { transform: rotate(-12deg); }
  94% { transform: rotate(8deg); }
  97% { transform: rotate(-4deg); }
}
@keyframes hsChecksRead {
  from { stroke: #98A2B3; }
  to   { stroke: #7C3AED; }
}
@keyframes hsDash {
  to { stroke-dashoffset: -96; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scene,
  .hero-scene *,
  .hero-scene ::before,
  .hero-scene ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1080px) {
  .hero-dashboard {
    height: auto;
  }
  .hero-image-wrap {
    height: min(680px, 76vw);
    margin-bottom: -64px;
  }
  .hero-scene {
    margin-left: 0;
    right: 50%;
    width: min(820px, 118vw);
    transform: translateX(50%);
  }
}
@media (max-width: 560px) {
  .hero-dashboard {
    display: none;
  }
  .hero h1,
  .hero .hero-title {
    font-size: clamp(32px, 9.2vw, 36px) !important;
    line-height: 1.06;
    letter-spacing: 0;
    margin: 18px 0;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero p.hlead {
    font-size: 17px !important;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

/* ─────────────────── Trust strip (selos) ─────────────────── */
.trust-strip {
  background:
    radial-gradient(120% 140% at 50% 0%, var(--asc-purple-50) 0%, #fff 70%);
  border-bottom: 1px solid var(--asc-divider);
  padding: 24px 0 26px;
}
.trust-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}
.trust-chips--main .trust-chip {
  background: #fff;
  border: 1px solid var(--asc-border);
  box-shadow: 0 2px 8px -4px rgba(36, 12, 48, 0.12);
  color: var(--asc-fg-strong);
  font-weight: var(--asc-fw-bold);
}
.trust-check {
  width: 14px;
  height: 14px;
  flex: none;
  color: var(--asc-purple-600);
}
.trust-chip--seal {
  padding: 8px;
  background: none;
  border: none;
  box-shadow: none;
  max-width: 150px;
}
.seal-img {
  height: auto;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .trust-strip {
    padding: 20px 0;
  }
  .trust-chip {
    font-size: 12px;
  }
  .trust-chips {
    gap: 8px;
  }
}

/* ─────────────────── Logos strip ─────────────────── */
.logos {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--asc-divider);
  background: var(--asc-bg-elev);
}
.logos-head {
  text-align: center;
  margin-bottom: 32px;
}
.logos-sub {
  margin: 16px auto 0;
  max-width: 640px;
  color: var(--asc-fg-muted);
  font-size: 16px;
  line-height: 1.6;
}
.logos-cta-box {
  margin-top: 40px;
  text-align: center;
}
.logos-title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
  margin: 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.logos-title em {
  font-style: normal;
  color: var(--asc-purple-600);
}
.logos-marquee {
  position: relative;
  overflow: hidden;
  /* soft fade in/out on the edges */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: asc-logos-scroll 60s linear infinite;
  will-change: transform;
}
.logos-marquee:hover .logos-track {
  animation-play-state: paused;
}
@keyframes asc-logos-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .logos-track {
    animation: none;
  }
}
@media (max-width: 880px) {
  .logos-track {
    gap: 48px;
    animation-duration: 45s;
  }
}
.client-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  height: 120px;
  width: 180px;
  padding: 8px 12px;
  border-radius: 14px;
  background: transparent;
}
.client-logo img {
  max-width: 100%;
  max-height: 112px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
}
.client-logo:hover {
  background: transparent;
}
.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.04);
}

/* ─────────────────── Impact ─────────────────── */
.impact-section {
  position: relative;
  background: #07051a;
  color: #fff;
  padding: 96px 0 0;
  overflow: hidden;
}
.impact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.impact-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}
.impact-glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #6b21e8 0%, transparent 70%);
  top: -100px;
  right: 10%;
}
.impact-glow--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  top: 50px;
  right: 30%;
  opacity: 0.25;
}
.impact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.impact-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--asc-fw-medium);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.impact-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: var(--asc-fw-extrabold);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.impact-headline em {
  font-style: normal;
  color: var(--asc-purple-400, #a78bfa);
}
.impact-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 480px;
}
.impact-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.impact-cta {
  font-size: 16px;
  height: 56px;
  padding: 0 28px;
}
.impact-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.impact-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.impact-visual-img {
  width: 100%;
  max-width: 560px;
  border-radius: 16px 16px 0 0;
  display: block;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  filter: drop-shadow(0 0 60px rgba(107,33,232,0.4));
}
.impact-pills-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 48px;
}
.impact-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: var(--asc-fw-medium);
  color: rgba(255,255,255,0.75);
}
.impact-pill svg {
  flex-shrink: 0;
  color: var(--asc-purple-400, #a78bfa);
}
@media (max-width: 860px) {
  .impact-inner {
    grid-template-columns: 1fr;
  }
  .impact-visual {
    display: none;
  }
  .impact-pills-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─────────────────── Plataforma ─────────────────── */
.plat {
  padding: 88px 0 64px;
}
.plat-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .plat-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* ── Head "Desafios da operação": hierarquia e leitura ─────────── */
.plat-head .eyebrow {
  margin-bottom: 4px;
}
.plat-head .h-section {
  text-wrap: balance;
  overflow-wrap: break-word;
}
.plat-head .h-section em {
  font-style: normal;
  color: var(--asc-purple-600);
}
.plat-head .lead {
  max-width: 520px;
  margin-top: 0;
}
.plat-head .lead p {
  margin: 0;
}
.plat-head .lead p + p {
  margin-top: 16px;
}
@media (max-width: 900px) {
  .plat-head .lead {
    max-width: 620px;
  }
}
@media (max-width: 480px) {
  .plat-head .h-section {
    font-size: clamp(28px, 8.4vw, 34px);
  }
}
.plat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .plat-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Carrossel "peek" dos pilares ─────────────────────────────── */
.plat-carousel {
  position: relative;
}
.plat-viewport {
  overflow: hidden;
}
.plat-track {
  display: flex;
  gap: 24px;
  transition: transform 520ms cubic-bezier(0.2, 0, 0, 1);
  will-change: transform;
}
.plat-carousel .pcard {
  /* 3 cards inteiros por vez, 2 gaps de 24px descontados */
  flex: 0 0 calc((100% - 48px) / 3);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.35s ease;
}
.plat-carousel .pcard:hover {
  transform: none;
}
.plat-carousel .pcard[aria-hidden="true"] {
  opacity: 0.55;
}
@media (max-width: 900px) {
  .plat-carousel .pcard {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 560px) {
  .plat-carousel .pcard {
    flex: 0 0 100%;
  }
}

.plat-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}
.plat-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.plat-dots button {
  appearance: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 24px;
  height: 6px;
  border-radius: 999px;
  background: var(--asc-ink-200);
  transition:
    background 0.2s ease,
    width 0.2s ease;
}
.plat-dots button[aria-current="true"] {
  background: var(--asc-purple-600);
  width: 40px;
}
.plat-nav-buttons {
  display: flex;
  gap: 10px;
}
.plat-nav {
  appearance: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--asc-bg-elev);
  border: 1px solid var(--asc-border);
  color: var(--asc-fg-strong);
  display: grid;
  place-items: center;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.plat-nav svg {
  width: 20px;
  height: 20px;
}
.plat-nav:hover:not(:disabled) {
  background: var(--asc-purple-600);
  border-color: var(--asc-purple-600);
  color: #fff;
  box-shadow: var(--asc-shadow-brand);
}
.plat-nav:active:not(:disabled) {
  transform: scale(0.96);
}
.plat-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.plat-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
  padding: 32px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #5c2178 0%, #7a37a4 100%);
  color: #fff;
  box-shadow: 0 16px 40px -16px rgba(92, 33, 120, 0.4);
}
.plat-close-text {
  font-size: 18px;
  font-weight: var(--asc-fw-medium);
  margin: 0;
  line-height: 1.5;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
}
.plat-close-text strong {
  color: #fff;
  font-weight: var(--asc-fw-bold);
}
.plat-close .btn {
  flex: none;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .plat-close {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
  }
  .plat-close-text {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .plat {
    padding: 64px 0 48px;
  }
  .plat-track {
    gap: 16px;
  }
  .pcard {
    padding: 26px 22px;
    border-radius: 18px;
  }
}
.pcard {
  background: var(--asc-bg-elev);
  border: 1px solid var(--asc-border);
  border-radius: var(--asc-r-2xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.pcard:hover {
  border-color: var(--asc-border-brand);
  transform: translateY(-4px);
  box-shadow: var(--asc-shadow-md);
}
.pcard .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--asc-purple-50);
  color: var(--asc-purple-600);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.pcard:hover .ico {
  background: var(--asc-purple-600);
  color: #fff;
}
.pcard .ico svg {
  width: 24px;
  height: 24px;
}
.pcard h3 {
  font-size: 22px;
  color: var(--asc-fg-strong);
  font-weight: var(--asc-fw-bold);
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.pcard p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--asc-fg-muted);
  margin: 0 0 18px;
}
.pcard .pcard-mini {
  display: grid;
  gap: 8px;
  padding: 16px 0 0;
  margin: 0;
  list-style: none;
  border-top: 1px dashed var(--asc-divider);
}
.pcard .pcard-mini li {
  list-style: none;
  font-size: 14px;
  color: var(--asc-fg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pcard .pcard-mini li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--asc-purple-100);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%235C2178" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
  flex: none;
}

/* ─────────────────── AI moment ─────────────────── */
.ai-section {
  padding: 80px 0;
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(122, 55, 164, 0.1), transparent 60%),
    radial-gradient(
      40% 60% at 100% 100%,
      rgba(160, 45, 176, 0.1),
      transparent 60%
    ),
    var(--asc-ink-25);
}

/* ── Nova versão da seção IA (layout centrado + dash + 3 boxes) ── */
.ai-section--new {
  padding: 100px 0 80px;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(162, 98, 210, 0.1) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, #f7f2fc 0%, #faf8ff 60%, #fff 100%);
}

.ai-new-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.ai-new-head .eyebrow {
  justify-content: center;
}
.ai-new-head .h-section {
  margin-top: 16px;
}

/* Container do dashboard */
.ai-new-dash-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    #ede5f7 0%,
    #e8ddf5 30%,
    #ddd0f0 60%,
    #d5c8ec 100%
  );
  margin-top: 40px;
  padding: 72px 64px 64px;
  margin-bottom: 0;
  box-shadow: 0 24px 60px -20px rgba(92, 33, 120, 0.18);
}

.ai-new-dash-inner {
  position: relative;
  display: flex;
  justify-content: center;
}

.ai-new-dash-inner .asc-sac .stage {
  width: 1180px;
}

.ai-new-dash-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px 30px 0 0;
}

/* Fade roxo-para-branco na parte inferior do container */
.ai-new-dash-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(213, 200, 236, 0.55) 50%,
    #d5c8ec 100%
  );
  pointer-events: none;
}

/* 3 boxes de texto */
.ai-new-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--asc-border);
}

.ai-new-box {
  padding: 32px 40px 32px 0;
}
.ai-new-box + .ai-new-box {
  padding-left: 40px;
  border-left: 1px solid var(--asc-border);
}

.ai-step-image {
  width: 100%;
  height: clamp(260px, 25vw, 360px);
  display: block;
  object-fit: contain;
  object-position: center;
}

.ai-new-box h4 {
  font-size: 20px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  min-height: calc(2 * 1.25em);
}

.ai-new-box p {
  font-size: 15px;
  color: var(--asc-fg-muted);
  line-height: 1.6;
  margin: 0;
  min-height: calc(4 * 1.6em);
}

.ai-step-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--asc-fw-bold);
  letter-spacing: var(--asc-tracking-allcaps);
  text-transform: uppercase;
  color: var(--asc-purple-600);
  background: var(--asc-purple-50);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.ai-step-benefits {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.ai-step-benefits li {
  font-size: 14px;
  color: var(--asc-fg);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ai-step-benefits li::before {
  content: "";
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  border-radius: 999px;
  background: var(--asc-purple-100);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%235C2178" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
}

/* Movimento multicanais (unificado dentro da seção #ia) */
.ai-new-multichannel {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--asc-border);
}
@media (max-width: 860px) {
  .ai-new-multichannel {
    margin-top: 48px;
    padding-top: 44px;
  }
}

.ai-new-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ─────────────────── Sofia IA ─────────────────── */
.sofia {
  padding: 96px 0;
  background:
    radial-gradient(70% 60% at 100% 0%, rgba(122, 55, 164, 0.08) 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(92, 33, 120, 0.06) 0%, transparent 60%),
    var(--asc-bg-elev);
  border-top: 1px solid var(--asc-divider);
}
.sofia-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1001px) {
  .sofia-inner {
    grid-template-rows: auto auto auto;
    gap: 0 64px;
    align-items: stretch;
  }
  .sofia-copy {
    display: contents;
  }
  .sofia-eyebrow {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin-bottom: 18px;
  }
  .sofia-main {
    grid-column: 1;
    grid-row: 2;
  }
  .sofia-main .h-section {
    margin-top: 0;
  }
  .sofia-main .sofia-features {
    margin-bottom: 0;
  }
  .sofia-chat {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  .sofia-chat-body {
    flex: 1;
  }
}
@media (max-width: 1000px) {
  .sofia-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.sofia-copy .h-section em {
  font-style: normal;
  color: var(--asc-purple-600);
}
.sofia-sub {
  margin: 16px 0 24px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--asc-fg-strong);
  font-weight: var(--asc-fw-medium);
}
.sofia-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.sofia-text p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--asc-fg-muted);
  margin: 0;
}
.sofia-eyebrow {
  padding: 8px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--asc-purple-50) 70%, var(--asc-bg-elev));
  border: 1px solid var(--asc-purple-100);
}
.sofia-features {
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 560px) {
  .sofia-features {
    grid-template-columns: 1fr;
  }
}
.sofia-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--asc-purple-50) 45%, var(--asc-bg-elev));
  border: 1px solid color-mix(in srgb, var(--asc-purple-100) 55%, transparent);
}
.sofia-feature-ico {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--asc-bg-elev);
  border: 1px solid var(--asc-purple-100);
  color: var(--asc-purple-600);
}
.sofia-feature-ico svg {
  width: 19px;
  height: 19px;
}
.sofia-feature h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
  line-height: 1.3;
}
.sofia-feature p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--asc-fg-muted);
}
.sofia-actions {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  flex-wrap: nowrap;
}
.sofia-actions .sofia-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  justify-content: center;
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 14px;
  letter-spacing: 0;
  background: linear-gradient(135deg, #4f176d 0%, #7a37a4 48%, #5c2178 100%);
  background-size: 180% 180%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 32px -18px rgba(92, 33, 120, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation:
    sofiaCtaBreathe 3.6s ease-in-out infinite,
    sofiaCtaGradient 8s ease-in-out infinite;
}
.sofia-actions .sofia-cta::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -45%;
  width: 38%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-18deg);
  animation: sofiaCtaShine 5.4s ease-in-out infinite;
}
.sofia-actions .sofia-cta:hover {
  background: linear-gradient(135deg, #5c2178 0%, #8642ad 48%, #642381 100%);
}
.sofia-actions .sofia-cta .arrow {
  animation: sofiaCtaArrow 2.8s ease-in-out infinite;
}
@media (min-width: 561px) {
  .sofia-actions .sofia-cta {
    align-self: stretch;
    height: auto;
    border-radius: 16px;
  }
}
@keyframes sofiaCtaBreathe {
  0%, 100% {
    box-shadow:
      0 18px 32px -18px rgba(92, 33, 120, 0.68),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }
  50% {
    box-shadow:
      0 24px 42px -16px rgba(122, 55, 164, 0.88),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
}
@keyframes sofiaCtaGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes sofiaCtaShine {
  0%, 68%, 100% { left: -45%; opacity: 0; }
  74% { opacity: 0.8; }
  88% { left: 112%; opacity: 0; }
}
@keyframes sofiaCtaArrow {
  0%, 72%, 100% { transform: translateX(0); }
  82% { transform: translateX(4px); }
  90% { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .sofia-actions .sofia-cta,
  .sofia-actions .sofia-cta::after,
  .sofia-actions .sofia-cta .arrow {
    animation: none;
  }
}

.sofia-chat {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--asc-border);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 24px 60px -24px rgba(92, 33, 120, 0.28);
  overflow: hidden;
}
.sofia-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #5c2178 0%, #7a37a4 100%);
  color: #fff;
}
.sofia-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}
.sofia-avatar svg {
  width: 22px;
  height: 22px;
}
.sofia-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sofia-chat-header strong {
  display: block;
  font-size: 15px;
  font-weight: var(--asc-fw-bold);
  line-height: 1.2;
}
.sofia-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}
.sofia-status i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}
.sofia-chat-spark {
  margin-left: auto;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.85);
}
.sofia-chat-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(92, 33, 120, 0.04) 0%, transparent 50%),
    #fff;
  max-height: 460px;
  overflow-y: auto;
}
@media (min-width: 1001px) {
  .sofia-chat-body {
    max-height: none;
  }
}
.sofia-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.45;
}
.sofia-chat.is-motion-ready .sofia-msg {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
}
.sofia-chat.is-motion-ready.is-animated .sofia-msg {
  animation: sofiaMsgIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--sofia-msg-delay, 0s);
}
.sofia-chat.is-resetting .sofia-msg {
  opacity: 0 !important;
  transform: translateY(6px) scale(0.99) !important;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.sofia-chat.is-motion-ready.is-animated .sofia-msg-route svg {
  animation: sofiaRoutePulse 1.8s ease-in-out 6.6s 2;
}
.sofia-chat.is-motion-ready.is-animated .sofia-chat-spark {
  animation: sofiaSparkTwinkle 3.4s ease-in-out infinite;
}
@keyframes sofiaMsgIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes sofiaRoutePulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.18); filter: brightness(1.2); }
}
@keyframes sofiaSparkTwinkle {
  0%, 100% { opacity: 0.72; transform: rotate(0deg) scale(1); }
  50% { opacity: 1; transform: rotate(8deg) scale(1.08); }
}
.sofia-msg--bot {
  align-self: flex-start;
  background: var(--asc-purple-50);
  color: var(--asc-fg-strong);
  border-bottom-left-radius: 4px;
}
.sofia-msg--user {
  align-self: flex-end;
  background: var(--asc-bg-brand);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.sofia-msg-route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: var(--asc-fw-medium);
  color: var(--asc-purple-600);
}
.sofia-msg-route svg {
  flex: none;
  width: 16px;
  height: 16px;
}
.sofia-chat-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 16px 20px;
  box-sizing: border-box;
  border-top: 1px solid var(--asc-border);
  background: color-mix(in srgb, var(--asc-purple-50) 58%, var(--asc-bg-elev));
}
.sofia-chat-foot-item {
  display: flex;
  align-items: center;
  gap: 9px;
}
.sofia-chat-foot-item svg {
  flex: none;
  width: 17px;
  height: 17px;
  color: var(--asc-purple-600);
}
.sofia-chat-foot-item b {
  display: block;
  font-size: 13px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-purple-600);
  line-height: 1.3;
}
.sofia-chat-foot-item span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--asc-fg-muted);
  margin-top: 2px;
}
@media (max-width: 480px) {
  .sofia-chat-footer {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sofia-chat.is-motion-ready .sofia-msg {
    opacity: 1;
    transform: none;
  }
  .sofia-chat.is-motion-ready.is-animated .sofia-msg,
  .sofia-chat.is-motion-ready.is-animated .sofia-msg-route svg,
  .sofia-chat.is-motion-ready.is-animated .sofia-chat-spark {
    animation: none;
  }
}

@media (max-width: 860px) {
  .ai-new-boxes {
    grid-template-columns: 1fr;
  }
  .ai-new-box,
  .ai-new-box + .ai-new-box {
    padding: 28px 0;
    border-left: none !important;
    border-bottom: 1px solid var(--asc-border);
    border-top: none;
    text-align: left;
  }
  .ai-new-box:last-child {
    border-bottom: none;
  }
  .ai-new-box h4,
  .ai-new-box p {
    min-height: 0;
  }
  .ai-step-image {
    height: auto;
  }
  .ai-new-dash-wrap {
    padding: 24px 20px 0;
    zoom: 0.4;
    margin-right: -470px;
    padding-top: 100px;
  }
}
.ai-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1080px) {
  .ai-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
.ai-text .feat {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}
.ai-text .feat .row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}
.ai-text .feat .icon-pill {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--asc-grad-brand);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--asc-shadow-brand);
}
.ai-text .feat .icon-pill svg {
  width: 22px;
  height: 22px;
}
.ai-text .feat h4 {
  font-size: 18px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
  margin: 4px 0 6px;
  letter-spacing: -0.01em;
}
.ai-text .feat p {
  font-size: 15px;
  color: var(--asc-fg-muted);
  margin: 0;
  line-height: 1.55;
}
.ai-preview {
  background: var(--asc-bg-elev);
  border: 1px solid var(--asc-border);
  border-radius: var(--asc-r-2xl);
  padding: 24px;
  box-shadow: 0 30px 60px -20px rgba(92, 33, 120, 0.2);
  position: relative;
}
.ai-preview .ribbon {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--asc-grad-brand);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: var(--asc-fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--asc-tracking-allcaps);
  box-shadow: var(--asc-shadow-brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ai-preview .ribbon svg {
  width: 14px;
  height: 14px;
}
.ai-preview .conv-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 6px 14px;
  border-bottom: 1px solid var(--asc-divider);
  margin-bottom: 14px;
}
.ai-preview .conv-head .avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9a5bc2, #5c2178);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: var(--asc-fw-bold);
  flex: none;
}
.ai-preview .conv-head .who {
  font-size: 14px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
}
.ai-preview .conv-head .meta {
  font-size: 12px;
  color: var(--asc-fg-muted);
  margin-top: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-preview .conv-head .meta svg {
  width: 12px;
  height: 12px;
  color: var(--asc-success-500);
}
.ai-preview .bubbles {
  display: flex;
  flex-direction: column;
}
.ai-preview .bubble {
  max-width: 86%;
  margin-bottom: 8px;
}
.ai-preview .insights {
  margin-top: 18px;
  padding: 14px;
  border-radius: 14px;
  background: var(--asc-bg-subtle);
  display: grid;
  gap: 10px;
}
.ai-preview .insights-head {
  font-size: 11px;
  font-weight: var(--asc-fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--asc-tracking-allcaps);
  color: var(--asc-fg-muted);
}
.ai-preview .ins-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.ai-preview .ins-row .lbl {
  color: var(--asc-fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-preview .ins-row .lbl svg {
  width: 14px;
  height: 14px;
  color: var(--asc-purple-500);
}
.ai-preview .ins-row .v {
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
  padding: 2px 10px;
  border-radius: 999px;
}
.ai-preview .ins-row .v.pos {
  background: var(--asc-success-50);
  color: var(--asc-success-700);
}
.ai-preview .ins-row .v.neutral {
  background: var(--asc-bg-muted);
  color: var(--asc-fg);
}

/* ─────────────────── AI Stage (dashboard + iPhone) ─────────────────── */
.ai-inner.ai-inner--stage {
  grid-template-columns: 0.95fr 1.15fr;
}
@media (max-width: 1080px) {
  .ai-inner.ai-inner--stage {
    grid-template-columns: 1fr;
  }
}

.ai-stage {
  position: relative;
  height: 600px;
  border-radius: 28px;
  background:
    radial-gradient(
      120% 80% at 110% 50%,
      color-mix(in srgb, var(--asc-purple-600) 12%, transparent),
      transparent 60%
    ),
    linear-gradient(135deg, #f4ecfb 0%, #faf5ff 55%, #f1f1f8 100%);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 30px 60px -30px rgba(40, 10, 60, 0.18);
}
@media (max-width: 1080px) {
  .ai-stage {
    height: 560px;
  }
}
@media (max-width: 760px) {
  .ai-stage {
    height: 520px;
    border-radius: 22px;
  }
}

/* Dashboard ao fundo, sangrando pela direita (PNG) */
.dash-png {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  height: calc(100% - 32px);
  width: auto;
  max-width: none;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* Dashboard ao fundo, sangrando pela direita */
.dash-mock {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 36%;
  width: 780px;
  background: #fff;
  border: 1px solid var(--asc-border);
  border-radius: 16px;
  box-shadow:
    0 30px 80px -30px rgba(20, 5, 40, 0.22),
    0 8px 24px -10px rgba(20, 5, 40, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-size: 11px;
  color: var(--asc-fg);
  z-index: 1;
}
.dm-chrome {
  height: 28px;
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: #f7f5fa;
  border-bottom: 1px solid var(--asc-border);
}
.dm-traffic {
  display: flex;
  gap: 6px;
}
.dm-traffic i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #e5e7eb;
  display: block;
}
.dm-traffic i:nth-child(1) {
  background: #ff5f57;
}
.dm-traffic i:nth-child(2) {
  background: #febc2e;
}
.dm-traffic i:nth-child(3) {
  background: #28c840;
}
.dm-url {
  flex: 1;
  text-align: center;
  font-size: 10.5px;
  color: var(--asc-fg-muted);
  background: #fff;
  border-radius: 6px;
  padding: 3px 10px;
  border: 1px solid var(--asc-border);
  max-width: 320px;
  margin: 0 auto;
}

.dm-top {
  height: 52px;
  flex: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 14px;
  border-bottom: 1px solid var(--asc-divider);
}
.dm-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.dm-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--asc-purple-600);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}
.dm-ws {
  font-weight: 700;
  color: var(--asc-fg-strong);
  font-size: 12px;
  line-height: 1;
}
.dm-ws-sub {
  font-size: 10px;
  color: var(--asc-fg-muted);
  margin-top: 3px;
}
.dm-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--asc-bg-subtle);
  border: 1px solid var(--asc-border);
  color: var(--asc-fg-muted);
  font-size: 11px;
}
.dm-search svg {
  width: 12px;
  height: 12px;
}
.dm-search kbd {
  margin-left: auto;
  font-family: inherit;
  font-size: 10px;
  background: #fff;
  border: 1px solid var(--asc-border);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--asc-fg);
}
.dm-avs {
  display: flex;
  align-items: center;
}
.dm-avs span {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 2px solid #fff;
}
.dm-avs span.more {
  background: var(--asc-bg-subtle);
  color: var(--asc-fg);
  font-weight: 600;
}
.dm-avs span:first-child {
  margin-left: 0;
}

.dm-tabs {
  flex: none;
  display: flex;
  gap: 18px;
  padding: 0 14px;
  border-bottom: 1px solid var(--asc-divider);
}
.dm-tabs span {
  font-size: 11.5px;
  padding: 10px 0;
  color: var(--asc-fg-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dm-tabs span.active {
  color: var(--asc-fg-strong);
  border-color: var(--asc-purple-600);
  font-weight: 600;
}
.dm-tabs em {
  font-style: normal;
  font-size: 9.5px;
  background: var(--asc-bg-subtle);
  color: var(--asc-fg-muted);
  padding: 1px 6px;
  border-radius: 999px;
  font-weight: 600;
}
.dm-tabs span.active em {
  background: var(--asc-purple-50);
  color: var(--asc-purple-700);
}

.dm-body {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 150px 1fr 1.05fr;
}

.dm-side {
  border-right: 1px solid var(--asc-divider);
  padding: 14px 12px;
  background: #fbfafd;
}
.dm-side-title {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--asc-fg-muted);
  margin-bottom: 8px;
}
.dm-side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}
.dm-side li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  padding: 6px 8px;
  border-radius: 6px;
  color: var(--asc-fg);
}
.dm-side li.active {
  background: var(--asc-purple-50);
  color: var(--asc-purple-700);
  font-weight: 600;
}
.dm-side li em {
  font-style: normal;
  margin-left: auto;
  font-size: 10px;
  color: var(--asc-fg-muted);
  font-weight: 500;
}
.dm-side li.active em {
  color: var(--asc-purple-600);
}
.dm-side .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex: none;
}
.dm-side .lbl {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 600;
}

.dm-list {
  border-right: 1px solid var(--asc-divider);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.dm-list-head,
.dm-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.5fr;
  gap: 10px;
  padding: 10px 12px;
  align-items: center;
}
.dm-list-head {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--asc-fg-muted);
  border-bottom: 1px solid var(--asc-divider);
  font-weight: 700;
}
.dm-row {
  border-bottom: 1px solid var(--asc-divider);
  font-size: 11px;
}
.dm-row.active {
  background: var(--asc-purple-50);
}
.dm-row .who {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.dm-row .av {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 10.5px;
  flex: none;
}
.dm-row .name {
  font-weight: 600;
  color: var(--asc-fg-strong);
}
.dm-row .last {
  font-size: 10.5px;
  color: var(--asc-fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}
.dm-row .ch {
  font-size: 10.5px;
  color: var(--asc-fg);
  display: flex;
  align-items: center;
  gap: 5px;
}
.dm-row .ch-wa {
  color: #25d366;
  font-size: 12px;
  line-height: 1;
}
.dm-row .ch-ig {
  color: #e1306c;
  font-size: 12px;
  line-height: 1;
}
.dm-row .ch-wb {
  color: #7b2cbf;
  font-size: 12px;
  line-height: 1;
}
.dm-row .sla {
  font-variant-numeric: tabular-nums;
  color: var(--asc-fg-muted);
  font-size: 10.5px;
}
.dm-row .tag {
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dm-row .tag.green {
  background: #defce9;
  color: #0f7a4f;
}
.dm-row .tag.yellow {
  background: #fef3c7;
  color: #92400e;
}
.dm-row .tag.purple {
  background: #f4ecfb;
  color: #5c2178;
}
.dm-row .tag.red {
  background: #fee2e2;
  color: #991b1b;
}
.dm-row .tag.gray {
  background: var(--asc-bg-subtle);
  color: var(--asc-fg-muted);
}

.dm-detail {
  display: flex;
  flex-direction: column;
  background: #fcfbfd;
  min-width: 0;
}
.dd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--asc-divider);
}
.dd-who {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.dd-who .av {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}
.dd-name {
  font-weight: 700;
  font-size: 12px;
  color: var(--asc-fg-strong);
  line-height: 1;
}
.dd-meta {
  font-size: 10px;
  color: var(--asc-fg-muted);
  margin-top: 3px;
}
.dd-ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--asc-grad-brand);
  color: #fff;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex: none;
}
.dd-ai-pill svg {
  width: 10px;
  height: 10px;
}
.dd-thread {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dd-msg {
  font-size: 11px;
  line-height: 1.45;
  padding: 8px 11px;
  border-radius: 12px;
  max-width: 85%;
}
.dd-msg.them {
  background: var(--asc-bg-subtle);
  color: var(--asc-fg-strong);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.dd-msg.me {
  background: var(--asc-purple-600);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.dd-msg.ai {
  background: linear-gradient(135deg, #f4ecfb, #ecdcf5);
  color: var(--asc-purple-800);
  align-self: flex-start;
  border: 1px solid var(--asc-border-brand);
  border-bottom-left-radius: 4px;
}
.dd-msg-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--asc-purple-600);
  margin-bottom: 3px;
}
.dd-insights {
  border-top: 1px solid var(--asc-divider);
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #fff;
}
.dd-insights > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dd-insights span {
  font-size: 9.5px;
  color: var(--asc-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.dd-insights b {
  font-size: 11px;
  color: var(--asc-fg-strong);
  font-weight: 700;
}
.dd-insights b.pos {
  color: var(--asc-success-700);
}

/* iPhone à esquerda */
.ai-phone {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%) rotate(-3deg);
  width: 270px;
  height: 540px;
  z-index: 3;
  filter: drop-shadow(0 40px 50px rgba(20, 5, 40, 0.35));
}
.phn-frame {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a1320 0%, #0f0817 100%);
  border-radius: 42px;
  padding: 9px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.08),
    inset 0 0 0 3px #2a1f36,
    0 0 0 1px rgba(0, 0, 0, 0.4);
  position: relative;
}
.phn-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  color: var(--asc-fg);
  border-radius: 33px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phn-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  border-radius: 999px;
  background: #0a050f;
  z-index: 5;
}
.phn-status {
  flex: none;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--asc-fg-strong);
}
.phn-status > span:first-child {
  padding-top: 6px;
}
.phn-status-icons {
  display: flex;
  gap: 5px;
  align-items: center;
  padding-top: 6px;
  color: var(--asc-fg-strong);
}
.phn-status-icons svg {
  width: 14px;
  height: 11px;
}

.phn-app {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.phn-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 12px;
  border-bottom: 1px solid var(--asc-divider);
}
.phn-back,
.phn-call {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--asc-purple-600);
  display: grid;
  place-items: center;
  flex: none;
}
.phn-back svg,
.phn-call svg {
  width: 18px;
  height: 18px;
}
.phn-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--asc-purple-600);
  display: grid;
  place-items: center;
  flex: none;
}
.phn-avatar svg {
  width: 22px;
  height: 22px;
}
.phn-who {
  flex: 1;
  min-width: 0;
}
.phn-who .b {
  font-weight: 700;
  color: var(--asc-fg-strong);
  font-size: 14px;
}
.phn-who .s {
  font-size: 11px;
  color: var(--asc-fg-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px;
}
.phn-who .s i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--asc-success-500);
  display: inline-block;
}

.phn-thread {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background:
    radial-gradient(
      50% 30% at 50% 0%,
      rgba(123, 44, 191, 0.06),
      transparent 70%
    ),
    #f8f6fb;
}
.phn-date {
  align-self: center;
  font-size: 10px;
  color: var(--asc-fg-muted);
  background: rgba(255, 255, 255, 0.7);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 4px;
}
.phn-bubble {
  font-size: 12.5px;
  line-height: 1.4;
  padding: 8px 11px 18px;
  border-radius: 14px;
  max-width: 84%;
  position: relative;
  background: #fff;
  color: var(--asc-fg-strong);
  box-shadow: 0 1px 2px rgba(20, 5, 40, 0.06);
}
.phn-bubble.them {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.phn-bubble.me {
  align-self: flex-end;
  background: var(--asc-purple-600);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.phn-bubble.ai {
  align-self: flex-start;
  background: linear-gradient(135deg, #f4ecfb, #ecdcf5);
  color: var(--asc-purple-800);
  border: 1px solid var(--asc-border-brand);
  border-bottom-left-radius: 4px;
  padding-top: 6px;
}
.phn-ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--asc-purple-600);
  margin-bottom: 4px;
}
.phn-ai-tag svg {
  width: 11px;
  height: 11px;
}
.phn-time {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: 9.5px;
  color: var(--asc-fg-muted);
}
.phn-bubble.me .phn-time,
.phn-time-me {
  color: rgba(255, 255, 255, 0.7);
}

.phn-input {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 10px;
  background: #fff;
  border-top: 1px solid var(--asc-divider);
  font-size: 12px;
  color: var(--asc-fg-muted);
}
.phn-input span {
  flex: 1;
  padding: 6px 12px;
  background: var(--asc-bg-subtle);
  border-radius: 999px;
}
.phn-i-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--asc-purple-600);
  display: grid;
  place-items: center;
  flex: none;
}
.phn-i-btn svg {
  width: 18px;
  height: 18px;
}
.phn-home {
  flex: none;
  height: 18px;
  display: grid;
  place-items: center;
}
.phn-home::after {
  content: "";
  width: 110px;
  height: 4px;
  border-radius: 999px;
  background: var(--asc-ink-200);
}

/* Layout responsivo: empilha em telas estreitas */
@media (max-width: 1180px) {
  .dash-mock {
    left: 40%;
    width: 720px;
  }
  .dash-png {
    right: -80px;
  }
  .ai-phone {
    width: 240px;
    height: 480px;
    left: 5%;
  }
}
@media (max-width: 980px) {
  .ai-stage {
    height: 540px;
  }
  .dash-mock {
    left: 38%;
    width: 640px;
    top: 24px;
    bottom: 24px;
  }
  .dash-png {
    right: -60px;
  }
  .ai-phone {
    width: 220px;
    height: 440px;
    left: 4%;
  }
}
@media (max-width: 760px) {
  .ai-stage {
    height: 480px;
  }
  .dash-mock {
    left: 42%;
    width: 560px;
  }
  .dash-png {
    right: -50px;
    height: calc(100% - 24px);
  }
  .ai-phone {
    width: 190px;
    height: 380px;
    left: 4%;
  }
  .phn-thread {
    padding: 10px 9px;
  }
  .phn-bubble {
    font-size: 11px;
    padding: 7px 9px 16px;
  }
}

/* ─────────────────── Channels (multicanais, dentro de #ia) ─────────────────── */
.ch-section-head .eyebrow {
  margin-bottom: 18px;
}
/* Título (esq.) + texto de apoio (dir.) na mesma linha de base, no topo */
.ch-head-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
}
.ch-head-main {
  max-width: 620px;
}
.ch-head-grid .lead {
  margin: 30px 0 0;
  max-width: 460px;
}
@media (max-width: 900px) {
  .ch-head-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ch-head-grid .lead {
    margin-top: 0;
  }
}
.ch-subtitle {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--asc-fg);
  font-weight: var(--asc-fw-medium);
  max-width: 560px;
}

.ch-benefits {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .ch-benefits {
    grid-template-columns: 1fr;
  }
}
.ch-benefit {
  padding: 28px 24px;
  border: 1px solid var(--asc-border);
  border-radius: 16px;
  background: var(--asc-bg-elev);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ch-benefit:hover {
  border-color: var(--asc-border-brand);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -8px rgba(92, 33, 120, 0.18);
}
.ch-benefit-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--asc-purple-50);
  color: var(--asc-purple-600);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: background 0.2s ease, color 0.2s ease;
}
.ch-benefit:hover .ch-benefit-ico {
  background: var(--asc-purple-600);
  color: #fff;
}
.ch-benefit-ico svg {
  width: 22px;
  height: 22px;
}
.ch-benefit h3 {
  font-size: 18px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  line-height: 1.25;
}
.ch-benefit p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--asc-fg-muted);
  margin: 0;
}

.ch-channels-head {
  margin-top: 56px;
  margin-bottom: 20px;
  text-align: center;
}
.ch-channels-label {
  display: inline-block;
  font-size: 13px;
  font-weight: var(--asc-fw-bold);
  letter-spacing: var(--asc-tracking-allcaps);
  text-transform: uppercase;
  color: var(--asc-fg-muted);
}

.ch-marquee {
  position: relative;
  overflow: hidden;
  /* respiro vertical para o lift + sombra do hover não serem cortados */
  padding: 14px 0;
  margin: -14px 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}
.ch-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: asc-ch-scroll 45s linear infinite;
  will-change: transform;
}
.ch-marquee:hover .ch-track {
  animation-play-state: paused;
}
@keyframes asc-ch-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ch-track {
    animation: none;
  }
}
.ch-logo {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--asc-border);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px -4px rgba(36, 12, 48, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.ch-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -8px rgba(92, 33, 120, 0.35);
}
.ch-logo img {
  max-width: 60%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.ch-logo--googlechat img,
.ch-logo--x img {
  max-width: 48%;
  max-height: 48%;
}
/* o raster do GMB tem margem branca embutida — compensa para igualar aos SVGs */
.ch-logo--google-my-business img {
  max-width: 100%;
  max-height: 100%;
  transform: scale(1.18);
}
@media (max-width: 880px) {
  .ch-track {
    gap: 32px;
    animation-duration: 35s;
  }
  .ch-logo {
    width: 60px;
    height: 60px;
  }
}

.ch-grid-big {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px) {
  .ch-grid-big {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .ch-grid-big {
    grid-template-columns: 1fr;
  }
}
.chcard {
  border: 1px solid var(--asc-border);
  border-radius: var(--asc-r-xl);
  padding: 22px 20px;
  background: var(--asc-bg-elev);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.chcard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--c, var(--asc-purple-500));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.chcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--asc-shadow-sm);
  border-color: var(--asc-border-strong);
}
.chcard:hover::before {
  opacity: 1;
}
.chcard .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c) 12%, white);
  color: var(--c);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.chcard .ico svg {
  width: 22px;
  height: 22px;
}
.chcard .ico.brand-ico {
  background: color-mix(in srgb, var(--c) 12%, white);
  color: var(--c);
  border: none;
  padding: 0;
}
.chcard .brand-badge {
  display: contents;
  color: inherit;
}
.chcard .brand-badge svg {
  width: 22px;
  height: 22px;
}
.chcard .ico svg.brand-logo {
  width: 22px;
  height: 22px;
}
.chcard h4 {
  font-size: 16px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
  margin: 0 0 6px;
}
.chcard p {
  font-size: 13px;
  color: var(--asc-fg-muted);
  margin: 0;
  line-height: 1.5;
}

/* ─────────────────── Comparativo ─────────────────── */
.compare {
  padding: clamp(72px, 9vw, 100px) 0;
  background-color: #0a0511;
  color: #fff;
  overflow: hidden;
  position: relative;
}
/* Glow discreto no topo-esquerdo — profundidade sem neon */
.compare::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(44% 40% at 12% 2%, rgba(122, 55, 164, 0.16) 0%, transparent 62%);
  pointer-events: none;
}
/* Arcos da marca como textura premium sutil, confinada ao rodapé */
.compare-arcs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 0;
  background: url('../img/compare-bg.webp') center bottom / cover no-repeat;
  pointer-events: none;
}
/* Véu escuro suave por cima dos arcos, integrando ao fundo sem apagá-los */
.compare-arcs::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 5, 17, 0) 0%, rgba(10, 5, 17, 0.55) 100%);
  pointer-events: none;
}
.compare > .container {
  position: relative;
  z-index: 1;
}
.compare-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
}
.compare-head .eyebrow {
  margin-bottom: 14px;
  color: var(--asc-purple-100);
}
.compare-head .h-section {
  color: #fff;
}
.compare-head .h-section em {
  font-style: normal;
  color: #c9a8e0;
  font-weight: var(--asc-fw-bold);
  margin: 0 6px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin-inline: auto;
}
@media (max-width: 760px) {
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 520px;
  }
}
.compare-col {
  padding: 28px 26px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.compare-col--bad {
  border-left: 2px solid rgba(252, 165, 165, 0.4);
}
.compare-col--good {
  border-left: 2px solid rgba(201, 168, 224, 0.5);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.compare-col--good::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 5%,
    rgba(201, 168, 224, 0.55) 25%,
    #c9a8e0 50%,
    rgba(201, 168, 224, 0.55) 75%,
    transparent 95%);
  box-shadow: 0 0 16px 1px rgba(201, 168, 224, 0.35);
  pointer-events: none;
}
.compare-col--good::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -50%;
  width: 40%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.10), transparent);
  transform: skewX(-18deg);
  animation: compareGoodShine 7s ease-in-out 1.2s infinite;
}
.compare-col--good .compare-col-head,
.compare-col--good .compare-list {
  position: relative;
  z-index: 1;
}
.compare-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.compare-col-head svg {
  flex: none;
  width: 16px;
  height: 16px;
}
.compare-col--bad .compare-col-head svg {
  color: #fca5a5;
}
.compare-col--good .compare-col-head svg {
  color: #c9a8e0;
}
.compare-col-head h3 {
  font-size: 16px;
  font-weight: var(--asc-fw-medium);
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}
.compare-list li {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.compare-list li::before {
  content: "";
  flex: none;
  width: 4px;
  height: 4px;
  margin-top: 9px;
  border-radius: 999px;
  opacity: 0.6;
}
.compare-col--bad .compare-list li::before {
  background: #fca5a5;
}
.compare-col--good .compare-list li::before {
  background: #c9a8e0;
}
.compare-col--good .compare-list li {
  color: rgba(255, 255, 255, 0.92);
}
.compare-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
@keyframes compareGoodShine {
  0%, 68%, 100% { left: -50%; opacity: 0; }
  74% { opacity: 0.7; }
  88% { left: 112%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .compare-col--good::after {
    animation: none;
    opacity: 0;
  }
}

/* ─────────────────── Segmentos ─────────────────── */
.segments {
  padding: 88px 0;
  border-top: 1px solid var(--asc-divider);
}
.segments-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.segments-head .eyebrow {
  margin-bottom: 14px;
}
.segments-head .h-section em {
  font-style: normal;
  color: var(--asc-purple-600);
}
.segments-sub {
  margin: 18px auto 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--asc-fg-muted);
}
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .segments {
    padding: 64px 0;
  }
  .segments-grid {
    grid-template-columns: 1fr;
  }
}
.segment-card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  border: 1px solid var(--asc-border);
  border-radius: 16px;
  background: var(--asc-bg-elev);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.segment-card:hover {
  border-color: var(--asc-border-brand);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -8px rgba(92, 33, 120, 0.18);
}

.segment-card:focus-visible {
  outline: 3px solid var(--asc-purple-600);
  outline-offset: 3px;
}
.segment-card--media {
  min-height: 200px;
  padding-right: 46%;
}
.segment-copy {
  position: relative;
  z-index: 2;
}
.segment-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: calc(56% + 1px);
  z-index: 1;
  pointer-events: none;
}
.segment-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--asc-bg-elev) 0%, rgba(255, 255, 255, 0.78) 24%, rgba(255, 255, 255, 0) 58%);
  z-index: 1;
}
.segment-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}
.segment-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--asc-purple-50);
  color: var(--asc-purple-600);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: background 0.2s ease, color 0.2s ease;
}
.segment-card:hover .segment-ico {
  background: var(--asc-purple-600);
  color: #fff;
}
.segment-ico svg {
  width: 24px;
  height: 24px;
}
.segment-card h3 {
  font-size: 19px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0 0 8px;
}
.segment-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--asc-fg-muted);
  margin: 0;
}
.segments-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1120px) {
  .segment-card--media {
    padding-right: 42%;
  }
  .segment-media {
    width: 52%;
  }
}
@media (max-width: 560px) {
  .segment-card--media {
    min-height: 220px;
    padding-right: 42%;
  }
  .segment-media {
    width: 50%;
  }
  .segment-card p {
    max-width: 100%;
  }
}

/* ─────────────────── Meta partner ─────────────────── */
.meta-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--asc-ink-900) 0%, #1a0d28 100%);
  color: #fff;
  overflow: hidden;
}
.meta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      60% 80% at 100% 0%,
      rgba(122, 55, 164, 0.2),
      transparent 60%
    ),
    radial-gradient(
      40% 60% at 0% 100%,
      rgba(46, 144, 250, 0.1),
      transparent 60%
    );
  pointer-events: none;
}
.meta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .meta-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
.meta-section h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: var(--asc-fw-bold);
  color: #fff;
  margin: 18px 0 0;
}
.meta-section h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #c8a4e4 0%, #2e90fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.meta-section .eyebrow {
  color: var(--asc-lilac-400);
}
.meta-section p.lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
}
.on-dark-strong {
  color: #fff;
  font-weight: var(--asc-fw-medium);
}
.meta-stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.meta-stats .stat .n {
  font-size: 48px;
  font-weight: var(--asc-fw-black);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.meta-stats .stat .l {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: var(--asc-tracking-allcaps);
  font-weight: var(--asc-fw-medium);
}
.meta-badge-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--asc-r-2xl);
  padding: 40px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.meta-badge-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 144, 250, 0.25),
    transparent 60%
  );
}
.meta-badge-card .badge-img {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 24px;
  position: relative;
}
.meta-badge-card h3 {
  font-size: 22px;
  color: #fff;
  margin: 0 0 8px;
  font-weight: var(--asc-fw-bold);
  letter-spacing: -0.01em;
  position: relative;
}
.meta-badge-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin: 0;
  position: relative;
}
@media (max-width: 560px) {
  .meta-section {
    padding: 56px 0 64px;
  }
  .meta-inner {
    gap: 34px;
  }
  .meta-section h2 {
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: 0;
  }
  .meta-section p.lead {
    font-size: 15px;
    line-height: 1.58;
    max-width: 100%;
  }
  .meta-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
    margin-top: 30px;
  }
  .meta-stats .stat .n {
    font-size: 38px;
  }
  .meta-stats .stat .l {
    font-size: 11px;
    line-height: 1.35;
  }
  .meta-badge-card {
    border-radius: 18px;
    padding: 28px 24px;
  }
  .meta-badge-card .badge-img {
    width: 180px;
  }
  .meta-badge-card h3 {
    font-size: 18px;
  }
  .meta-badge-card p {
    font-size: 13px;
  }
}

/* ─────────────────── Use cases ─────────────────── */
.uc {
  padding: 88px 0;
}
.uc-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}
.uc-head .lead {
  margin: 24px auto 0;
}
.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) {
  .uc-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .uc-grid {
    grid-template-columns: 1fr;
  }
}
.uccard {
  position: relative;
  border-radius: var(--asc-r-2xl);
  padding: 28px 26px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: var(--bg, var(--asc-purple-600));
  transition: transform 0.2s ease;
}
.uccard:hover {
  transform: translateY(-4px);
}
.uccard .ictag {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: var(--asc-fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--asc-tracking-allcaps);
  backdrop-filter: blur(6px);
}
.uccard h4 {
  margin: auto 0 8px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: var(--asc-fw-bold);
  letter-spacing: -0.02em;
}
.uccard .on-dark-title {
  color: #fff;
}
.uccard p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  margin: 0;
}
.uccard.light {
  background: var(--asc-bg-subtle);
  color: var(--asc-fg-strong);
  border: 1px solid var(--asc-border);
}
.uccard.light p {
  color: var(--asc-fg-muted);
}
.uccard.light .ictag {
  background: var(--asc-purple-50);
  color: var(--asc-purple-700);
  border: 1px solid var(--asc-border-brand);
}
.uccard .deco {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

/* ─────────────────── Testimonials em vídeo ─────────────────── */
.vtestis {
  padding: 100px 0;
  background: var(--asc-bg-elev);
  border-bottom: 1px solid var(--asc-divider);
}
.vtestis-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}
.vtestis-head > div:first-child {
  max-width: 720px;
}
.vtestis-awards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: none;
}
.award-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  background: var(--asc-bg);
  border: 1px solid var(--asc-border);
  border-radius: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.award-pill:hover {
  transform: translateY(-2px);
  border-color: var(--asc-border-strong);
  box-shadow: 0 12px 24px -16px rgba(0, 0, 0, 0.18);
}
.award-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
}
.award-ico svg {
  width: 18px;
  height: 18px;
}
.award-ico--img {
  background: transparent !important;
  border-radius: 8px;
  overflow: hidden;
}
.award-ico--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.award-ico--meta {
  background: #fff !important;
  padding: 4px;
}
.award-t {
  font-size: 13px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
  letter-spacing: -0.01em;
  line-height: 1;
}
.award-s {
  font-size: 11px;
  color: var(--asc-fg-muted);
  margin-top: 3px;
}

.vtestis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vcard {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  overflow: hidden;
  background: #1a1320;
  isolation: isolate;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.2, 0, 0, 1),
    box-shadow 0.35s ease;
}
.vcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(20, 6, 36, 0.35);
}
.vmedia {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.2, 0, 0, 1),
    filter 0.35s ease;
  z-index: 0;
}
.vcard:hover .vmedia {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.vshade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 7, 28, 0) 35%,
    rgba(15, 7, 28, 0.55) 70%,
    rgba(15, 7, 28, 0.92) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.vplay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
  z-index: 3;
}
.vplay svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}
.vplay::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  animation: vplay-pulse 2.4s ease-out infinite;
}
@keyframes vplay-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
.vcard:hover .vplay {
  background: var(--asc-purple-600);
  transform: scale(0.85);
  opacity: 0;
}

.vbody {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 26px 26px;
  z-index: 2;
  color: #fff;
}
.vbody blockquote {
  margin: 0 0 22px;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.012em;
  font-weight: var(--asc-fw-medium);
  color: #fff;
  text-wrap: pretty;
}
.vbody blockquote em {
  font-style: normal;
  color: #fff;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(123, 44, 191, 0.55) 60%
  );
  padding: 0 2px;
}
.vfoot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.vname {
  font-size: 14px;
  font-weight: var(--asc-fw-bold);
  color: #fff;
  letter-spacing: -0.01em;
}
.vrole {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
.vlogo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  font-style: italic;
  opacity: 0.95;
}

@media (max-width: 980px) {
  .vtestis-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .vtestis-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .vcard {
    aspect-ratio: 4 / 5;
  }
}
@media (min-width: 981px) and (max-width: 1180px) {
  .vbody blockquote {
    font-size: 17px;
  }
}

/* ─────────────────── Testimonial (legacy — sem uso) ─────────────────── */
.testi {
  padding: 80px 0;
  background:
    radial-gradient(
      40% 60% at 80% 20%,
      rgba(122, 55, 164, 0.08),
      transparent 60%
    ),
    var(--asc-ink-25);
  border-top: 1px solid var(--asc-divider);
  border-bottom: 1px solid var(--asc-divider);
}
.testi-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.testi-mark {
  font-size: 72px;
  line-height: 0.6;
  color: var(--asc-purple-200);
  font-family: serif;
  margin-bottom: 18px;
}
.testi blockquote {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--asc-fg-strong);
  font-weight: var(--asc-fw-medium);
  margin: 0 0 40px;
}
.testi blockquote em {
  font-style: normal;
  color: var(--asc-purple-600);
}
.testi .who {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.testi .who .av {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9a5bc2, #5c2178);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: var(--asc-fw-bold);
  font-size: 18px;
}
.testi .who .name {
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
}
.testi .who .role {
  font-size: 13px;
  color: var(--asc-fg-muted);
  margin-top: 2px;
}

/* ─────────────────── Final CTA ─────────────────── */
.cta {
  padding: 140px 0;
  background: var(--asc-grad-aurora);
  color: #fff;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      30% 50% at 10% 100%,
      rgba(189, 138, 217, 0.25),
      transparent 60%
    ),
    radial-gradient(
      30% 50% at 100% 0%,
      rgba(160, 45, 176, 0.3),
      transparent 60%
    );
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: baseline;
}
@media (max-width: 980px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.cta h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: var(--asc-fw-regular);
  margin: 0;
  color: #fff;
}
.cta h2 b {
  font-weight: var(--asc-fw-black);
}
.cta h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #e5c8ff, #b388e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 20px;
  line-height: 1.55;
  max-width: 520px;
}

/* ─── Inline CTA form ─── */
.cta-form {
  position: relative;
  width: 100%;
  max-width: 400px;
  justify-self: end;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.55);
  color: var(--asc-fg-strong);
}
@media (max-width: 980px) {
  .cta-form {
    justify-self: stretch;
    max-width: 480px;
    margin: 0 auto;
  }
}
.cta-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.cta-steps {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-steps .step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: var(--asc-fw-medium);
  color: var(--asc-fg-muted);
  transition: color 0.2s ease;
}
.cta-steps .step i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--asc-bg-subtle);
  font-style: normal;
  font-size: 12px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-muted);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.cta-steps .step.is-active {
  color: var(--asc-fg-strong);
}
.cta-steps .step.is-active i {
  background: var(--asc-purple-700);
  color: #fff;
}
.cta-steps .step.is-done i {
  background: var(--asc-purple-100, #efe3fb);
  color: var(--asc-purple-700);
}
.cta-steps .step-sep {
  width: 22px;
  height: 1px;
  background: var(--asc-divider);
}
.cta-step-count {
  font-size: 12px;
  font-weight: var(--asc-fw-medium);
  color: var(--asc-fg-muted);
  letter-spacing: var(--asc-tracking-allcaps);
  text-transform: uppercase;
}
.cta-step-count b {
  color: var(--asc-fg-strong);
  font-weight: var(--asc-fw-bold);
}

.cta-step {
  display: none;
  border: 0;
  padding: 0;
  margin: 0;
}
.cta-step.is-active {
  display: block;
  animation: cta-step-in 0.35s ease both;
}
@keyframes cta-step-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-full {
  margin-top: 16px;
}
.field > span,
.field .field-label {
  font-size: 12px;
  font-weight: var(--asc-fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--asc-tracking-allcaps);
  color: var(--asc-fg-muted);
}
.field input,
.field select {
  height: 46px;
  background: var(--asc-bg-subtle);
  border: 1px solid var(--asc-border);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--asc-fg-strong);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}
.field input::placeholder {
  color: var(--asc-fg-muted);
  opacity: 0.7;
}
.field input:focus,
.field select:focus {
  border-color: var(--asc-purple-600);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(92, 33, 120, 0.12);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='1 1.5 6 6.5 11 1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.radio-card {
  position: relative;
  cursor: pointer;
}
.radio-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.radio-card .rc-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 12px 14px;
  border: 1px solid var(--asc-border);
  background: var(--asc-bg-subtle);
  border-radius: 12px;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    transform 0.15s ease;
}
.radio-card .rc-body svg {
  width: 18px;
  height: 18px;
  color: var(--asc-fg-muted);
}
.radio-card .rc-body b {
  font-size: 13px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
}
.radio-card .rc-body em {
  font-style: normal;
  font-size: 12px;
  color: var(--asc-fg-muted);
}
.radio-card:hover .rc-body {
  border-color: var(--asc-border-strong);
  background: #fff;
}
.radio-card input:checked + .rc-body {
  background: var(--asc-purple-100, #f4ecfb);
  border-color: var(--asc-purple-600);
  box-shadow: 0 0 0 1px var(--asc-purple-600) inset;
}
.radio-card input:checked + .rc-body svg,
.radio-card input:checked + .rc-body b {
  color: var(--asc-purple-700);
}

.lgpd {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--asc-fg-muted);
  line-height: 1.5;
}
.lgpd input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1px solid var(--asc-border-strong);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}
.lgpd input:checked {
  background: var(--asc-purple-700);
  border-color: var(--asc-purple-700);
}
.lgpd input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.lgpd sup {
  color: var(--asc-purple-600);
}

.cta-form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cta-form-foot .btn {
  flex: 1 1 auto;
  justify-content: center;
  padding: 0 18px;
}
.cta-form-foot .btn-primary,
.cta-form-foot [type="submit"],
.cta-form-foot [data-action="next"] {
  background: var(--asc-purple-700);
  color: #fff;
}
.cta-form-foot [data-action="next"]:hover,
.cta-form-foot [type="submit"]:hover {
  background: var(--asc-purple-600);
}
.cta-form-foot [data-action="prev"] {
  flex: 0 0 auto;
  background: transparent;
  color: var(--asc-fg-strong);
  border: 1px solid var(--asc-border);
  backdrop-filter: none;
}
.cta-form-foot [data-action="prev"]:hover {
  background: var(--asc-bg-subtle);
}
.cta-foot-note {
  display: none;
}

/* Success card */
.cta-success.is-active {
  display: block;
}
.cta-success-card {
  text-align: center;
  padding: 4px 4px 0;
}
.cta-success-ico {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 4px auto 18px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--asc-purple-700),
    var(--asc-purple-500, #9457c7)
  );
  color: #fff;
  box-shadow: 0 14px 36px -10px rgba(92, 33, 120, 0.55);
}
.cta-success-ico svg {
  width: 28px;
  height: 28px;
}
.cta-success-card .eyebrow {
  color: var(--asc-fg-brand);
}
.cta-success-card h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
  margin: 8px 0 10px;
}
.cta-success-card p {
  color: var(--asc-fg-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
.cta-success-card p b {
  color: var(--asc-fg-strong);
}
.cta-success-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--asc-divider);
  font-size: 12px;
  color: var(--asc-fg-muted);
}
.cta-success-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cta-success-meta svg {
  width: 14px;
  height: 14px;
  color: var(--asc-purple-600);
}

/* ── Integrated CTA Chat ─────────────────────────────────── */
.cta-chat {
  position: relative;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 600px;
  color: #fff;
}
.cc-header {
  background: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 16px;
  flex-shrink: 0;
}
.cc-hav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.cc-hav .cta-chat-logo {
  width: 30px;
  height: auto;
}
.cc-hav-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cc-hinfo b {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: var(--asc-fw-bold);
  line-height: 1.3;
}
.cc-hinfo span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  margin-top: 2px;
}
.cc-dot-online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.16);
  display: inline-block;
  flex-shrink: 0;
}
.cc-scroll-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
}
.cc-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 14px 30px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cc-messages::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.cc-scrollbar {
  position: absolute;
  top: 18px;
  right: 11px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.cc-scrollbar span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 36px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.74),
    rgba(255, 255, 255, 0.36)
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 8px 18px rgba(0, 0, 0, 0.18);
  transition:
    height 0.12s ease,
    transform 0.12s ease;
}
.cc-scroll-wrap.is-scrollable .cc-scrollbar {
  opacity: 0.76;
}
.cc-scroll-wrap:hover .cc-scrollbar {
  opacity: 1;
}
.cc-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.cc-row.cc-user {
  flex-direction: row-reverse;
}
.cc-bav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 10px 24px -16px rgba(0, 0, 0, 0.65);
}
.cc-bav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cc-bubble {
  position: relative;
  max-width: min(78%, 470px);
  padding: 10px 14px 11px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  animation: ccIn 0.22s ease;
  word-break: break-word;
}
.cc-bubble.cc-bot {
  background: #fff;
  color: #1a0d26;
  border-top-left-radius: 3px;
  box-shadow: 0 10px 22px -18px rgba(0, 0, 0, 0.5);
}
.cc-bubble.cc-user {
  background: #dcf8c6;
  color: #102114;
  border-top-right-radius: 3px;
  box-shadow: 0 10px 22px -20px rgba(0, 0, 0, 0.55);
}
.cc-bubble.cc-bot::before,
.cc-bubble.cc-user::before {
  content: "";
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
}
.cc-bubble.cc-bot::before {
  left: -7px;
  background: linear-gradient(225deg, #fff 0 50%, transparent 50% 100%);
}
.cc-bubble.cc-user::before {
  right: -7px;
  background: linear-gradient(135deg, #dcf8c6 0 50%, transparent 50% 100%);
}
.cc-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-radius: 14px;
  border-top-left-radius: 3px;
  width: fit-content;
  box-shadow: 0 10px 22px -18px rgba(0, 0, 0, 0.5);
  animation: ccIn 0.22s ease;
}
.cc-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8e779d;
  animation: ccDot 1.2s infinite;
  flex-shrink: 0;
}
.cc-typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.cc-typing span:nth-child(3) {
  animation-delay: 0.4s;
}
.cc-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
  padding: 4px 0 0 38px;
  animation: ccIn 0.25s ease;
}
.cc-choice {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #4b176a;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.14s,
    color 0.14s,
    border-color 0.14s;
  font-family: inherit;
  line-height: 1;
}
.cc-choice:hover,
.cc-choice:focus {
  background: #dcf8c6;
  color: #102114;
  border-color: rgba(220, 248, 198, 0.9);
  outline: none;
}
.cc-input-area {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 0 0;
  background: transparent;
  flex-shrink: 0;
}
.cc-input-area input,
.cc-input-area select {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  outline: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-family: inherit;
  transition:
    background 0.15s,
    border-color 0.15s,
    box-shadow 0.15s;
  min-width: 0;
}
.cc-input-area select {
  appearance: none;
  cursor: pointer;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%) calc(100% - 21px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%) calc(100% - 17px) 50% / 6px 6px no-repeat,
    rgba(255, 255, 255, 0.1);
  padding-right: 42px;
}
.cc-input-area select option {
  color: #1a0d26;
  background: #fff;
}
.cc-input-area input:focus,
.cc-input-area select:focus {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}
.cc-input-area select:focus {
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%) calc(100% - 21px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%) calc(100% - 17px) 50% / 6px 6px no-repeat,
    rgba(255, 255, 255, 0.16);
}
.cc-input-area input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}
.cc-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition:
    background 0.14s,
    transform 0.1s;
}
.cc-send:hover {
  background: #20bd5b;
}
.cc-send:active {
  transform: scale(0.92);
}
.cc-send svg {
  width: 18px;
  height: 18px;
}
.cc-done-row {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  animation: ccIn 0.3s ease;
}
.cc-done-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 253, 244, 0.94);
  border: 1px solid rgba(187, 247, 208, 0.82);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 13px;
  color: #15803d;
  font-weight: 500;
}
.cc-done-badge svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .cta-chat {
    min-height: 420px;
    height: auto;
  }
  .cc-scroll-wrap {
    min-height: 280px;
  }
}
@media (max-width: 560px) {
  .cta-chat {
    min-height: 0;
  }
  .cc-header {
    padding-bottom: 14px;
  }
  .cc-scroll-wrap {
    min-height: 260px;
  }
  .cc-messages {
    padding-bottom: 16px;
  }
  .cc-bubble {
    max-width: calc(100% - 42px);
  }
  .cc-input-area {
    gap: 8px;
  }
}

@media (max-width: 760px) {
  .impact-section,
  .ai-section,
  .ai-section--new,
  .vtestis,
  .cta {
    padding-top: min(80px, 20vw);
    padding-bottom: min(80px, 20vw);
  }

  .impact-section {
    padding-bottom: 0;
  }
}
@keyframes ccIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ccDot {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}
