:root {
  --bg: #05010a;
  --bg-alt: #0b0618;
  --primary: #a855ff;
  --primary-soft: rgba(168, 85, 255, 0.25);
  --accent: #22d3ee;
  --text-main: #f9f5ff;
  --text-muted: #beb7d4;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --blur: 18px;
  --max-width: 1120px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  background:
    radial-gradient(circle at 0% 0%, rgba(236, 72, 153, 0.18), transparent 60%),
    radial-gradient(circle at 100% 0%, rgba(129, 140, 248, 0.22), transparent 65%),
    linear-gradient(135deg, #05010a 0%, #120726 45%, #05010a 100%);

  color: var(--text-main);
  min-height: 100vh;
}

/* PAGE WRAPPER */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  max-width: 100%;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.94),
    rgba(15, 23, 42, 0.9)
  );
  border-bottom: 1px solid var(--border-subtle);
  padding: 2px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.topbar__login {
  min-width: 84px;
}

/* LOGO */
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.logo:hover {
  transform: translateY(-1px) scale(1.04);
  filter: drop-shadow(0 10px 22px rgba(168, 85, 255, 0.24));
}

.logo:focus-visible {
  outline: 2px solid rgba(232, 121, 249, 0.95);
  outline-offset: 3px;
}

.logo__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.18s ease;
}

.nav__link:hover {
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.9);
}

/* BUTTONS */
.btn {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: 0.18s ease;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(90deg, #ec4899, #a855ff);
  border-color: transparent;
  box-shadow: 0 16px 35px rgba(168, 85, 255, 0.35);
}

.btn--primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn--outline {
  background: transparent;
  border-color: rgba(248, 250, 252, 0.25);
}

.btn--outline:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* MENU MOBILE */
.topbar__menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.topbar__menu span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* HERO – layout centralizado */
/* ==========================
   HERO — MINIMAL CLEAN
========================== */

.hero--minimal {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 16px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* TÍTULO PREMIUM */
.hero__title--soft {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 auto 18px;
  color: var(--text-main);
}

/* GRADIENT SUAVE */
.hero__highlight {
  background: linear-gradient(90deg, #FF4F8B, #9B4DFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* SUBTÍTULO */
.hero__subtitle {
  margin: 0 auto 26px;
  max-width: 640px;
  font-size: 1rem;
  color: var(--text-muted);
}

/* CTAs */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 26px;
}

/* PILLS */
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.hero__pill {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

/* NOVO CARD DEMO EMBAIXO DO HERO */
.hero-demo-card {
  margin-top: 4px;
  width: 100%;
  max-width: 760px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.55);
  padding: 24px 26px;
}

.hero-demo__header {
  margin-bottom: 18px;
}

.hero-demo__chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  font-size: 0.82rem;
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.hero-demo__body {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
}

.hero-demo__img {
  width: 100%;
  height: 170px;
  background:
    linear-gradient(135deg, rgba(236, 72, 153, 0.45), rgba(59, 130, 246, 0.55)),
    url("https://images.unsplash.com/photo-1495562569060-2eec283d3391?auto=format&w=900&q=80")
      center/cover;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.hero-demo__text h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
  font-weight: 600;
}

.hero-demo__text p {
  margin: 0 0 12px;
  opacity: 0.9;
  font-size: 0.95rem;
}

.hero-demo__text ul {
  margin: 6px 0 0;
  padding-left: 18px;
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Hero responsivo (apenas o necessário) */
@media (max-width: 900px) {
  .hero {
    padding-top: 40px;
    padding-bottom: 64px;
  }

  .hero-demo-card {
    padding: 20px 18px;
  }
}


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

  .hero-demo__img {
    height: 150px;
  }

  .hero__title {
    font-size: 1.9rem;
  }
}
/* HERO – novo título premium */
.hero__title--highlight {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 14px;
  position: relative;
  z-index: 2;

  /* leve animação para dar sensação de modernidade */
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp .7s ease forwards;
}

.hero__title-gradient {
  background: linear-gradient(90deg, #ff4f9a, #a855ff, #4dbdfd, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* glow neon */
  text-shadow:
     0 0 14px rgba(168, 85, 255, 0.45),
     0 0 22px rgba(34, 211, 238, 0.35);

  /* outline leve */
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.15);
}

/* animação */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* glow de fundo atrás do título */
.hero__title--highlight::after {
  content: "";
  position: absolute;
  inset: -20px -40px;
  background: radial-gradient(circle,
    rgba(168, 85, 255, 0.25) 0%,
    rgba(34, 211, 238, 0.15) 45%,
    transparent 70%
  );
  filter: blur(35px);
  z-index: -1;
}


/* MARQUEE – chips glow de temas */
.hero--split {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 52px 16px 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  position: relative;
  width: 100%;
  overflow: visible;
}

.hero--split::before,
.hero--split::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(38px);
  opacity: 0.75;
}

.hero--split::before {
  width: 280px;
  height: 280px;
  left: -90px;
  top: 58px;
  background: rgba(236, 72, 153, 0.16);
}

.hero--split::after {
  width: 340px;
  height: 340px;
  right: -120px;
  top: 96px;
  background: rgba(34, 211, 238, 0.13);
}

.hero--split .hero__content {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(248, 250, 252, 0.84);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec4899, #22d3ee);
  box-shadow: 0 0 18px rgba(236, 72, 153, 0.75);
}

.hero--split .hero__title--soft {
  margin: 0 0 16px;
  max-width: 600px;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hero--split .hero__highlight {
  background: linear-gradient(115deg, #a855ff 0%, #ff4f8b 34%, #a855ff 75%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 22px 44px rgba(168, 85, 255, 0.22));
}

.hero--split .hero__subtitle {
  margin: 0 0 22px;
  max-width: 550px;
  font-size: clamp(0.92rem, 1.18vw, 1rem);
  line-height: 1.6;
  color: rgba(235, 229, 248, 0.82);
}

.hero--split .hero__actions {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.hero--split .hero__actions .btn {
  min-height: 42px;
  padding-inline: 17px;
}

.hero--split .hero__meta {
  justify-content: flex-start;
  gap: 10px;
  max-width: 680px;
  margin-top: 0;
}

.hero--split .hero__pill {
  position: relative;
  padding: 6px 12px 6px 26px;
  font-size: 0.78rem;
  color: rgba(241, 245, 249, 0.78);
  background: rgba(15, 23, 42, 0.42);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero--split .hero__pill::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #22d3ee;
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.75);
}

.hero__visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 700px;
  overflow: visible;
}

.hero__visual::before {
  content: "";
  position: absolute;
  width: min(100%, 520px);
  height: 690px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 48% 18%, rgba(122, 74, 145, 0.34), transparent 44%),
    linear-gradient(180deg, rgba(82, 38, 104, 0.18), rgba(31, 9, 48, 0));
  filter: blur(8px);
  transform: rotate(2.5deg);
}

.hero__visual::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 330px;
  height: 58px;
  border-radius: 999px;
  background: rgba(9, 6, 14, 0.55);
  filter: blur(14px);
}

.hero-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  aspect-ratio: 9 / 18.95;
  padding: 14px;
  border-radius: 48px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04) 18%),
    linear-gradient(160deg, #4f5a69 0 6%, #131725 14%, #050817 62%, #090b17);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(2.7deg);
}

.hero-phone__shine {
  position: absolute;
  inset: 24px auto auto -30px;
  width: 80px;
  height: 78%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent);
  filter: blur(16px);
  opacity: 0.48;
}

.hero-phone__speaker {
  position: absolute;
  z-index: 3;
  top: 29px;
  left: 50%;
  width: 96px;
  height: 26px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #020617;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 2px 9px rgba(61, 31, 10, 0.22);
}

.hero-phone__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: #faf6f0;
  box-shadow:
    inset 0 0 0 1px rgba(61, 31, 10, 0.04),
    inset 0 -28px 70px rgba(61, 31, 10, 0.08);
}

.hero-phone__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #faf6f0;
}

