/* ============================================================
   KAIROS CRM — Landing Page
   ============================================================ */
:root {
  --color-primary: #A6C404;
  --color-primary-dark: #8aa303;
  --color-white: #FFFFFF;
  --color-gray-50: #F7F7F7;
  --color-gray-100: #F0F0F0;
  --color-gray-200: #E4E4E4;
  --color-gray-400: #9a9a9a;
  --color-gray-500: #6b6b6b;
  --color-ink: #0A0A0A;
  --color-ink-2: #111111;
  --color-ink-3: #1b1b1b;
  --text-dark: #14160f;
  --text-muted: #5a5f52;
  --text-light: #ededed;
  --text-light-muted: #a7ac9c;

  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 28px;
  --container: 1140px;
  --gap: clamp(1rem, 3vw, 2rem);

  --shadow-sm: 0 4px 16px rgba(0,0,0,.06);
  --shadow: 0 12px 40px rgba(0,0,0,.10);
  --glow: 0 0 0 1px rgba(166,196,4,.5), 0 8px 30px rgba(166,196,4,.28);
  --ease: cubic-bezier(.16,.84,.44,1);

  --font: 'Sora', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--color-white);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }

.section--dark {
  background: var(--color-ink);
  color: var(--text-light);
}

/* ---------- Tipografia / títulos ---------- */
h1, h2, h3 { line-height: 1.08; font-weight: 800; letter-spacing: -.02em; }

.section__title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  max-width: 18ch;
  margin-bottom: 1rem;
}
.section--dark .section__title,
.section__title--light { color: var(--color-white); }

.section__lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--text-muted);
  max-width: 60ch;
  font-weight: 400;
}
.section--dark .section__lead,
.section__lead--light { color: var(--text-light-muted); }

.hl { color: var(--color-primary); }
.hl-soft { color: var(--color-gray-400); }
.section--dark .hl-soft { color: var(--color-primary); }