.family-preview-scroll {
  min-height: 1350px;
  color: #2c1810;
  font-family: "Lora", Georgia, serif;
  background:
    radial-gradient(circle at 52% 11%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(180deg, #faf6f0 0%, #f5ede0 59%, #faf6f0 100%);
  animation: familyPhoneScroll 16s ease-in-out infinite;
}

.family-preview {
  padding: 25px 22px;
}

.family-preview--hero {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  padding-top: 58px;
  padding-bottom: 30px;
  background:
    radial-gradient(circle at 50% 21%, rgba(255, 255, 255, 0.76), transparent 26%),
    linear-gradient(180deg, rgba(250, 246, 240, 0.78), rgba(232, 216, 196, 0.9));
}

.family-preview__badge,
.family-preview__kicker {
  display: inline-flex;
  align-self: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(107, 61, 30, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.68);
  color: rgba(107, 61, 30, 0.72);
  font-family: "Lora", Georgia, serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(61, 31, 10, 0.05);
}

.family-preview__tree {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 45% 45% 38% 38% / 42% 42% 48% 48%;
  background:
    radial-gradient(circle at 28% 28%, #fff9ef 0 12%, transparent 13%),
    radial-gradient(circle at 70% 32%, #f5c19a 0 15%, transparent 16%),
    radial-gradient(circle at 52% 52%, #c4776b 0 31%, transparent 32%),
    linear-gradient(180deg, #72412e, #4d2a1d);
  color: transparent;
  transform: rotate(1.5deg);
  box-shadow: 0 20px 34px rgba(61, 31, 10, 0.14);
}

.family-preview h2,
.family-preview h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: #2c1810;
  letter-spacing: 0;
}

.family-preview h2 {
  max-width: 280px;
  margin-inline: auto;
  font-size: 2rem;
  line-height: 0.98;
  font-weight: 700;
}

.family-preview h3 {
  max-width: 210px;
  font-size: 1.34rem;
  line-height: 1.06;
  font-weight: 700;
}

.family-preview p {
  margin: 17px auto 0;
  max-width: 280px;
  color: rgba(122, 92, 74, 0.92);
  font-family: "Lora", Georgia, serif;
  font-size: 0.86rem;
  line-height: 1.5;
}

.family-preview--message {
  position: relative;
  z-index: 1;
  background: rgba(255, 252, 247, 0.86);
  margin: -3px 19px 20px;
  padding: 29px 19px 28px;
  border-radius: 26px 26px 22px 22px;
  box-shadow: 0 -10px 36px rgba(61, 31, 10, 0.05);
}

.family-preview--message .family-preview__kicker,
.family-preview--timeline .family-preview__kicker {
  align-self: flex-start;
  margin-bottom: 18px;
}

.family-preview--message h3,
.family-preview--message p {
  margin-inline: 0;
  text-align: left;
}

.family-preview--message p {
  max-width: none;
  font-size: 0.83rem;
  line-height: 1.56;
}

.family-preview__photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.family-preview__photo {
  min-height: 96px;
  border: 6px solid #fffaf3;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(61, 36, 27, 0.12), rgba(183, 110, 80, 0.36)),
    linear-gradient(135deg, #f7d8bb, #a75d47);
  box-shadow: 0 14px 28px rgba(112, 66, 46, 0.18);
}

.family-preview__photo--one {
  min-height: 202px;
  background:
    radial-gradient(circle at 40% 34%, #fff4dc 0 10%, transparent 11%),
    radial-gradient(circle at 56% 36%, #ffe6c7 0 12%, transparent 13%),
    linear-gradient(145deg, #9a5a43, #efc09d);
}

.family-preview__photo--two {
  background:
    radial-gradient(circle at 58% 36%, #fff1d4 0 14%, transparent 15%),
    linear-gradient(145deg, #d59a75, #6f3f32);
}

.family-preview__photo--three {
  background:
    radial-gradient(circle at 42% 35%, #fff0cf 0 13%, transparent 14%),
    radial-gradient(circle at 62% 38%, #f6c9a9 0 10%, transparent 11%),
    linear-gradient(145deg, #704234, #e4b28d);
}

.family-preview__memory {
  margin-top: 12px;
  padding: 14px;
  border-left: 3px solid #b76e50;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}

.family-preview__memory strong {
  display: block;
  color: #3d241b;
  font-size: 0.82rem;
}

.family-preview__memory p {
  margin-top: 5px;
  font-size: 0.72rem;
}

.family-preview--thanks {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 0 14px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.72), transparent 42%),
    linear-gradient(145deg, #5a3328, #b76e50);
}

.family-preview--thanks h3,
.family-preview--thanks p,
.family-preview--thanks .family-preview__badge {
  color: #fffaf3;
}

.family-preview--thanks .family-preview__badge {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

@keyframes familyPhoneScroll {
  0%,
  13% {
    transform: translateY(0);
  }
  43%,
  56% {
    transform: translateY(-378px);
  }
  86%,
  100% {
    transform: translateY(-602px);
  }
}

@media (max-width: 980px) {
  .hero--split {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 52px;
    padding-bottom: 72px;
  }

  .hero--split .hero__content {
    min-height: auto;
    align-items: center;
    text-align: center;
  }

  .hero--split .hero__actions,
  .hero--split .hero__meta {
    justify-content: center;
  }

  .hero__visual {
    min-height: 690px;
  }

  .hero-phone {
    width: min(88vw, 286px);
    transform: rotate(1.7deg);
  }
}

@media (max-width: 560px) {
  .hero--split {
    padding-inline: 18px;
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .hero--split .hero__title--soft {
    font-size: clamp(2.2rem, 12vw, 3.1rem);
  }

  .hero--split .hero__subtitle {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero--split .hero__actions {
    width: 100%;
  }

  .hero--split .hero__actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero--split .hero__meta {
    width: 100%;
  }

  .hero--split .hero__pill {
    width: 100%;
    justify-content: center;
  }

  .hero__visual {
    min-height: 560px;
    overflow: hidden;
  }

  .hero__visual::before {
    width: min(94vw, 360px);
    height: 560px;
  }

  .hero__visual::after {
    width: min(76vw, 280px);
  }

  .hero-phone {
    width: min(82vw, 264px);
    border-radius: 42px;
    padding: 12px;
  }

  .family-preview h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .family-preview-scroll {
    animation: none;
    transform: translateY(-260px);
  }
}

.marquee-section {
  padding: 24px 0 16px;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-block: none;
  background: transparent;
}

.marquee__inner {
  display: inline-flex;
  gap: 24px;
  padding: 8px 8px;
  animation: marquee 60s linear infinite;
  font-size: 0.86rem;
}

/* Cada tema vira um balão/pílula com glow */
.marquee__inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 0 0, rgba(168, 85, 247, 0.28), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 18px 40px rgba(15, 23, 42, 0.95);
  color: var(--text-muted);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.marquee__inner span::before {
  content: "✦";
  color: #a855ff;
  font-size: 0.9rem;
}

.marquee__inner--clone {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 24px;
}


/* SECTION BASE */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 16px 50px;
}

.section__header {
  text-align: left;
  margin-bottom: 20px;
}

.section__header h2 {
  font-size: 1.5rem;
  margin: 0 0 6px;
}

.section__header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* COMO FUNCIONA */
/* ===============================
   NOVO "COMO FUNCIONA" PREMIUM
================================ */

.section-steps {
  padding-top: 40px;
}

.steps-new-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.steps-mobile-dots {
  display: none;
}

.step-new-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 28px 24px 32px;
  position: relative;
  box-shadow: 0 22px 40px rgba(0,0,0,0.35);
  transition: 0.25s ease;
}

.step-new-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.55);
}

.step-new-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #a855ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  position: absolute;
  top: -18px;
  left: 24px;
  box-shadow: 0 10px 25px rgba(168, 85, 255, 0.45);
}

.step-new-card h3 {
  margin-top: 16px;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.step-new-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .section-steps {
    overflow: hidden;
  }

  .steps-new-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    margin-top: 22px;
    margin-inline: -14px;
    padding: 18px calc((100vw - min(82vw, 330px)) / 2) 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: calc((100vw - min(82vw, 330px)) / 2);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .steps-new-grid::-webkit-scrollbar {
    display: none;
  }

  .step-new-card {
    flex: 0 0 min(82vw, 330px);
    padding: 24px 20px 28px;
    min-height: 178px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: scale(0.94);
    opacity: 0.72;
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease,
      border-color 0.32s ease,
      box-shadow 0.32s ease;
  }

  .step-new-card:hover {
    transform: scale(0.94);
  }

  .step-new-card.is-active {
    transform: scale(1);
    opacity: 1;
    border-color: rgba(168, 85, 255, 0.36);
    box-shadow: 0 24px 52px rgba(168, 85, 255, 0.28);
  }

  .steps-mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 4px;
  }

  .steps-mobile-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.34);
    cursor: pointer;
    transition:
      width 0.24s ease,
      background 0.24s ease,
      transform 0.24s ease;
  }

  .steps-mobile-dots button.is-active {
    width: 28px;
    background: linear-gradient(90deg, #ec4899, #a855ff);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(168, 85, 255, 0.35);
  }
}

/* EXPERIÊNCIAS */
.experiences__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.experience-card {
  background: radial-gradient(circle at top right, #111827, #020617);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 16px 14px 16px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.experience-card h3 {
  margin: 0 0 6px;
  color: var(--text-main);
}

.experience-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

/* FAQ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.faq-item__header {
  width: 100%;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 0.95rem;
  cursor: pointer;
}

.faq-item__icon {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.18s ease;
}

.faq-item__body {
  padding: 0 14px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}

.faq-item__body p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

/* CONTATO */
.contact-section {
  padding-top: 24px;
}

.contact-section__mail {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-section__mail:hover {
  text-decoration: underline;
}

.contact-section__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.contact-link__icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-link--whatsapp { color: #22c55e; }
.contact-link--email { color: var(--accent); }
.contact-link--instagram { color: #f472b6; }

/* FOOTER */
.footer {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding: 38px 20px 22px;
  background: rgba(15, 23, 42, 0.96);
}

.footer__top {
  max-width: var(--max-width);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) repeat(3, minmax(140px, 1fr));
  gap: clamp(24px, 4vw, 52px);
  font-size: 0.9rem;
}

.footer__logo {
  width: 64px;
  height: 64px;
}

.footer__brand p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.65;
  max-width: 34ch;
}

.footer__col h4 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col li {
  margin-bottom: 7px;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.footer__col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer__col a:hover,
.footer__col a:focus-visible {
  color: #fff;
}

.footer__col a:focus-visible,
.footer__preferences:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer__more {
  color: var(--accent) !important;
  font-weight: 700;
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

.footer__small {
  opacity: 0.75;
}

.footer__preferences {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__preferences:hover {
  color: #fff;
}

/* BOTÃO FLUTUANTE */
.floating-cta {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 30;
  border-radius: 999px;
  border: none;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  background: linear-gradient(90deg, #ec4899, #a855ff);
  color: #f9f5ff;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.assistant-fab {
  position: fixed;
  right: 18px;
  bottom: 72px;
  z-index: 10024;
}

.assistant-fab__button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #a855ff 60%, #7c3aed);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.assistant-fab__button:hover {
  transform: translateY(-1px) scale(1.03);
  filter: brightness(1.04);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.38);
}

.assistant-fab__button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

.assistant-fab__icon {
  font-size: 1.05rem;
  font-weight: 700;
  transform: translateY(-1px);
}

.assistant-fab__panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: min(268px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.assistant-fab__panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.assistant-fab__panel p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.assistant-fab__chat {
  display: grid;
  gap: 8px;
}

.assistant-fab__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(248, 250, 252, 0.8);
}

.assistant-fab__input {
  width: 100%;
  min-height: 78px;
  resize: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  padding: 10px 12px;
  font: inherit;
  font-size: 0.84rem;
  line-height: 1.45;
}

.assistant-fab__input::placeholder {
  color: rgba(226, 232, 240, 0.52);
}

.assistant-fab__input:focus {
  outline: none;
  border-color: rgba(168, 85, 255, 0.66);
  box-shadow: 0 0 0 3px rgba(168, 85, 255, 0.16);
}

.assistant-fab__action {
  flex: 1;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.assistant-fab__action--primary {
  background: linear-gradient(90deg, #ec4899, #a855ff);
  border-color: transparent;
}

.assistant-fab__panel .assistant-fab__action {
  width: 100%;
}

.assistant-fab__actions {
  display: flex;
  gap: 8px;
}

.timed-callout {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 3, 14, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.timed-callout[hidden] {
  display: none;
}

.timed-callout.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.timed-callout__dialog {
  position: relative;
  width: min(420px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(145deg, #211337 0%, #121126 52%, #0d1020 100%);
  color: var(--text-main);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.timed-callout__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: rgba(235, 229, 248, 0.42);
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.timed-callout__close:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.76);
}

.timed-callout__close:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  outline: 2px solid #fff;
  outline-offset: 2px;
  color: #fff;
}

.timed-callout.is-visible .timed-callout__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.timed-callout__brand {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.timed-callout__icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.timed-callout__content {
  display: grid;
  gap: 0;
}

.timed-callout__eyebrow {
  margin-bottom: 6px;
  color: #f9a8d4;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timed-callout__content h2 {
  max-width: 18ch;
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.timed-callout__content p {
  max-width: 50ch;
  margin: 10px 0 0;
  color: rgba(235, 229, 248, 0.82);
  font-size: 0.88rem;
  line-height: 1.5;
}

.timed-callout__actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.timed-callout__action {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.timed-callout__action:hover {
  transform: translateY(-2px);
}

.timed-callout__action:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.timed-callout__action--primary {
  border: 1px solid transparent;
  background: linear-gradient(90deg, #ec4899, #a855ff);
  color: #fff;
}

.timed-callout__action--secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.timed-callout__action--secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.timed-callout__example-link {
  justify-self: center;
  margin: 14px auto 0;
  padding: 4px;
  border: 0;
  background: transparent;
  color: rgba(235, 229, 248, 0.62);
  font: inherit;
  font-size: 0.76rem;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.18s ease;
}

.timed-callout__example-link span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 3px;
}

.timed-callout__example-link:hover,
.timed-callout__example-link:focus-visible {
  color: #fff;
}

.timed-callout__example-link:focus-visible {
  border-radius: 4px;
  outline: 2px solid #fff;
  outline-offset: 3px;
}

body.has-timed-callout {
  overflow: hidden;
}

/* ==========================
   CARROSSEL DE EXEMPLOS
========================== */

.section--examples { position: relative; }

.examples-carousel{
  margin-top: 28px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.examples-viewport{
  overflow: hidden;
  padding: 32px 0 24px;
  flex: 1;
}

.examples-track{
  display: flex;
  align-items: stretch;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

/* CARD */
.example-card{
  --story-accent: #ff8dc0;
  --story-accent-2: #a855ff;
  --story-glow: rgba(168, 85, 255, 0.34);
  --story-veil-top: rgba(255,255,255,.16);
  --story-veil-bottom: rgba(6, 5, 16, 0.92);
  --story-chip-bg: rgba(7, 9, 24, 0.46);
  --story-soft-text: rgba(255,211,236,.72);
  position: relative;
  flex: 0 0 clamp(224px, 16vw, 252px);
  max-width: clamp(224px, 16vw, 252px);
  min-height: 430px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
    rgba(11, 7, 24, 0.92);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255,255,255,.06);
  opacity: 0.28;
  transform: scale(0.92);
  transition: opacity .35s ease, transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.example-card__bg{
  position: absolute;
  inset: 0;
  background-image: var(--thumb-url);
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(0.68) contrast(1) blur(0);
  transform: scale(1.08);
  transition: filter .35s ease, transform .35s ease;
  z-index: -2;
}

.example-card__veil{
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at top right, var(--story-veil-top), transparent 28%),
    linear-gradient(180deg, rgba(5, 3, 14, 0.08) 0%, rgba(6, 4, 18, 0.58) 35%, var(--story-veil-bottom) 100%);
}

.example-card__overlay {
  position: relative;
  padding: 14px 14px 16px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
}

.example-card__overlay > *{
  position: relative;
  z-index: 1;
}

.example-card__storybar{
  display:grid;
  grid-template-columns: repeat(var(--story-total, 3), minmax(0, 1fr));
  gap: 5px;
  margin-bottom: 12px;
}

.example-card__storybar span{
  display:block;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  overflow:hidden;
}

.example-card__storybar span.is-active{
  background: linear-gradient(90deg, var(--story-accent), var(--story-accent-2));
}

.example-card__storyhead{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 14px;
}

.example-card__avatar{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff8ff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.08)),
    linear-gradient(135deg, var(--story-accent), var(--story-accent-2) 65%, #ffffff);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 10px 28px rgba(0,0,0,.28), 0 0 0 6px var(--story-glow);
}

.example-card__profile{
  min-width: 0;
  flex: 1;
}

.example-card__author{
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(249,245,255,.98);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.example-card__meta{
  margin-top: 2px;
  font-size: 0.7rem;
  color: rgba(230,220,248,.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.example-card__content{
  margin-top: auto;
  display:grid;
  gap: 10px;
}

.example-card__eyebrow{
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--story-soft-text);
}

.example-card__title {
  margin: 0;
  font-size: clamp(1.04rem, 1.18vw, 1.28rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  line-height: 1.02;
  max-width: 12ch;
  text-shadow: 0 10px 28px rgba(0,0,0,.45);
  overflow: hidden;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.example-card__excerpt {
  margin: 0;
  padding: 12px 12px 14px;
  border-radius: 22px;
  min-height: 104px;
  max-height: 104px;
  background:
    linear-gradient(180deg, rgba(18, 17, 42, 0.78), rgba(10, 11, 31, 0.92));
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(248,250,252,.9);
  font-size: 0.8rem;
  line-height: 1.42;
  overflow: hidden;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  display: block;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.example-card__footer{
  margin-top: 14px;
  display:flex;
  justify-content:flex-start;
}

.example-card__cta{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  align-self: flex-start;
  min-width: 116px;
  min-height: 40px;
  padding: 0 16px;
  font-weight: 700;
  font-size: 0.86rem;
  background: linear-gradient(90deg, var(--story-accent), var(--story-accent-2));
  border-color: transparent;
  box-shadow: 0 18px 40px var(--story-glow);
}

.example-card--center{
  opacity: 1;
  transform: translateY(-8px) scale(1);
  box-shadow:
    0 34px 95px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255,255,255,.05) inset;
}

.example-card--center .example-card__cta{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.example-card--center .example-card__bg{
  filter: brightness(0.86) saturate(1) contrast(1.02);
  transform: scale(1.12);
}

.example-card--center .example-card__veil{
  background:
    radial-gradient(circle at top right, var(--story-veil-top), transparent 28%),
    linear-gradient(180deg, rgba(9, 6, 22, 0.04) 0%, rgba(11, 7, 28, 0.48) 34%, rgba(7, 6, 20, 0.86) 100%);
}

.example-card--center .example-card__storybar span{
  background: rgba(255,255,255,.3);
}

.example-card--center .example-card__storybar span.is-active{
  background: linear-gradient(90deg, var(--story-accent), var(--story-accent-2));
}

.example-card--romantico{
  --story-accent: #ff6aa7;
  --story-accent-2: #9b4dff;
  --story-glow: rgba(236, 72, 153, 0.32);
  --story-veil-top: rgba(255, 196, 228, 0.2);
  --story-veil-bottom: rgba(18, 6, 22, 0.92);
  --story-chip-bg: rgba(47, 13, 38, 0.5);
  --story-soft-text: rgba(255, 214, 234, 0.76);
}

.example-card--familia{
  --story-accent: #d6b674;
  --story-accent-2: #8fa979;
  --story-glow: rgba(214, 182, 116, 0.28);
  --story-veil-top: rgba(255, 240, 206, 0.18);
  --story-veil-bottom: rgba(28, 23, 14, 0.92);
  --story-chip-bg: rgba(51, 42, 26, 0.52);
  --story-soft-text: rgba(255, 236, 202, 0.78);
}

.example-card--aniversario{
  --story-accent: #ffcc5c;
  --story-accent-2: #ff7aa2;
  --story-glow: rgba(255, 122, 162, 0.3);
  --story-veil-top: rgba(255, 230, 173, 0.18);
  --story-veil-bottom: rgba(22, 18, 36, 0.92);
  --story-chip-bg: rgba(52, 28, 53, 0.5);
  --story-soft-text: rgba(255, 233, 190, 0.82);
}

.example-card--trollagem{
  --story-accent: #beff57;
  --story-accent-2: #22d3ee;
  --story-glow: rgba(34, 211, 238, 0.28);
  --story-veil-top: rgba(214, 255, 160, 0.16);
  --story-veil-bottom: rgba(10, 18, 16, 0.92);
  --story-chip-bg: rgba(16, 33, 24, 0.52);
  --story-soft-text: rgba(222, 255, 192, 0.76);
}

.example-card--agradecimento{
  --story-accent: #d6aa5c;
  --story-accent-2: #9ac7a2;
  --story-glow: rgba(214, 170, 92, 0.28);
  --story-veil-top: rgba(255, 235, 210, 0.18);
  --story-veil-bottom: rgba(24, 21, 16, 0.92);
  --story-chip-bg: rgba(45, 33, 22, 0.52);
  --story-soft-text: rgba(255, 236, 214, 0.78);
}

.example-card--misterio{
  --story-accent: #d69e2e;
  --story-accent-2: #94a3b8;
  --story-glow: rgba(214, 158, 46, 0.28);
  --story-veil-top: rgba(245, 226, 177, 0.16);
  --story-veil-bottom: rgba(14, 16, 20, 0.94);
  --story-chip-bg: rgba(25, 26, 30, 0.56);
  --story-soft-text: rgba(244, 228, 188, 0.76);
}

.example-card--center:hover{
  transform: translateY(-12px) scale(1.015);
  box-shadow:
    0 38px 110px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,.06) inset;
}

.example-card--center:hover .example-card__bg{
  filter: brightness(0.98) saturate(1.12) contrast(1.05);
  transform: scale(1.14);
}

.example-card:not(.example-card--center) .example-card__cta:focus{
  outline: none;
}

@media (max-width: 900px){
  .section--examples {
    overflow: hidden;
  }

  .examples-carousel{
    display: block;
    margin-top: 22px;
  }

  .examples-viewport{
    overflow-x: auto;
    padding: 22px 0 18px;
    margin-inline: -14px;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .examples-viewport::-webkit-scrollbar{
    display: none;
  }

  .examples-track{
    gap: 16px;
    width: max-content;
    padding-inline: calc((100vw - min(82vw, 290px)) / 2);
    transition: none;
    transform: none !important;
  }

  .example-card{
    flex: 0 0 min(82vw, 290px);
    max-width: min(82vw, 290px);
    min-height: 430px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    opacity: 0.72;
    transform: scale(0.94);
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease,
      box-shadow 0.32s ease,
      filter 0.32s ease;
  }

  .example-card--center{
    opacity: 1;
    transform: scale(1);
    box-shadow:
      0 26px 70px rgba(0, 0, 0, 0.64),
      0 0 0 1px rgba(255,255,255,.06) inset;
  }

  .example-card__overlay{ min-height: 430px; }
  .example-card__title{ max-width: 12ch; }

  .example-card--center:hover{
    transform: scale(1);
  }

  .examples-arrow{
    display: none;
  }

  .examples-arrow--prev{
    left: 2px;
    margin-left: 0;
  }

  .examples-arrow--next{
    right: 2px;
    margin-right: 0;
  }

  .examples-dot.is-active {
    width: 28px;
    box-shadow: none;
  }
}

@media (max-width: 720px){
  .example-card{
    flex-basis: min(82vw, 286px);
    max-width: min(82vw, 286px);
    border-radius: 28px;
  }
  .example-card__overlay{
    min-height: 430px;
    padding: 14px 14px 16px;
  }
  .example-card__storyhead{
    gap: 9px;
    margin-bottom: 13px;
  }
  .example-card__avatar{
    width: 34px;
    height: 34px;
  }
  .example-card__title{
    font-size: 1.08rem;
  }
  .example-card__excerpt{
    min-height: 104px;
    max-height: 104px;
    font-size: 0.78rem;
  }
}

/* SETAS */

.examples-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top, #020617, #020617);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.9;
  transition: 0.18s ease;
  z-index: 4;
}

.examples-arrow span {
  transform: translateY(-1px);
}

.examples-arrow--prev {
  margin-left: 4px;
}

.examples-arrow--next {
  margin-right: 4px;
}

.examples-arrow:hover {
  border-color: #a855ff;
  box-shadow: 0 0 0 1px rgba(168, 85, 255, 0.5);
}

/* DOTS */

.examples-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.examples-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.5);
  cursor: pointer;
  transition: width 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.examples-dot.is-active {
  width: 20px;
  background: linear-gradient(90deg, #ec4899, #a855ff);
  transform: translateY(-1px);
}

/* Responsivo carrossel */
@media (max-width: 900px) {
  .examples-carousel {
    gap: 0;
  }

  .example-card {
    flex-basis: min(82vw, 290px);
    max-width: min(82vw, 290px);
  }
}

@media (max-width: 720px) {
  .examples-viewport {
    padding-block: 22px 18px;
  }
}

@media (max-width: 900px) {
  .examples-arrow {
    display: none;
  }

  .examples-arrow--prev {
    left: 2px;
    margin-left: 0;
  }

  .examples-arrow--next {
    right: 2px;
    margin-right: 0;
  }

  .examples-dot.is-active {
    width: 28px;
    box-shadow: 0 8px 20px rgba(168, 85, 255, 0.35);
  }
}

/* ==========================
   CARROSSEL ORBITAL
========================== */

.section--examples {
  --example-card-width: clamp(232px, 22vw, 330px);
  --example-card-height: calc(var(--example-card-width) * 1.58);
  overflow: hidden;
  isolation: isolate;
}

.section--examples::before {
  position: absolute;
  inset: 12% 4% 5%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 45%, rgba(168, 85, 247, .2), transparent 34%),
    radial-gradient(circle at 50% 88%, rgba(236, 72, 153, .12), transparent 30%);
  filter: blur(32px);
  pointer-events: none;
  content: "";
}

.section--examples .examples-carousel {
  position: relative;
  display: block;
  margin-top: 18px;
  user-select: none;
  touch-action: pan-y;
}

.section--examples .examples-stage {
  position: relative;
  min-height: clamp(520px, 56vw, 650px);
  overflow: hidden;
  outline: none;
  perspective: 1400px;
  perspective-origin: 50% 45%;
  cursor: grab;
}

.section--examples .examples-stage.is-dragging {
  cursor: grabbing;
}

.section--examples .examples-stage:focus-visible {
  border-radius: 34px;
  box-shadow: inset 0 0 0 2px rgba(216, 180, 254, .72);
}

.section--examples .examples-track {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  min-height: 100%;
  padding: 0;
  transform: none;
  transition: none;
  transform-style: preserve-3d;
}

.section--examples .example-card {
  --orbit-x: 0px;
  --orbit-y: 0px;
  --orbit-z: 0px;
  --orbit-rotation: 0deg;
  --orbit-scale: .72;
  --orbit-opacity: .2;
  --orbit-blur: 3px;
  --orbit-layer: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--example-card-width);
  height: var(--example-card-height);
  min-height: 0;
  max-width: none;
  flex: none;
  opacity: var(--orbit-opacity);
  filter: blur(var(--orbit-blur)) saturate(.72);
  pointer-events: none;
  z-index: var(--orbit-layer);
  transform:
    translate(-50%, -50%)
    translate3d(var(--orbit-x), var(--orbit-y), var(--orbit-z))
    rotateY(var(--orbit-rotation))
    scale(var(--orbit-scale));
  transform-style: preserve-3d;
  transition:
    transform 720ms cubic-bezier(.22, .78, .2, 1),
    opacity 420ms ease,
    filter 420ms ease,
    border-color 420ms ease,
    box-shadow 420ms ease;
  will-change: transform, opacity, filter;
}

.section--examples .example-card::before,
.section--examples .example-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.section--examples .example-card::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), transparent 22%),
    radial-gradient(circle at 76% 9%, var(--story-glow), transparent 28%);
}

.section--examples .example-card::after {
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, .05);
}

.section--examples .example-card.is-near {
  --orbit-scale: .86;
  --orbit-opacity: .58;
  --orbit-blur: 1px;
  --orbit-layer: 10;
  pointer-events: auto;
  cursor: pointer;
}

.section--examples .example-card.is-near:hover {
  --orbit-scale: .89;
}

.section--examples .example-card.is-active {
  --orbit-scale: 1;
  --orbit-opacity: 1;
  --orbit-blur: 0px;
  --orbit-layer: 20;
  pointer-events: auto;
  filter: none;
  border-color: color-mix(in srgb, var(--story-accent) 50%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--story-accent-2) 30%, transparent),
    0 0 36px var(--story-glow),
    0 42px 100px rgba(0, 0, 0, .62);
}

.section--examples .example-card.is-active:hover {
  --orbit-scale: 1.01;
  filter: none;
}

.section--examples .example-card__overlay {
  min-height: 100%;
  height: 100%;
  padding: clamp(15px, 2vw, 24px);
}

.section--examples .example-card__storybar {
  position: relative;
  z-index: 4;
  grid-template-columns: repeat(var(--story-total, 6), minmax(0, 1fr));
  gap: 5px;
  margin-bottom: 15px;
}

.section--examples .example-card__storytrack {
  position: relative;
  display: block;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
}

.section--examples .example-card__storyfill {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--story-accent), var(--story-accent-2));
  box-shadow: 0 0 10px var(--story-glow);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.section--examples .example-card__storyhead,
.section--examples .example-card__content,
.section--examples .example-card__footer {
  position: relative;
  z-index: 3;
}

.section--examples .example-card__content {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 8, 30, .48), rgba(7, 4, 18, .78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section--examples .example-card__excerpt {
  min-height: 0;
  max-height: none;
  padding: .14em 0 .24em;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: .84rem;
  line-height: 1.52;
  overflow: visible;
  display: block;
}

.section--examples .example-card__footer {
  margin-top: 14px;
}

.section--examples .example-card__cta {
  min-width: 132px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.section--examples .example-card.is-active .example-card__cta {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.section--examples .examples-orbit {
  position: absolute;
  top: 71%;
  left: 50%;
  width: min(1080px, 90vw);
  height: clamp(145px, 19vw, 280px);
  border: 1px solid rgba(192, 132, 252, .28);
  border-radius: 50%;
  box-shadow:
    0 0 22px rgba(168, 85, 247, .25),
    inset 0 0 38px rgba(168, 85, 247, .07);
  transform: translate(-50%, -50%) rotateX(72deg);
  pointer-events: none;
}

.section--examples .examples-orbit::after {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(236, 72, 153, .2);
  border-radius: inherit;
  content: "";
}

.section--examples .examples-orbit i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f0abfc;
  box-shadow: 0 0 13px #d946ef;
  animation: examplesOrbitParticle 9s linear infinite;
}

.section--examples .examples-orbit i:nth-child(2) {
  scale: .7;
  opacity: .72;
  animation-duration: 12s;
  animation-delay: -4s;
}

.section--examples .examples-orbit i:nth-child(3) {
  scale: .5;
  opacity: .55;
  animation-duration: 15s;
  animation-delay: -8s;
}

.section--examples .examples-help {
  margin: -4px 0 0;
  color: rgba(230, 220, 248, .58);
  font-size: .78rem;
  text-align: center;
}

.section--examples .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes examplesOrbitParticle {
  from { transform: rotate(0deg) translateX(min(38vw, 470px)) rotate(0deg); }
  to { transform: rotate(360deg) translateX(min(38vw, 470px)) rotate(-360deg); }
}

@media (max-width: 900px) {
  .section--examples {
    --example-card-width: min(76vw, 310px);
  }

  .section--examples .examples-stage {
    min-height: 530px;
  }

  .section--examples .example-card__overlay {
    min-height: 100%;
  }
}

@media (max-width: 620px) {
  .section--examples {
    --example-card-width: min(78vw, 292px);
  }

  .section--examples .examples-stage {
    min-height: 500px;
    margin-inline: -14px;
  }

  .section--examples .example-card {
    border-radius: 27px;
  }

  .section--examples .example-card__overlay {
    padding: 14px;
  }

  .section--examples .example-card__content {
    padding: 14px;
    border-radius: 21px;
  }

  .section--examples .example-card__excerpt {
    font-size: .79rem;
  }

  .section--examples .examples-orbit {
    width: 112vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section--examples .example-card {
    transition-duration: .01ms;
  }

  .section--examples .examples-orbit i {
    animation: none;
  }
}

/* ANIMAÇÕES BASE */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-70%);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1.5);
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

/* RESPONSIVO GERAL */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 28px;
  }

  .hero__visual {
    order: -1;
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }

  .experiences__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner__plans {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar {
    padding-inline: 12px;
    gap: 8px;
  }

  .nav {
    position: fixed;
    inset: 56px 16px auto;
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid var(--border-subtle);
    padding: 8px;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .topbar__right {
    display: flex;
    gap: 8px;
    margin-left: auto;
  }

  .topbar__right .btn {
    min-height: 34px;
    padding: 6px 12px;
    font-size: 0.78rem;
    box-shadow: none;
  }

  .topbar__login {
    min-width: 0;
    border-color: rgba(248, 250, 252, 0.22);
    background: rgba(255, 255, 255, 0.06);
  }

  .topbar__create {
    min-width: 0;
  }

  .topbar__menu {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 8px 0 8px 4px;
  }

  .section {
    padding-inline: 14px;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .floating-cta {
    left: 16px;
    justify-content: center;
  }

  .assistant-fab {
    right: 12px;
    bottom: 72px;
  }

  .assistant-fab__button {
    width: 50px;
    height: 50px;
  }

  .assistant-fab__panel {
    width: min(252px, calc(100vw - 24px));
    bottom: 60px;
  }

  .timed-callout {
    padding: 12px;
  }

  .timed-callout__dialog {
    max-height: calc(100vh - 24px);
    padding: 20px;
    border-radius: 20px;
  }

  .timed-callout__close {
    top: 8px;
    right: 8px;
  }

  .timed-callout__brand {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .timed-callout__icon {
    width: 34px;
    height: 34px;
  }

  .timed-callout__content h2 {
    max-width: 17ch;
    font-size: clamp(1.35rem, 7vw, 1.7rem);
  }

  .timed-callout__content p {
    font-size: 0.84rem;
  }

  .timed-callout__actions {
    gap: 8px;
    margin-top: 16px;
  }

  .timed-callout__action {
    min-height: 44px;
    padding-inline: 10px;
  }

}

@media (max-width: 420px) {
  .timed-callout__actions {
    flex-direction: column;
  }

  .timed-callout__action {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .timed-callout,
  .timed-callout__dialog,
  .timed-callout__close,
  .timed-callout__action,
  .timed-callout__example-link {
    transition: none;
  }
}

@media (max-width: 380px) {
  .topbar {
    padding-inline: 8px;
    gap: 6px;
  }

  .logo {
    width: 52px;
    height: 52px;
  }

  .topbar__right {
    gap: 6px;
  }

  .topbar__right .btn {
    padding-inline: 9px;
    font-size: 0.74rem;
  }
}

/* NOVA SESSÃO DE EXPERIÊNCIAS */
.experiences-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.experiences-mobile-dots {
  display: none;
}

.exp-card {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 24px 22px 26px;
  backdrop-filter: blur(14px);
  transition: 0.25s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.exp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 255, 0.45);
  box-shadow: 0 22px 50px rgba(168, 85, 255, 0.35);
}

/* Ícone grande */
.exp-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

/* Título */
.exp-card h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  color: var(--text-main);
}

/* Texto */
.exp-card p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

/* Lista */
.exp-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  opacity: 0.9;
}

.exp-card ul li {
  margin-bottom: 6px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  #experiencias {
    overflow: hidden;
  }

  .experiences-grid-new {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    margin-top: 22px;
    margin-inline: -14px;
    padding: 18px 0 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .experiences-grid-new::-webkit-scrollbar {
    display: none;
  }

  .experiences-grid-new::before,
  .experiences-grid-new::after {
    content: "";
    flex: 0 0 calc((100vw - min(82vw, 330px)) / 2);
  }

  .exp-card {
    flex: 0 0 min(82vw, 330px);
    min-height: 300px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    opacity: 0.72;
    transform: scale(0.94);
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease,
      border-color 0.32s ease,
      box-shadow 0.32s ease;
  }

  .exp-card:hover {
    transform: scale(0.94);
  }

  .exp-card.is-active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(168, 85, 255, 0.36);
    box-shadow: 0 24px 52px rgba(168, 85, 255, 0.28);
  }

  .experiences-mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 4px;
  }

  .experiences-mobile-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.34);
    cursor: pointer;
    transition:
      width 0.24s ease,
      background 0.24s ease,
      transform 0.24s ease;
  }

  .experiences-mobile-dots button.is-active {
    width: 28px;
    background: linear-gradient(90deg, #ec4899, #a855ff);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(168, 85, 255, 0.35);
  }
}

/* AVALIAÇÕES / DEPOIMENTOS */
.testimonials-section {
  padding-top: 24px;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #f9a8d4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ec4899, #a855ff);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.testimonials-mobile-dots {
  display: none;
}

.testimonial-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 114, 182, 0.34);
  box-shadow: 0 24px 54px rgba(168, 85, 255, 0.22);
}

.testimonial-card__rating {
  color: #facc15;
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: 0;
}

.testimonial-card__quote {
  margin: 0;
  color: #e5e7eb;
  font-size: 0.98rem;
  line-height: 1.58;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-card__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.9), rgba(168, 85, 255, 0.92));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(168, 85, 255, 0.26);
}

.testimonial-card__footer strong,
.testimonial-card__footer span {
  display: block;
}

.testimonial-card__footer strong {
  color: var(--text-main);
  font-size: 0.95rem;
}

.testimonial-card__footer span {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    min-height: 250px;
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding-top: 18px;
    overflow: hidden;
  }

  .testimonials-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    margin-top: 22px;
    margin-inline: -14px;
    padding: 18px 0 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonials-grid::before,
  .testimonials-grid::after {
    content: "";
    flex: 0 0 calc((100vw - min(84vw, 340px)) / 2);
  }

  .testimonial-card {
    flex: 0 0 min(84vw, 340px);
    min-height: 286px;
    padding: 20px 18px;
    border-radius: 20px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    opacity: 0.72;
    transform: scale(0.94);
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease,
      border-color 0.32s ease,
      box-shadow 0.32s ease;
  }

  .testimonial-card:hover {
    transform: scale(0.94);
  }

  .testimonial-card.is-active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(244, 114, 182, 0.34);
    box-shadow: 0 24px 52px rgba(168, 85, 255, 0.24);
  }

  .testimonials-mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 4px;
  }

  .testimonials-mobile-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.34);
    cursor: pointer;
    transition:
      width 0.24s ease,
      background 0.24s ease,
      transform 0.24s ease;
  }

  .testimonials-mobile-dots button.is-active {
    width: 28px;
    background: linear-gradient(90deg, #ec4899, #a855ff);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(168, 85, 255, 0.35);
  }
}

/* Final assistant layout: one compact launcher and one bounded, readable panel. */
.assistant-dock {
  right: 18px;
  bottom: 72px;
  z-index: 10024;
  width: auto;
}
.assistant-dock__teaser {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 210px;
  min-height: 58px;
  padding: 7px 18px 7px 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec4899, #a855ff 60%, #7c3aed);
  box-shadow: 0 12px 28px rgba(62, 22, 126, .36);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.assistant-dock__teaser:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(62, 22, 126, .46); }
.assistant-dock__avatar { position: relative; display: grid; place-items: center; flex: 0 0 43px; width: 43px; height: 43px; border-radius: 50%; background: #120b2c; box-shadow: 0 0 0 2px rgba(255,255,255,.35); }
.assistant-dock__badge { width: 35px; height: 35px; border-radius: 50%; object-fit: contain; }
.assistant-dock__avatar-status { position: absolute; right: -1px; bottom: 0; width: 11px; height: 11px; border: 2px solid #fff; border-radius: 50%; background: #35d06f; }
.assistant-dock__copy { display: grid; gap: 2px; min-width: 0; }
.assistant-dock__copy strong, .assistant-dock__copy span { display: block; color: #fff; }
.assistant-dock__copy strong { font-size: .82rem; line-height: 1.15; }
.assistant-dock__copy span { font-size: .79rem; font-weight: 700; line-height: 1.15; }
.assistant-dock__teaser-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.assistant-dock__panel {
  width: min(390px, calc(100vw - 28px));
  max-height: min(680px, calc(100vh - 104px));
  overflow-y: auto;
  padding: 20px;
  border-radius: 26px;
  background: #f8faff;
  color: #16213b;
  box-shadow: 0 28px 72px rgba(0,0,0,.46);
}
.assistant-dock__header { align-items: center; margin-bottom: 20px; }
.assistant-dock__header strong { color: #16213b; font-size: 1.15rem; }
.assistant-dock__header p { color: #56627a; }
.assistant-dock__close { background: transparent; color: #526078; font-size: 1.5rem; }
.assistant-dock__welcome h3 { margin: 0; color: #101a31; font-size: 1.3rem; }
.assistant-dock__welcome p { margin: 4px 0 18px; color: #3d4961; font-size: 1rem; }
.assistant-dock__status { display: none; }
.assistant-dock__messages:empty { display: none; }
.assistant-dock__message { border-color: #e2e7f0; background: #fff; }
.assistant-dock__message--user { background: #f3e7ff; }
.assistant-dock__message-badge { color: #6c7890; }
.assistant-dock__message p { color: #16213b; }
.assistant-dock__message-action { background: #edf2fb; color: #2866cf; }
.assistant-dock__chips { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 0; }
.assistant-dock__chips button { display: flex; align-items: center; justify-content: space-between; min-height: 54px; padding: 12px 16px; border: 1px solid #e2e7f0; border-radius: 16px; background: #fff; color: #2866cf; box-shadow: 0 7px 16px rgba(35,64,112,.08); font-size: .92rem; font-weight: 700; text-align: left; }
.assistant-dock__chips button span { color: #1e293b; font-size: 1.35rem; font-weight: 400; }
.assistant-dock__composer { margin-top: 16px; }
.assistant-dock__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.assistant-dock__row { display: flex; align-items: center; gap: 8px; padding: 5px 5px 5px 15px; border: 1px solid #dfe5ef; border-radius: 999px; background: #fff; }
.assistant-dock__input { min-height: 42px; height: 42px; padding: 10px 0; border: 0; background: transparent; color: #16213b; font-size: .9rem; }
.assistant-dock__input:focus { outline: 0; }
.assistant-dock__submit { flex: 0 0 46px; min-width: 46px; height: 46px; padding: 0; border-radius: 50%; background: #2866df; font-size: 1.3rem; }
@media (max-width: 640px) {
  .assistant-dock { right: 12px; bottom: 16px; }
  .assistant-dock__panel { width: min(360px, calc(100vw - 24px)); max-height: calc(100vh - 40px); padding: 16px; }
}

/* ==========================
   PLANOS (somente #planos atual)
   ========================== */

#planos{
  display: block;
  text-align: center;
}

#planos.plans{
  padding-top: 44px;
}

/* Header */
#planos .plans__header{
  width: 100%;
  text-align: center;
  margin: 0 auto 28px;
}

#planos .plans__header h2 {
  margin: 0 0 8px;
  font-size: 2.2rem;
  line-height: 1.1;
}


#planos .plans__header p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--text-muted);
}

/* Grid */
#planos .plans__grid{
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;
}

#planos .plans-mobile-dots{
  display: none;
}

#planos .plan-benefits-toggle{
  display: none;
}

/* Card base (SEM conflitar com outros .plan-card antigos) */
#planos .plan-card{
  position: relative;
  width: 100%;
  min-width: 0;
  height: 100%;
  text-align: left;

  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);

  padding: 26px 24px 24px;
}

/* Destaque do meio */
#planos .plan-card--highlight{
  border-color: rgba(168,85,255,.70);
  background: radial-gradient(circle at top, rgba(236,72,153,.14), rgba(15,23,42,.92));
  box-shadow: 0 22px 55px rgba(168,85,255,.28);
  transform: translateY(-6px);
}

#planos .plan-card--lifetime{
  border-color: rgba(236, 72, 153, .35);
  background: radial-gradient(circle at top, rgba(168,85,255,.10), rgba(15,23,42,.92));
}

/* Top */
#planos .plan-top{
  margin-bottom: 16px;
}

#planos .plan-kicker{
  margin: 0 0 8px;
  font-size: 0.82rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(248,250,252,.70);
}

#planos .plan-name{
  margin: 0 0 12px;
  font-size: 1.45rem;
  color: var(--text-main);
}

/* Caixa do preço */
#planos .plan-price{
  margin: 14px 0 16px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

#planos .plan-price__main{
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

#planos .plan-price__sub{
  margin-top: 6px;
  font-size: 0.95rem;
  color: rgba(248,250,252,.72);
}

/* Comparação (antigo, badge, economia) */
#planos .plan-compare{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

#planos .plan-old{
  color: rgba(248,250,252,.55);
  text-decoration: line-through;
}

#planos .plan-badge{
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text-main);
}

#planos .plan-save{
  font-size: 0.90rem;
  color: rgba(187,247,208,.90);
}

/* Descrição */
#planos .plan-desc{
  margin: 14px 0 18px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Lista */
#planos .plan-list{
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #e5e7eb;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

/* “Mais popular” */
#planos .plan-pill{
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.28);
  background: linear-gradient(135deg, #fde68a, #f472b6 48%, #a855f7);
  color: #111827;
  box-shadow: 0 12px 28px rgba(168,85,255,.34);
}

/* responsivo */
@media (max-width: 980px){
  #planos .plans__grid{ grid-template-columns: repeat(2, minmax(260px, 1fr)); }
  #planos .plan-card--highlight{ transform: none; }
}
@media (max-width: 900px){
  #planos {
    overflow: hidden;
  }

  #planos .plans__grid{
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    margin-inline: -14px;
    padding: 18px 0 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  #planos .plans__grid::-webkit-scrollbar {
    display: none;
  }

  #planos .plans__grid::before,
  #planos .plans__grid::after {
    content: "";
    flex: 0 0 calc((100vw - min(82vw, 330px)) / 2);
  }

  #planos .plan-card{
    flex: 0 0 min(82vw, 330px);
    min-height: 0;
    height: auto;
    align-self: flex-start;
    padding: 20px 18px 18px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    opacity: 0.72;
    transform: scale(0.94);
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease,
      border-color 0.32s ease,
      box-shadow 0.32s ease;
  }

  #planos .plan-card:hover,
  #planos .plan-card--highlight{
    transform: scale(0.94);
  }

  #planos .plan-card.is-active{
    opacity: 1;
    transform: scale(1);
    border-color: rgba(168, 85, 255, 0.42);
    box-shadow: 0 24px 52px rgba(168, 85, 255, 0.28);
  }

  #planos .plan-card.is-active .btn--primary{
    filter: brightness(1.06);
    transform: translateY(-1px);
  }

  #planos .plan-card--highlight.is-active{
    border-color: rgba(168,85,255,.70);
  }

  #planos .plan-pill{
    top: -11px;
    padding: 5px 12px;
    font-size: 0.72rem;
  }

  #planos .plan-top{
    margin-bottom: 12px;
  }

  #planos .plan-kicker{
    margin-bottom: 5px;
    font-size: 0.72rem;
  }

  #planos .plan-name{
    margin-bottom: 8px;
    font-size: 1.32rem;
  }

  #planos .plan-price{
    margin: 10px 0 12px;
    padding: 12px;
    border-radius: 16px;
  }

  #planos .plan-price__main{
    font-size: 1.82rem;
  }

  #planos .plan-price__sub{
    font-size: 0.82rem;
  }

  #planos .plan-compare{
    gap: 8px;
    margin-top: 8px;
  }

  #planos .plan-old,
  #planos .plan-save{
    font-size: 0.82rem;
  }

  #planos .plan-badge{
    padding: 4px 8px;
    font-size: 0.74rem;
  }

  #planos .plan-list{
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.84rem;
    line-height: 1.3;
  }

  #planos .plan-card:not(.is-expanded) .plan-list li:nth-child(n + 7){
    display: none;
  }

  #planos .plan-benefits-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 12px;
    padding: 8px 10px;
    border: 1px solid rgba(248, 250, 252, 0.18);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    color: var(--text-main);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
  }

  #planos .btn--block{
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.84rem;
    white-space: normal;
    text-align: center;
  }

  #planos .plans-mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 4px;
  }

  #planos .plans-mobile-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.34);
    cursor: pointer;
    transition:
      width 0.24s ease,
      background 0.24s ease,
      transform 0.24s ease;
  }

  #planos .plans-mobile-dots button.is-active {
    width: 28px;
    background: linear-gradient(90deg, #ec4899, #a855ff);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(168, 85, 255, 0.35);
  }

  body.is-viewing-plans .floating-cta,
  body:has(#planos:hover) .floating-cta,
  body:has(#planos:focus-within) .floating-cta{
    display: none;
  }
}
@media (max-width: 640px){
  #planos .plans__grid{ grid-template-columns: none; }
}

@media (max-width: 520px){
  #planos .plans__grid::before,
  #planos .plans__grid::after {
    flex-basis: calc((100vw - min(86vw, 320px)) / 2);
  }

  #planos .plan-card{
    flex-basis: min(86vw, 320px);
  }
}

/* ==========================
   ASSISTENTE INTELIGENTE NOVO
   ========================== */

.assistant-fab {
  display: none !important;
}

.assistant-dock {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 35;
  width: min(400px, calc(100vw - 28px));
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.assistant-dock__teaser {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.72));
  color: var(--text-main);
  box-shadow: 0 18px 40px rgba(0,0,0,0.42);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.assistant-dock__teaser:hover {
  transform: translateY(-1px);
  border-color: rgba(168,85,255,0.35);
}

.assistant-dock__badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #ec4899, #a855ff);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(168,85,255,0.28);
}

.assistant-dock__copy {
  text-align: left;
  display: grid;
  gap: 2px;
}

.assistant-dock__copy strong {
  font-size: 0.95rem;
}

.assistant-dock__copy span {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.35;
}

.assistant-dock__arrow {
  font-size: 1.6rem;
  color: rgba(249,245,255,0.8);
  transform: translateY(-1px);
}

.assistant-dock__panel {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at top, rgba(168,85,255,0.18), transparent 48%),
    rgba(8, 11, 20, 0.96);
  box-shadow: 0 28px 72px rgba(0,0,0,0.55);
  backdrop-filter: blur(22px);
  padding: 14px;
}