.badge {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  background: rgba(166,196,4,.14);
  border: 1px solid rgba(166,196,4,.4);
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}
.badge--light { color: var(--color-primary); background: rgba(166,196,4,.12); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .85rem 1.6rem;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--color-primary); color: var(--color-ink); }
.btn--primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--glow); }
.btn--dark { background: var(--color-ink); color: var(--color-white); }
.btn--dark:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.btn--outline { background: transparent; border-color: currentColor; color: var(--color-ink); }
.section--dark .btn--outline { color: var(--color-white); }
.btn--outline:hover { background: var(--color-ink); color: var(--color-white); transform: translateY(-2px); }
.section--dark .btn--outline:hover { background: var(--color-white); color: var(--color-ink); }
.btn--ghost { background: var(--color-ink); color: #fff; padding: .6rem 1.2rem; min-height: 42px; }
.btn--ghost:hover { background: var(--color-primary); color: var(--color-ink); transform: translateY(-1px); }
.btn--lg { font-size: 1.1rem; padding: 1.15rem 2.2rem; min-height: 58px; }
.btn:active { transform: translateY(0) scale(.98); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
  padding-block: .65rem;
}
.nav.is-scrolled {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: inline-flex; align-items: center; gap: .55rem; }
.nav__logo-img { height: 34px; width: auto; }
.nav__logo-text { font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; color: var(--color-ink); }
.nav__menu { display: flex; align-items: center; gap: 1.6rem; }
.nav__link { font-weight: 500; font-size: .96rem; color: var(--text-dark); transition: color .2s; }
.nav__link:hover { color: var(--color-primary-dark); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--color-ink); border-radius: 2px; transition: .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  padding-top: clamp(7rem, 14vw, 9.5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  text-align: center;
  background:
    radial-gradient(60% 50% at 50% -10%, rgba(166,196,4,.14), transparent 70%),
    var(--color-white);
}
.hero__inner { display: flex; flex-direction: column; align-items: center; }
.hero__seal {
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  color: var(--text-muted); margin-bottom: 1.4rem;
}
.hero__title {
  font-size: clamp(2.1rem, 6vw, 4rem);
  max-width: 16ch; margin-bottom: 1.3rem;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: var(--text-muted); max-width: 58ch; margin-bottom: 2rem;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero__note { margin-top: 1.4rem; font-size: .9rem; color: var(--text-muted); }
.badge--breathe { animation: breathe 3s ease-in-out infinite; }

/* ---------- ECOSSISTEMA / ORBIT ---------- */
.ecosystem .container { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .ecosystem .container { grid-template-columns: 1fr 1fr; } }

.ecosystem__orbit { position: relative; aspect-ratio: 1; max-width: 440px; margin-inline: auto; width: 100%; }
.orbit__center {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%);
  width: 34%; aspect-ratio: 1; background: var(--color-ink); border-radius: 26px;
  display: grid; place-items: center; box-shadow: var(--glow); z-index: 3;
}
.orbit__center img { width: 64%; }
.orbit__ring { position: absolute; inset: 0; }
.orbit__ring::before {
  content: ""; position: absolute; inset: 12%; border: 1.5px dashed rgba(166,196,4,.45);
  border-radius: 50%; animation: spin 26s linear infinite;
}
.orbit__node {
  position: absolute; width: 58px; height: 58px; border-radius: 16px;
  background: var(--color-white); border: 1px solid var(--color-gray-200);
  color: var(--color-ink); display: grid; place-items: center;
  box-shadow: var(--shadow-sm); animation: float 5s ease-in-out infinite;
}
.orbit__node--1 { top: 2%; left: 50%; transform: translateX(-50%); color: #25D366; }
.orbit__node--2 { top: 32%; right: -2%; color: #E1306C; animation-delay: .6s; }
.orbit__node--3 { bottom: 6%; right: 14%; color: var(--color-primary-dark); animation-delay: 1.2s; }
.orbit__node--4 { bottom: 6%; left: 14%; color: #FFB400; animation-delay: 1.8s; }
.orbit__node--5 { top: 32%; left: -2%; color: #2D7FF9; animation-delay: 2.4s; }

/* ---------- APP MOCKUP ---------- */
.app-mockup {
  display: grid; grid-template-columns: 200px 230px 1fr;
  background: var(--color-ink-2); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08); min-height: 420px;
}
.app-mockup__sidebar { background: #0d0d0d; padding: 1.2rem 1rem; border-right: 1px solid rgba(255,255,255,.06); }
.app-mockup__brand { display: flex; align-items: center; gap: .5rem; color: #fff; font-weight: 700; margin-bottom: 1.4rem; }
.app-mockup__brand img { width: 24px; }
.app-mockup__sidebar ul { display: flex; flex-direction: column; gap: .3rem; }
.app-mockup__sidebar li { font-size: .85rem; color: var(--text-light-muted); padding: .55rem .7rem; border-radius: 10px; }
.app-mockup__sidebar li.is-active { background: rgba(166,196,4,.16); color: var(--color-primary); font-weight: 600; }
.app-mockup__list { background: #121212; padding: 1rem .8rem; border-right: 1px solid rgba(255,255,255,.06); display: flex; flex-direction: column; gap: .4rem; }
.conv { display: flex; gap: .6rem; align-items: center; padding: .55rem; border-radius: 12px; }
.conv.is-active { background: rgba(255,255,255,.05); }
.conv__avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,#A6C404,#6b7d00); color: #0a0a0a; display: grid; place-items: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }
.conv strong { display: block; color: #fff; font-size: .82rem; }
.conv small { color: var(--text-light-muted); font-size: .74rem; }
.app-mockup__chat { padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem; background: #161616; justify-content: flex-end; }
.bubble { max-width: 75%; padding: .65rem .9rem; border-radius: 16px; font-size: .85rem; }
.bubble--in { align-self: flex-start; background: #262626; color: #eee; border-bottom-left-radius: 4px; }
.bubble--out { align-self: flex-end; background: var(--color-primary); color: #0a0a0a; border-bottom-right-radius: 4px; font-weight: 500; }
.recording { margin-top: .4rem; align-self: flex-end; display: flex; align-items: center; gap: .5rem; background: #262626; color: #ddd; padding: .55rem .9rem; border-radius: 100px; font-size: .8rem; }
.recording__dot { width: 9px; height: 9px; border-radius: 50%; background: #ff4747; animation: blink 1.2s ease-in-out infinite; }
.recording__wave { display: inline-flex; gap: 3px; align-items: center; }
.recording__wave i { width: 3px; height: 12px; background: var(--color-primary); border-radius: 2px; animation: wave 1s ease-in-out infinite; }
.recording__wave i:nth-child(2){animation-delay:.15s}.recording__wave i:nth-child(3){animation-delay:.3s}.recording__wave i:nth-child(4){animation-delay:.45s}.recording__wave i:nth-child(5){animation-delay:.6s}

/* ---------- PROVA SOCIAL ---------- */
.proof { text-align: center; background: var(--color-gray-50); }
.proof__lead { font-size: clamp(1.2rem, 3vw, 1.9rem); font-weight: 700; max-width: 24ch; margin: 0 auto 2.2rem; letter-spacing: -.02em; }
.proof__lead .count { color: var(--color-primary-dark); }
.proof__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.2rem; }
.proof__logos span {
  font-weight: 700; font-size: 1.05rem; color: var(--color-gray-400);
  filter: grayscale(1); transition: color .25s, transform .25s; cursor: default;
}
.proof__logos span:hover { color: var(--color-ink); transform: translateY(-2px); }

/* ---------- TOUR ---------- */
.tour__inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.tour .section__title { margin-inline: auto; }
.video {
  width: 100%; max-width: 760px; aspect-ratio: 16/9; margin: 2rem auto 2.2rem;
  border-radius: var(--radius-lg); background: linear-gradient(135deg,#1a1a1a,#0a0a0a);
  border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.video::after { content:""; position:absolute; inset:0; background: radial-gradient(50% 60% at 50% 40%, rgba(166,196,4,.16), transparent 70%); }
.video__play {
  position: relative; z-index: 1; width: 78px; height: 78px; border-radius: 50%;
  background: var(--color-primary); color: var(--color-ink); border: 0; cursor: pointer;
  display: grid; place-items: center; padding-left: 4px;
  box-shadow: 0 0 0 0 rgba(166,196,4,.5); animation: pulse-ring 2.4s ease-out infinite;
}
.video__play:hover { transform: scale(1.08); }

/* ---------- BENTO GRID ---------- */
.features .section__title, .features .section__lead { text-align: center; margin-inline: auto; }
.features .section__lead { margin-bottom: 2.6rem; }
.bento {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(3, 1fr);
}
.bento__card {
  background: var(--color-gray-50); border: 1px solid var(--color-gray-100);
  border-radius: var(--radius); padding: 1.8rem;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
  position: relative; overflow: hidden;
}
.bento__card--wide { grid-column: span 2; }
.bento__card--dark { background: var(--color-ink); color: var(--text-light); border-color: rgba(255,255,255,.08); }
.bento__card:hover { transform: scale(1.02); box-shadow: var(--glow); border-color: var(--color-primary); }
.bento__icon { font-size: 1.8rem; margin-bottom: .8rem; }
.bento__card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.bento__card--dark h3 { color: #fff; }
.bento__hl { color: var(--color-primary-dark); font-weight: 600; margin-bottom: .4rem; }
.bento__card--dark .bento__hl { color: var(--color-primary); }
.bento__card p:not(.bento__hl) { color: var(--text-muted); font-size: .95rem; }
.bento__card--dark p:not(.bento__hl) { color: var(--text-light-muted); }
.bento__spark { display: flex; align-items: flex-end; gap: 5px; height: 38px; margin-top: 1.1rem; }
.bento__spark i { flex: 1; background: var(--color-primary); border-radius: 3px; opacity: .85; animation: bar 1.8s ease-in-out infinite; }
.bento__spark i:nth-child(1){height:30%}.bento__spark i:nth-child(2){height:55%;animation-delay:.1s}.bento__spark i:nth-child(3){height:40%;animation-delay:.2s}.bento__spark i:nth-child(4){height:75%;animation-delay:.3s}.bento__spark i:nth-child(5){height:60%;animation-delay:.4s}.bento__spark i:nth-child(6){height:90%;animation-delay:.5s}.bento__spark i:nth-child(7){height:100%;animation-delay:.6s}

/* ---------- PRODUTIVIDADE ---------- */
.productivity__grid { display: grid; gap: clamp(2rem,5vw,3.5rem); }
@media (min-width: 850px) { .productivity__grid { grid-template-columns: 1fr 1fr; } }
.productivity__item h3 { color: #fff; font-size: 1.4rem; margin: 1.3rem 0 .5rem; }
.productivity__item p { color: var(--text-light-muted); }
.device-frame { background: #0d0d0d; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.device-frame__bar { display: flex; gap: 6px; padding: .8rem 1rem; background: #151515; }
.device-frame__bar span { width: 11px; height: 11px; border-radius: 50%; background: #333; }
.device-frame__bar span:first-child { background: #ff5f57; } .device-frame__bar span:nth-child(2) { background: #febc2e; } .device-frame__bar span:nth-child(3) { background: #28c840; }
.device-frame__body { padding: 1.4rem; min-height: 180px; }
.slash-demo__cmd { display: inline-grid; place-items: center; width: 34px; height: 34px; background: var(--color-primary); color: #0a0a0a; font-weight: 800; border-radius: 10px; margin-bottom: .9rem; }
.slash-demo ul { display: flex; flex-direction: column; gap: .5rem; }
.slash-demo li { background: #1c1c1c; color: #ccc; padding: .6rem .8rem; border-radius: 10px; font-size: .85rem; font-family: ui-monospace, monospace; }
.slash-demo li.is-hot { background: rgba(166,196,4,.14); color: var(--color-primary); border: 1px solid rgba(166,196,4,.4); }
.flow-demo { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; }
.flow-node { background: #1c1c1c; color: #ddd; padding: .6rem .9rem; border-radius: 10px; font-size: .82rem; font-weight: 600; }
.flow-node--accent { background: var(--color-primary); color: #0a0a0a; }
.flow-arrow { color: var(--color-primary); font-weight: 700; }

/* ---------- TIMELINE ---------- */
.timeline { text-align: center; background: var(--color-gray-50); }
.timeline .section__title, .timeline .section__lead { margin-inline: auto; }
.timeline .section__lead { margin-bottom: 2.6rem; }
.timeline__track { display: grid; gap: 1.1rem; grid-template-columns: repeat(4, 1fr); text-align: left; }
.tl-card {
  background: #fff; border: 1px solid var(--color-gray-100); border-radius: var(--radius);
  padding: 1.4rem; position: relative; border-top: 3px solid var(--color-gray-200);
  transition: border-color .4s ease, box-shadow .4s ease;
}
.tl-card.is-live { border-top-color: var(--color-primary); box-shadow: var(--shadow-sm); }
.tl-card__tag { font-size: .72rem; font-weight: 700; letter-spacing: .03em; color: var(--text-muted); text-transform: uppercase; }
.tl-card h3 { font-size: 1.1rem; margin: .5rem 0 .3rem; }
.tl-card p { font-size: .88rem; color: var(--text-muted); }

/* ---------- PRICING ---------- */
.pricing { text-align: center; }
.pricing .section__title, .pricing .section__lead { margin-inline: auto; }
.pricing .section__lead { margin-bottom: 2.8rem; }
.plans { display: grid; gap: 1.3rem; grid-template-columns: repeat(3, 1fr); text-align: left; align-items: start; }
.plan {
  background: #fff; border: 1px solid var(--color-gray-200); border-radius: var(--radius-lg);
  padding: 2rem 1.7rem; position: relative; transition: transform .25s var(--ease), box-shadow .25s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan--dark { background: var(--color-ink); color: var(--text-light); border-color: rgba(255,255,255,.1); }
.plan--glow { box-shadow: var(--glow); border-color: var(--color-primary); }
.plan--glow:hover { box-shadow: 0 0 0 1px var(--color-primary), 0 18px 50px rgba(166,196,4,.35); }
.plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: #fff; color: var(--color-ink); padding: .35rem .9rem; border-radius: 100px;
  white-space: nowrap; box-shadow: var(--shadow-sm); border: 1px solid var(--color-gray-200);
}
.plan__badge--primary { background: var(--color-primary); color: var(--color-ink); border-color: var(--color-primary); }
.plan__name { font-size: 1.3rem; margin-bottom: .6rem; }
.plan--dark .plan__name { color: #fff; }
.plan__price { font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; margin-bottom: .8rem; }
.plan--dark .plan__price { color: #fff; }
.plan__currency { font-size: 1.1rem; vertical-align: super; margin-right: 2px; }
.plan__cycle { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.plan--dark .plan__cycle { color: var(--text-light-muted); }
.plan__desc { font-size: .92rem; color: var(--text-muted); margin-bottom: 1rem; min-height: 3.2em; }
.plan--dark .plan__desc { color: var(--text-light-muted); }
.plan__meta { font-weight: 700; font-size: .9rem; margin-bottom: 1.1rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--color-gray-100); }
.plan--dark .plan__meta { border-color: rgba(255,255,255,.1); }
.plan__inherits { font-weight: 600; font-size: .85rem; color: var(--color-primary-dark); margin-bottom: .8rem; }
.plan--dark .plan__inherits { color: var(--color-primary); }
.plan__list { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.6rem; }
.plan__list li { position: relative; padding-left: 1.6rem; font-size: .9rem; color: var(--text-muted); }
.plan--dark .plan__list li { color: var(--text-light-muted); }
.plan__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--color-primary-dark); font-weight: 800; }
.plan--dark .plan__list li::before { color: var(--color-primary); }
.plan__btn { width: 100%; }
.plan-custom {
  margin-top: 1.3rem; background: var(--color-gray-100); border-radius: var(--radius-lg);
  padding: 1.8rem 2rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; text-align: left;
}
.plan-custom h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.plan-custom p { color: var(--text-muted); font-size: .92rem; max-width: 52ch; }
.pricing__note { margin-top: 2rem; font-size: .92rem; color: var(--text-muted); font-weight: 500; }

/* ---------- BANNER META ---------- */
.meta-banner {
  background: var(--color-ink); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.2rem); display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  background-image: radial-gradient(60% 120% at 100% 0%, rgba(166,196,4,.18), transparent 60%);
}
.meta-banner__text { max-width: 56ch; }
.meta-banner h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: .7rem; }
.meta-banner p { color: var(--text-light-muted); }
.meta-banner__icons { display: flex; gap: 1rem; }
.gem {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: var(--color-primary); transition: transform .25s, box-shadow .25s;
}
.gem:hover { transform: translateY(-4px); box-shadow: var(--glow); color: #fff; }

/* ---------- GARANTIA ---------- */
.guarantee { background: linear-gradient(180deg, var(--color-white), var(--color-gray-50)); }
.guarantee__inner {
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  background: #fff; border: 1px solid rgba(166,196,4,.4); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: 0 10px 40px rgba(166,196,4,.12);
}
.guarantee__shield {
  flex-shrink: 0; width: 84px; height: 84px; border-radius: 22px; display: grid; place-items: center;
  background: rgba(166,196,4,.14); color: var(--color-primary-dark);
}
.guarantee .section__title { margin-bottom: .5rem; }
.guarantee .section__lead { max-width: 64ch; }

/* ---------- DEPOIMENTOS ---------- */
.testimonials .section__title { text-align: center; margin: 0 auto 2.6rem; }
.testi-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(3, 1fr); }
.testi {
  background: var(--color-ink-2); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 1.8rem;
}
.testi blockquote { font-size: 1rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.2rem; }
.testi figcaption { display: flex; align-items: center; gap: .7rem; font-size: .9rem; font-weight: 600; color: var(--text-light-muted); }
.testi__avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,#A6C404,#6b7d00); color: #0a0a0a; display: grid; place-items: center; font-weight: 800; }

/* ---------- FAQ ---------- */
.faq__inner { max-width: 820px; margin-inline: auto; text-align: center; }
.faq .section__title { margin: 0 auto .6rem; }
.faq .section__lead { margin: 0 auto 2.4rem; }
.accordion { text-align: left; display: flex; flex-direction: column; gap: .8rem; }
.acc__item { background: var(--color-ink-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .25s; }
.acc__item.is-open { border-color: rgba(166,196,4,.5); }
.acc__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  color: #fff; font-family: var(--font); font-weight: 600; font-size: 1rem;
  padding: 1.2rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.acc__icon { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--color-primary); border-radius: 2px; transition: transform .3s var(--ease); }
.acc__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.acc__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.acc__item.is-open .acc__icon::after { transform: rotate(90deg); opacity: 0; }
.acc__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.acc__item.is-open .acc__a { grid-template-rows: 1fr; }
.acc__a > p { overflow: hidden; color: var(--text-light-muted); padding: 0 1.4rem; transition: padding .35s var(--ease); font-size: .95rem; }
.acc__item.is-open .acc__a > p { padding-bottom: 1.3rem; }

/* ---------- CTA FINAL ---------- */
.final-cta {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(166,196,4,.16), transparent 65%),
    var(--color-ink);
  color: #fff; text-align: center;
}
.final-cta__inner { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.final-cta h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); margin-bottom: 1.1rem; }
.final-cta > .container > p, .final-cta__inner > p { color: var(--text-light-muted); }
.final-cta__inner > p:first-of-type { font-size: 1.1rem; margin-bottom: 1.8rem; max-width: 56ch; }
.final-cta__ps { font-size: .9rem; margin-top: 1.6rem; line-height: 1.7; max-width: 60ch; }
.final-cta__ps strong { color: var(--color-primary); }

/* ---------- FOOTER ---------- */
.footer { background: #060606; color: var(--text-light-muted); padding-top: clamp(3rem,6vw,4.5rem); padding-bottom: 2rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 2fr 1fr; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__logo { height: 32px; margin-bottom: 1rem; }
.footer__col p { font-size: .92rem; max-width: 48ch; }
.footer__links { display: flex; flex-direction: column; gap: .7rem; align-items: flex-start; }
.footer__links a { font-size: .92rem; transition: color .2s; }
.footer__links a:hover { color: var(--color-primary); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; font-size: .85rem; }
.footer__status { display: inline-flex; align-items: center; gap: .5rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--color-primary); animation: blink 1.6s ease-in-out infinite; }

/* ---------- REVEAL / SCROLL ANIMATIONS ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .40s; }

/* ---------- KEYFRAMES ---------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.orbit__node--1 { animation-name: float-x; }
@keyframes float-x { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes wave { 0%,100% { height: 6px; } 50% { height: 16px; } }
@keyframes bar { 0%,100% { transform: scaleY(.7); } 50% { transform: scaleY(1); } }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(166,196,4,.5); } 70% { box-shadow: 0 0 0 22px rgba(166,196,4,0); } 100% { box-shadow: 0 0 0 0 rgba(166,196,4,0); } }

/* ---------- HERO TÍTULO MULTI-LINHA ---------- */
.hero__title-soft {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -.01em;
  margin-top: .8rem;
}

/* ---------- IA 24/7 ---------- */
.ai247 { background: radial-gradient(70% 80% at 80% 0%, rgba(166,196,4,.16), transparent 65%), var(--color-ink); }
.ai247__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .ai247__grid { grid-template-columns: 1.1fr .9fr; } }
.ai247__copy .badge { margin-bottom: 1.2rem; }
.ai247__list { display: flex; flex-direction: column; gap: .7rem; margin: 1.6rem 0 2rem; }
.ai247__list li { color: var(--text-light); font-size: .98rem; display: flex; align-items: flex-start; gap: .7rem; }
.ai247__check { color: var(--color-primary); font-weight: 800; }

.ai247__phone { display: flex; justify-content: center; }

.phone {
  width: 100%; max-width: 360px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(166,196,4,.18);
  position: relative;
}
.phone__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px; background: #000; border-radius: 100px; z-index: 3;
}
.phone__header {
  display: flex; align-items: center; gap: .7rem;
  padding: 2.4rem 1rem .8rem;
  background: #075E54;
  color: #fff;
}
.phone__back { font-size: 1.4rem; opacity: .85; }
.phone__avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,#A6C404,#6b7d00); color: #0a0a0a; display: grid; place-items: center; font-weight: 800; font-size: .9rem; }
.phone__contact { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.phone__contact strong { font-size: .92rem; }
.phone__contact small { font-size: .72rem; opacity: .85; display: inline-flex; align-items: center; gap: .35rem; }
.phone__online { width: 7px; height: 7px; border-radius: 50%; background: var(--color-primary); animation: blink 1.6s ease-in-out infinite; }
.phone__time { font-size: .8rem; opacity: .75; }
.phone__chat {
  background: #0e1612 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='2' cy='2' r='1' fill='%23ffffff10'/></svg>");
  padding: 1rem .9rem 1.2rem;
  display: flex; flex-direction: column; gap: .55rem;
  min-height: 380px;
}
.ai-day { align-self: center; background: rgba(255,255,255,.08); color: #ddd; font-size: .7rem; padding: .25rem .65rem; border-radius: 100px; margin-bottom: .3rem; }
.ai-bubble {
  max-width: 80%;
  padding: .55rem .75rem;
  border-radius: 12px;
  font-size: .85rem;
  line-height: 1.4;
  position: relative;
  word-wrap: break-word;
  animation: bubbleIn .4s var(--ease) both;
}
.ai-bubble--in { align-self: flex-start; background: #1f2c2a; color: #f1f1f1; border-bottom-left-radius: 4px; }
.ai-bubble--out { align-self: flex-end; background: #00674c; color: #f1f1f1; border-bottom-right-radius: 4px; }
.ai-bubble strong { color: var(--color-primary); }
.ai-typing { align-self: flex-start; background: #1f2c2a; padding: .55rem .8rem; border-radius: 14px; display: inline-flex; gap: 4px; }
.ai-typing span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); animation: typing 1.2s ease-in-out infinite; }
.ai-typing span:nth-child(2) { animation-delay: .15s; }
.ai-typing span:nth-child(3) { animation-delay: .3s; }
.phone__input {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem .9rem; background: #1a2422;
}
.phone__plus, .phone__mic { color: rgba(255,255,255,.45); font-size: 1.05rem; }
.phone__field { flex: 1; color: rgba(255,255,255,.4); font-size: .82rem; padding: .5rem .8rem; background: #0e1612; border-radius: 100px; }

/* ---------- AUDIENCE / "Para quem é" ---------- */
.audience .section__title, .audience .section__lead { text-align: center; margin-inline: auto; }
.audience .section__lead { margin-bottom: 2.6rem; }
.audience__grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(3, 1fr); }
.aud-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s, background .25s;
}
.aud-card:hover { transform: translateY(-4px); border-color: var(--color-primary); box-shadow: var(--glow); background: rgba(166,196,4,.06); }
.aud-card__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(166,196,4,.12); border: 1px solid rgba(166,196,4,.3); font-size: 1.6rem; margin-bottom: 1rem; }
.aud-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: .5rem; }
.aud-card p { color: var(--text-light-muted); font-size: .92rem; }

/* ---------- PROOF / MARQUEE ---------- */
.proof { text-align: center; background: var(--color-gray-50); padding-bottom: 0; }
.proof__lead {
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  font-weight: 700;
  max-width: 30ch;
  margin: 0 auto 1.2rem;
  letter-spacing: -.01em;
  line-height: 1.35;
}
.proof__lead .count { color: var(--color-primary-dark); }
.proof__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 auto 2.4rem;
}
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0 4rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-right: clamp(2rem, 5vw, 4rem);
  flex-shrink: 0;
}
.marquee__item {
  display: inline-grid;
  place-items: center;
  height: 60px;
  flex-shrink: 0;
}
.marquee__item img {
  max-height: 44px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(.6);
  opacity: .7;
  transition: filter .25s, opacity .25s;
}
.marquee__item:hover img { filter: none; opacity: 1; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-3px); opacity: 1; }
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card--wide { grid-column: span 2; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .timeline__track { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .app-mockup { grid-template-columns: 1fr; min-height: auto; }
  .app-mockup__sidebar { display: none; }
  .app-mockup__list { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .conv { flex-shrink: 0; }
  .meta-banner { flex-direction: column; align-items: flex-start; }
  .audience__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .ai247__phone { margin-top: 1rem; }
  .marquee { padding: 1.4rem 0 3rem; }
  .marquee__item { height: 48px; }
  .marquee__item img { max-height: 34px; max-width: 100px; }
}

@media (max-width: 640px) {
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(80%, 320px);
    background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 5rem 1.6rem 2rem; gap: 1rem; transform: translateX(100%);
    transition: transform .35s var(--ease); box-shadow: -10px 0 40px rgba(0,0,0,.15);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link { padding: .6rem 0; border-bottom: 1px solid var(--color-gray-100); }
  .nav__cta { margin-top: .6rem; }
  .nav__toggle { display: flex; z-index: 101; }
  .bento, .timeline__track { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .plan-custom, .footer__bottom, .guarantee__inner { flex-direction: column; align-items: flex-start; }
  .plan-custom .btn { width: 100%; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ---------- COOKIE BANNER (LGPD) ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.2rem;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  border-top: 1px solid rgba(166, 196, 4, .3);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1;
  min-width: 280px;
  font-size: .88rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}
.cookie-banner p a {
  color: var(--color-primary);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: .7rem;
  flex-shrink: 0;
}
.cookie-banner__accept {
  min-height: 40px;
  padding: .6rem 1.4rem;
  font-size: .88rem;
}
.cookie-banner__reject {
  min-height: 40px;
  padding: .6rem 1.4rem;
  font-size: .88rem;
  color: var(--text-light-muted);
  border-color: rgba(255,255,255,.2);
}
.cookie-banner__reject:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* ---------- HONEYPOT (invisível) ---------- */
.hp-trap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ---------- RATE LIMIT TOAST ---------- */
.rate-toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1b1b1b;
  color: #fff;
  padding: .8rem 1.4rem;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
  border: 1px solid rgba(166,196,4,.4);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s var(--ease);
}
.rate-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner__actions { justify-content: center; }
}