.assistant-dock__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.assistant-dock__header strong {
  font-size: 1rem;
}

.assistant-dock__header p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.assistant-dock__close {
  border: 0;
  background: rgba(255,255,255,0.08);
  color: var(--text-main);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
}

.assistant-dock__status {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  color: #d9cff7;
  font-size: 0.84rem;
  line-height: 1.45;
}

.assistant-dock__messages {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  max-height: min(52vh, 430px);
  overflow: auto;
  padding-right: 2px;
}

.assistant-dock__message {
  display: grid;
  gap: 7px;
  max-width: 90%;
  padding: 12px 12px 11px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
}

.assistant-dock__message--user {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(236,72,153,0.22), rgba(168,85,255,0.22));
}

.assistant-dock__message--assistant {
  margin-right: auto;
}

.assistant-dock__message-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(248,250,252,0.66);
}

.assistant-dock__message p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-main);
}

.assistant-dock__message-action {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.08);
  color: var(--text-main);
  cursor: pointer;
}

.assistant-dock__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.assistant-dock__chips button {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: var(--text-main);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 0.8rem;
  cursor: pointer;
}

.assistant-dock__composer {
  margin-top: 12px;
}

.assistant-dock__label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.assistant-dock__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.assistant-dock__input {
  min-height: 82px;
  resize: none;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  padding: 12px 13px;
  font: inherit;
}

.assistant-dock__submit {
  align-self: stretch;
  border: 0;
  border-radius: 18px;
  padding: 0 18px;
  min-width: 96px;
  background: linear-gradient(135deg, #ec4899, #a855ff);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* Compact chat launcher inspired by the Ferret assistant reference. */
.assistant-dock {
  right: 18px;
  bottom: 72px;
  width: auto;
}

.assistant-dock__teaser {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #a855ff 60%, #7c3aed);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.assistant-dock__badge {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 50%;
  background: #090612;
}

.assistant-dock__teaser-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.assistant-dock__panel {
  width: min(390px, calc(100vw - 28px));
  padding: 20px;
  border-radius: 26px;
  background: #f8faff;
  color: #16213b;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.46);
}

.assistant-dock__header {
  align-items: center;
  margin-bottom: 20px;
}

.assistant-dock__identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.assistant-dock__avatar {
  width: 52px;
  height: 52px;
  object-fit: contain;
  padding: 7px;
  border-radius: 50%;
  background: #10152a;
  box-shadow: 0 8px 18px rgba(55, 103, 218, 0.18);
}

.assistant-dock__header strong {
  color: #16213b;
  font-size: 1.15rem;
}

.assistant-dock__header p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  color: #56627a;
}

.assistant-dock__online-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #24c76d;
}

.assistant-dock__close {
  background: transparent;
  color: #526078;
  font-size: 1.5rem;
}

.assistant-dock__welcome h3 {
  margin: 0;
  color: #101a31;
  font-size: 1.3rem;
}

.assistant-dock__welcome p {
  margin: 4px 0 18px;
  color: #3d4961;
  font-size: 1rem;
}

.assistant-dock__status {
  display: none;
}

.assistant-dock__messages:empty {
  display: none;
}

.assistant-dock__chips {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.assistant-dock__chips button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid #e2e7f0;
  border-radius: 16px;
  background: #fff;
  color: #2866cf;
  box-shadow: 0 7px 16px rgba(35, 64, 112, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
}

.assistant-dock__chips button span {
  color: #1e293b;
  font-size: 1.35rem;
  font-weight: 400;
}

.assistant-dock__composer {
  margin-top: 16px;
}

.assistant-dock__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.assistant-dock__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 5px 5px 15px;
  border: 1px solid #dfe5ef;
  border-radius: 999px;
  background: #fff;
}

.assistant-dock__input {
  min-height: 42px;
  height: 42px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: #16213b;
  font-size: 0.9rem;
}

.assistant-dock__input:focus {
  outline: 0;
}

.assistant-dock__submit {
  flex: 0 0 46px;
  min-width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  background: #2866df;
  font-size: 1.3rem;
}

@media (max-width: 640px) {
  .assistant-dock {
    right: 12px;
    bottom: 72px;
  }

  .assistant-dock__panel {
    width: min(360px, calc(100vw - 24px));
    padding: 16px;
  }
}

@media (max-width: 640px) {
  .assistant-dock {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }

  .assistant-dock__teaser {
    grid-template-columns: 38px minmax(0, 1fr) 16px;
    padding: 12px;
    border-radius: 18px;
  }

  .assistant-dock__badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .assistant-dock__panel {
    padding: 12px;
  }

  .assistant-dock__row {
    grid-template-columns: 1fr;
  }

  .assistant-dock__submit {
    min-height: 44px;
  }
}

/* Keep the launcher compact on every breakpoint. */
.assistant-dock { right: 18px; bottom: 72px; z-index: 10024; width: auto; }
.assistant-dock__teaser { display: grid; place-items: center; width: 54px; height: 54px; padding: 0; border: 0; border-radius: 50%; background: linear-gradient(135deg,#ec4899,#a855ff 60%,#7c3aed); }
.assistant-dock__copy, .assistant-dock__teaser-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.assistant-dock__panel { width: min(390px,calc(100vw - 28px)); max-height: min(680px,calc(100vh - 104px)); overflow-y: auto; padding: 20px; border-radius: 26px; background: #f8faff; color: #16213b; box-shadow: 0 28px 72px rgba(0,0,0,.46); }
.assistant-dock__header strong { color: #16213b; font-size: 1.15rem; }
.assistant-dock__header p { color: #56627a; }
.assistant-dock__close { background: transparent; color: #526078; font-size: 1.5rem; }
.assistant-dock__welcome h3 { color: #101a31; font-size: 1.3rem; }
.assistant-dock__welcome p { color: #3d4961; }
.assistant-dock__status { display: none; }
.assistant-dock__messages:empty { display: none; }
.assistant-dock__message { border-color: #e2e7f0; background: #fff; }
.assistant-dock__message--user { background: #f3e7ff; }
.assistant-dock__message-badge { color: #6c7890; }
.assistant-dock__message p { color: #16213b; }
.assistant-dock__message-action { background: #edf2fb; color: #2866cf; }
.assistant-dock__chips { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 0; }
.assistant-dock__chips button { display: flex; align-items: center; justify-content: space-between; min-height: 54px; padding: 12px 16px; border: 1px solid #e2e7f0; border-radius: 16px; background: #fff; color: #2866cf; font-size: .92rem; font-weight: 700; text-align: left; }
.assistant-dock__row { display: flex; align-items: center; gap: 8px; padding: 5px 5px 5px 15px; border: 1px solid #dfe5ef; border-radius: 999px; background: #fff; }
.assistant-dock__input { min-height: 42px; height: 42px; padding: 10px 0; border: 0; background: transparent; color: #16213b; font-size: .9rem; }
.assistant-dock__submit { flex: 0 0 46px; min-width: 46px; height: 46px; padding: 0; border-radius: 50%; background: #2866df; font-size: 1.3rem; }
@media (max-width: 640px) { .assistant-dock { right: 12px; bottom: 16px; } .assistant-dock__panel { width: min(360px,calc(100vw - 24px)); max-height: calc(100vh - 40px); padding: 16px; } }

/* Launcher visual final: pill compacto com o mascote do Ferret Digital. */
.assistant-dock {
  right: 18px;
  bottom: 72px;
  width: auto;
}

.assistant-dock__teaser {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 210px;
  height: 58px;
  padding: 7px 18px 7px 8px;
  border: 3px solid rgba(255, 255, 255, .86);
  border-radius: 999px;
  background: linear-gradient(135deg, #ec4899, #a855ff 60%, #7c3aed);
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 28px rgba(62, 22, 126, .36);
}

.assistant-dock__teaser:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(62, 22, 126, .46);
}

.assistant-dock__avatar {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  padding: 0;
  border-radius: 50%;
  background: #120b2c;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .35);
}

.assistant-dock__badge {
  width: 35px;
  height: 35px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  object-fit: contain;
}

.assistant-dock__avatar-status {
  position: absolute;
  right: -1px;
  bottom: 0;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #35d06f;
}

.assistant-dock__copy {
  position: static;
  display: grid;
  gap: 2px;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  min-width: 0;
  text-align: left;
}

.assistant-dock__copy strong,
.assistant-dock__copy span {
  display: block;
  color: #fff;
}

.assistant-dock__copy strong { font-size: .82rem; line-height: 1.15; white-space: nowrap; }
.assistant-dock__copy span { font-size: .79rem; font-weight: 700; line-height: 1.15; }

.assistant-dock__teaser-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 640px) {
  .assistant-dock {
    right: 12px;
    bottom: 16px;
  }
}

/* A última regra vence os blocos legados do assistente. */
.assistant-dock__teaser {
  border: 0;
  order: 2;
}

.assistant-dock__panel {
  order: 1;
}

/* Campo de mensagem compacto, seguindo a referência visual. */
.assistant-dock.is-open .assistant-dock__row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  height: 40px;
  padding: 4px 8px 4px 12px;
  border: 1px solid #e5e3ee;
  border-radius: 999px;
  background: #fff;
}

.assistant-dock.is-open .assistant-dock__input {
  flex: 1;
  width: auto;
  height: 30px;
  min-height: 30px;
  max-height: 84px;
  padding: 5px 0;
  resize: none;
  overflow-y: hidden;
  border: 0;
  background: transparent;
  color: #34394e;
  font-size: .72rem;
  line-height: 1.35;
  box-sizing: border-box;
}

/* O composer acompanha o crescimento do textarea sem invadir o status. */
.assistant-dock.is-open .assistant-dock__composer {
  flex: 0 0 auto;
  min-height: 40px;
}

.assistant-dock.is-open .assistant-dock__row {
  height: auto;
  min-height: 40px;
  align-items: flex-end;
  overflow: hidden;
}

.assistant-dock.is-open .assistant-dock__input {
  display: block;
  width: 100%;
  max-height: 84px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
}

.assistant-dock.is-open .assistant-dock__input::placeholder {
  color: #8a8c99;
  opacity: 1;
}

.assistant-dock.is-open .assistant-dock__submit {
  flex: 0 0 25px;
  min-width: 25px;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7041e8;
  font-size: 1.35rem;
  line-height: 1;
}

@media (max-width: 640px) {
  body.home-page .back-to-top {
    right: 12px !important;
    bottom: 146px !important;
  }

  body.home-page .assistant-dock.is-open .assistant-dock__panel {
    max-height: calc(100dvh - 152px) !important;
  }
}

/* Hierarquia dos controles flutuantes: utilitário acima, assistente abaixo. */
body.home-page .assistant-dock,
body.home-page .assistant-dock.is-open {
  right: 18px;
  bottom: 18px;
  z-index: 10032;
}

body.home-page .back-to-top {
  right: 18px;
  bottom: 88px;
  z-index: 10030;
}

body.home-page.assistant-chat-open .back-to-top {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(.96);
}

@media (max-width: 640px) {
  body.home-page .assistant-dock,
  body.home-page .assistant-dock.is-open {
    right: 12px;
    bottom: 12px;
  }

  body.home-page .back-to-top {
    right: 12px;
    bottom: 82px;
  }

}

/* Estados conversacionais do Assistente Ferret. */
.assistant-dock__message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.assistant-dock__message-actions .assistant-dock__message-action {
  margin: 0;
}

.assistant-dock__message--typing p {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.assistant-dock__typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.assistant-dock__typing-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #7541ec;
  animation: assistantTypingDot 1s ease-in-out infinite;
}

.assistant-dock__typing-dots i:nth-child(2) { animation-delay: .14s; }
.assistant-dock__typing-dots i:nth-child(3) { animation-delay: .28s; }

.assistant-dock.is-open .assistant-dock__input:disabled,
.assistant-dock.is-open .assistant-dock__submit:disabled {
  cursor: wait;
  opacity: .55;
}

@keyframes assistantTypingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .45; }
  30% { transform: translateY(-3px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .assistant-dock__typing-dots i { animation: none; opacity: .75; }
}

/* Override final: a cápsula cresce junto com o texto e rola só no textarea. */
.assistant-dock.is-open .assistant-dock__composer { flex: 0 0 auto !important; min-height: 40px !important; }
.assistant-dock.is-open .assistant-dock__row {
  height: auto !important;
  min-height: 40px !important;
  align-items: center !important;
  overflow: hidden !important;
}
.assistant-dock.is-open .assistant-dock__input {
  display: block !important;
  width: 100% !important;
  max-height: 84px !important;
  overflow-y: hidden !important;
  overflow-x: hidden !important;
  scrollbar-width: thin !important;
}
.assistant-dock.is-open .assistant-dock__input.is-scrollable { overflow-y: auto !important; }

/* Permite visualizar o texto inteiro e crescer ao usar Shift+Enter. */
.assistant-dock.is-open .assistant-dock__input {
  height: 30px;
  min-height: 30px;
  max-height: 84px;
  padding: 5px 0;
  overflow-y: hidden;
  line-height: 1.35;
  box-sizing: border-box;
}

/* O launcher permanece fixo; o painel abre acima dele sem empurrá-lo. */
.assistant-dock {
  display: block;
}

.assistant-dock__teaser {
  position: relative;
  z-index: 2;
}

.assistant-dock__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 1;
  margin: 0;
}

.assistant-dock.is-open .assistant-dock__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
}

.assistant-dock.is-open {
  right: 18px;
  bottom: 72px;
}

@media (max-width: 640px) {
  .assistant-dock.is-open {
    right: 12px;
    bottom: 16px;
  }

  .assistant-dock__panel,
  .assistant-dock.is-open .assistant-dock__panel {
    right: 0;
    bottom: calc(100% + 10px);
  }
}

/* Estado aberto inspirado no cartão de referência do Ferret Assistente. */
.assistant-dock.is-open { right: 18px; bottom: 72px; }
.assistant-dock.is-open .assistant-dock__panel {
  position: absolute; right: 0; bottom: calc(100% + 10px); isolation: isolate; display: flex; flex-direction: column;
  width: min(330px, calc(100vw - 32px)); min-height: 0;
  max-height: min(570px, calc(100vh - 56px)); overflow: hidden;
  padding: 16px 16px 11px; border: 1px solid rgba(224,227,242,.92);
  border-radius: 20px; background: #fbfbff;
  box-shadow: 0 18px 46px rgba(40,28,94,.2), 0 4px 12px rgba(33,35,68,.08);
}
.assistant-dock.is-open .assistant-dock__panel::before,
.assistant-dock.is-open .assistant-dock__panel::after {
  position: absolute; z-index: -1; width: 150%; height: 170px; border-radius: 50%;
  content: ""; pointer-events: none;
}
.assistant-dock.is-open .assistant-dock__panel::before {
  top: 2px; left: -32%; background: rgba(236,231,255,.75); transform: rotate(11deg);
}
.assistant-dock.is-open .assistant-dock__panel::after {
  top: 45px; left: -46%; border: 18px solid rgba(229,222,255,.65);
  background: transparent; transform: rotate(-8deg);
}
.assistant-dock.is-open .assistant-dock__header {
  position: relative; z-index: 1; display: flex; justify-content: space-between;
  align-items: flex-start; margin: 0;
}
.assistant-dock.is-open .assistant-dock__header strong { color: #1c2137; font-size: .78rem; line-height: 1.2; }
.assistant-dock.is-open .assistant-dock__header p { display: block; margin-top: 3px; color: #7446e8; font-size: .72rem; font-weight: 700; }
.assistant-dock.is-open .assistant-dock__close { width: 25px; height: 25px; padding: 0; color: #7541ec; font-size: 1.65rem; line-height: 20px; }
.assistant-dock.is-open .assistant-dock__welcome { position: relative; z-index: 1; margin-top: 20px; }
.assistant-dock.is-open .assistant-dock__welcome-avatar {
  position: relative; display: grid; place-items: center; width: 52px; height: 52px;
  margin: 0 auto 12px; border: 2px solid #9a73ff; border-radius: 50%; background: #17102e;
  box-shadow: 0 0 0 3px #fff, 0 3px 13px rgba(111,72,231,.28);
}
.assistant-dock.is-open .assistant-dock__welcome-avatar img { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; }
.assistant-dock.is-open .assistant-dock__welcome-avatar span {
  position: absolute; width: 11px; height: 11px; margin: 38px 0 0 38px;
  border: 2px solid #fff; border-radius: 50%; background: #44c66d;
}
.assistant-dock.is-open .assistant-dock__welcome-card {
  padding: 14px 13px 11px; border: 1px solid #e6e5f0; border-radius: 13px;
  background: rgba(255,255,255,.8); box-shadow: 0 3px 10px rgba(40,40,80,.03);
}
.assistant-dock.is-open .assistant-dock__welcome h3 { margin: 0 0 7px; color: #1b2033; font-size: .78rem; line-height: 1.45; }
.assistant-dock.is-open .assistant-dock__welcome p { margin: 0; color: #34394e; font-size: .75rem; line-height: 1.5; }
.assistant-dock.is-open .assistant-dock__chips { display: none; }
.assistant-dock.is-open .assistant-dock__messages { flex: 0 1 auto; min-height: 0; margin-top: 10px; overflow-y: auto; }
.assistant-dock.is-open .assistant-dock__composer { position: relative; z-index: 1; margin-top: 0; padding-top: 8px; }
.assistant-dock.is-open .assistant-dock__row { padding: 3px 4px 3px 11px; border-color: #e2e2ed; border-radius: 12px; }
.assistant-dock.is-open .assistant-dock__input { height: 35px; min-height: 35px; padding: 8px 0; font-size: .75rem; resize: none; }
.assistant-dock.is-open .assistant-dock__submit { flex: 0 0 31px; min-width: 31px; height: 31px; background: #7041e8; font-size: 1.05rem; }
.assistant-dock.is-open .assistant-dock__footer-status { position: relative; z-index: 1; margin: 8px 0 0; color: #8a78c7; font-size: .65rem; text-align: center; }
.assistant-dock.is-open .assistant-dock__footer-status span { color: #7541ec; }
@media (max-width: 640px) {
  .assistant-dock.is-open { right: 12px; bottom: 16px; }
  .assistant-dock.is-open .assistant-dock__panel { width: min(330px, calc(100vw - 24px)); max-height: calc(100vh - 32px); }
}

/* Campo de mensagem final: cápsula baixa, sem alças e com envio discreto. */
.assistant-dock.is-open .assistant-dock__row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  height: 40px;
  padding: 4px 8px 4px 12px;
  border: 1px solid #e5e3ee;
  border-radius: 999px;
  background: #fff;
}

.assistant-dock.is-open .assistant-dock__input {
  flex: 1;
  width: auto;
  height: 30px;
  min-height: 30px;
  padding: 5px 0;
  resize: none;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: #34394e;
  font-size: .72rem;
  line-height: 20px;
  box-sizing: border-box;
}

.assistant-dock.is-open .assistant-dock__input::placeholder {
  color: #8a8c99;
  opacity: 1;
}

.assistant-dock.is-open .assistant-dock__submit {
  flex: 0 0 25px;
  min-width: 25px;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7041e8;
  font-size: 1.35rem;
  line-height: 1;
}

/* Launcher da home igual ao exibido nas páginas de exemplo. */
body.home-page .assistant-dock__teaser {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 210px;
  min-width: 210px;
  height: 58px;
  min-height: 58px;
  padding: 7px 18px 7px 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec4899, #a855f7 58%, #6d28d9);
  box-sizing: border-box;
}

body.home-page .assistant-dock__speech-bubble {
  position: absolute;
  right: 16px;
  bottom: calc(100% + 14px);
  z-index: 3;
  display: flex;
  align-items: center;
  width: max-content;
  max-width: min(280px, calc(100vw - 32px));
  padding: 7px 8px 7px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  background: #24113f;
  box-shadow: 0 14px 34px rgba(20, 7, 40, .42);
  opacity: 0;
  transform: translateY(8px) scale(.97);
  transform-origin: 75% 100%;
  transition: opacity .22s ease, transform .22s ease;
}

body.home-page .assistant-dock__speech-bubble::after {
  position: absolute;
  right: 165px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: #24113f;
  transform: rotate(45deg);
  content: "";
}

body.home-page .assistant-dock__speech-bubble[hidden] {
  display: none;
}

body.home-page .assistant-dock__speech-bubble.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.home-page .assistant-dock__speech-message,
body.home-page .assistant-dock__speech-close {
  position: relative;
  z-index: 1;
  border: 0;
  color: #fff;
  font: inherit;
  cursor: pointer;
}

body.home-page .assistant-dock__speech-message {
  padding: 3px 5px 3px 0;
  background: transparent;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  white-space: nowrap;
}

body.home-page .assistant-dock__speech-close {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  line-height: 1;
}

body.home-page .assistant-dock__speech-message:hover {
  color: #f5d0fe;
}

body.home-page .assistant-dock__speech-close:hover {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

body.home-page .assistant-dock__speech-message:focus-visible,
body.home-page .assistant-dock__speech-close:focus-visible {
  outline: 2px solid #f0abfc;
  outline-offset: 2px;
}

body.home-page .assistant-dock__avatar {
  position: relative;
  top: auto;
  left: auto;
  display: grid;
  place-items: center;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  margin: 0;
  transform: none;
}

body.home-page .assistant-dock__copy {
  position: static;
  display: grid;
  gap: 1px;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  text-align: left;
}

/* No celular, preserva a cápsula e ancora somente o painel à viewport. */
@media (max-width: 640px) {
  body.home-page .assistant-dock,
  body.home-page .assistant-dock.is-open {
    left: auto !important;
    right: 12px !important;
    bottom: 76px !important;
    width: auto !important;
  }

  body.home-page .assistant-dock__teaser {
    position: relative !important;
    display: flex !important;
    width: 210px !important;
    min-width: 210px !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 7px 18px 7px 8px !important;
    box-sizing: border-box;
  }

  body.home-page .assistant-dock__speech-bubble {
    right: 8px;
    max-width: calc(100vw - 32px);
  }

  body.home-page .assistant-dock__speech-message {
    white-space: normal;
  }

  body.home-page .assistant-dock__avatar {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 43px !important;
    width: 43px !important;
    height: 43px !important;
    margin: 0 !important;
    transform: none !important;
    box-sizing: border-box;
  }

  body.home-page .assistant-dock__copy {
    position: static !important;
    display: grid !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
  }

  body.home-page .assistant-dock__badge {
    display: block !important;
    width: 35px !important;
    height: 35px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
  }

  body.home-page .assistant-dock__avatar-status {
    right: -1px !important;
    bottom: 0 !important;
    margin: 0 !important;
    transform: none !important;
  }

  body.home-page .assistant-dock.is-open .assistant-dock__panel {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 140px !important;
    width: auto !important;
    min-height: 0 !important;
    max-height: min(570px, calc(100dvh - 152px)) !important;
  }

}

@media (prefers-reduced-motion: reduce) {
  body.home-page .assistant-dock__speech-bubble {
    transition: none;
  }
}
