/* ===================== TOKENS ===================== */
:root {
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef1f6;
  --gray-200: #e2e7ef;
  --ink: #0b1220;          /* near-black */
  --ink-2: #111a2e;
  --navy: #0d1b3e;         /* dark blue blocks */
  --navy-2: #0a1430;
  --text: #1b2436;
  --text-soft: #5b6478;
  --text-mute: #68718a;

  --accent: #2563eb;
  --accent-strong: #1d4ed8;
  --accent-soft: #e8efff;
  --accent-glow: rgba(37, 99, 235, .45);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(16, 30, 64, .06);
  --shadow: 0 18px 50px rgba(16, 30, 64, .10);
  --shadow-lg: 0 30px 80px rgba(16, 30, 64, .16);

  --maxw: 1180px;
  --gut: 24px;

  --ff: 'Poppins', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-optical-sizing: auto;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
svg { width: 100%; height: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a, button { touch-action: manipulation; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* Skip link (visível apenas com foco de teclado) */
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--radius-sm);
  transform: translateY(-200%); transition: transform .2s;
}
.skip-link:focus-visible { transform: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-body); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section--alt { background: var(--gray-50); }
.text-accent { color: var(--accent); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: var(--radius-pill);
  font-family: var(--ff); font-weight: 600; font-size: .95rem; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px var(--accent-glow); }
.btn--primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: 0 16px 32px var(--accent-glow); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { color: var(--text); padding: 10px 18px; }
.btn--ghost:hover { color: var(--accent); }
.btn--outline { background: #fff; color: var(--text); border: 1.5px solid var(--gray-200); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ===================== PILLS ===================== */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: var(--accent-soft); color: var(--accent-strong);
  font-family: var(--ff); font-weight: 600; font-size: .82rem;
}
.pill svg { width: 16px; height: 16px; }
.pill--soft { background: var(--accent-soft); color: var(--accent-strong); }
.pill--onDark { background: rgba(255,255,255,.08); color: #cfe0ff; border: 1px solid rgba(255,255,255,.14); }

/* ===================== HEADER ===================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.header.is-scrolled { border-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }

.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff); font-weight: 800; font-size: 1.2rem; }
.logo__mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: #fff; }
.logo__full { height: 38px; width: auto; display: block; object-fit: contain; object-position: left center; }
.logo__mark svg { width: 19px; height: 19px; }
.logo__ai { color: var(--accent); }

.nav { display: flex; gap: 28px; }
.nav__link { font-weight: 500; color: var(--text-soft); font-size: .95rem; position: relative; transition: color .2s; }
.nav__link::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--accent); border-radius:2px; transition: width .25s; }
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.header__actions .btn { font-size: .84rem; padding: 10px 18px; gap: 7px; }
.header__actions .btn svg { width: 16px; height: 16px; }
.nav__toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; min-width: 44px; min-height: 44px; padding: 8px; }
.nav__toggle span { transition: transform .25s ease, opacity .2s ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ===================== HERO ===================== */
.hero {
  padding-top: 112px; padding-bottom: 40px;
  background:
    radial-gradient(900px 420px at 50% -140px, var(--accent-soft), transparent 70%),
    linear-gradient(180deg, #f3f6fe 0%, #f8fafe 40%, #ffffff 100%);
}
.hero__inner { text-align: center; max-width: 1040px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.hero__title { font-family: 'Inter', sans-serif; font-optical-sizing: auto; font-size: clamp(2.25rem, 5vw, 60px); font-weight: 400; font-style: normal; letter-spacing: -.02em; line-height: 1.15; }
.br-desktop { display: none; }
@media (min-width: 760px) { .br-desktop { display: inline; } }
.hero__subtitle { color: var(--text-soft); font-size: clamp(1rem, 2vw, 1.12rem); max-width: 600px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 4px; }
.hero__seals { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; margin-top: 12px; color: var(--text-soft); font-size: .92rem; }
.hero__seals li { display: inline-flex; align-items: center; gap: 10px; }
.seal-ic { display: grid; place-items: center; width: 36px; height: 36px; flex: none; border-radius: 11px; background: var(--accent-soft); color: var(--accent); }
.seal-ic svg { width: 19px; height: 19px; color: var(--accent); }

/* Real product screenshots — browser-frame showcase */
.hero__mockup { margin-top: 54px; }
.shotframe {
  max-width: 1000px; margin-inline: auto;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.shotframe__bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.shotframe__bar span { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.shotframe__url { margin-left: 12px; font-size: .8rem; color: var(--text-mute); background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-pill); padding: 5px 16px; }
.shotframe__screen { position: relative; aspect-ratio: 16 / 7; background: #fff; }
.shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; opacity: 0; transition: opacity .8s ease; }
.shot.is-active { opacity: 1; }
/* If only a single screenshot is present, just show it */
.shotframe__screen:has(.shot:only-child) .shot { position: relative; opacity: 1; }

/* Dot navigation pill (below the dashboard card) */
.shotframe__dots:empty { display: none; }
.shotframe__dots { display: flex; align-items: center; justify-content: center; gap: 4px; width: fit-content; margin: 12px auto 0; padding: 2px 8px; background: var(--gray-100); border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.shotframe__dot { position: relative; width: 32px; height: 44px; padding: 0; border-radius: var(--radius-pill); background: none; cursor: pointer; display: grid; place-items: center; }
.shotframe__dot::before { content: ""; width: 9px; height: 9px; border-radius: var(--radius-pill); background: #767f92; transition: background .25s ease, width .25s ease; }
.shotframe__dot:hover::before { background: var(--text-soft); }
.shotframe__dot.is-active::before { background: var(--accent); width: 24px; }

/* ===================== SECTION HEAD ===================== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.section-title { font-family: var(--ff-body); font-weight: 500; font-size: clamp(2rem, 4.6vw, 3.4rem); letter-spacing: -.02em; }
.section-title--light { color: #fff; }
.section-sub { color: var(--text-soft); font-size: 1.06rem; }
.section-sub--light { color: rgba(255,255,255,.72); }

/* ===================== SOCIAL PROOF ===================== */
.social { padding: 34px 0; }
.social__band { width: 100%; }
.social__row { display: flex; align-items: stretch; }
.social__headline { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; padding: 10px 34px 10px 24px; border-right: 1px solid var(--gray-200); }
.social__heart { display: grid; place-items: center; width: 34px; height: 34px; color: var(--accent); flex: none; }
.social__heart svg { width: 34px; height: 34px; }
.social__count { font-family: var(--ff-body); font-weight: 600; font-size: 1.28rem; line-height: 1.18; color: var(--ink); }
.social__count strong { font-weight: 800; }
.social__cards { flex: 1; min-width: 0; }
.social__cards .embla__viewport { padding: 0 0 4px; }
.social__cards .embla__container { padding-left: 22px; }
.stars { color: #f59e0b; letter-spacing: 2px; font-size: 1.05rem; }
.stars.small { font-size: .82rem; letter-spacing: 1px; }

/* ===================== CAROUSEL ===================== */
.carousel { position: relative; }
/* Embla structure */
.embla__viewport { overflow: hidden; padding: 8px 2px 20px; }
.carousel.is-fallback .embla__viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.embla__container { display: flex; gap: 22px; align-items: stretch; touch-action: pan-y pinch-zoom; }
.embla__slide { flex: 0 0 auto; min-width: 0; }
/* video testimonial card — horizontal (thumbnail left, content right) */
.vcard { width: min(380px, calc(100vw - 64px)); display: flex; align-items: center; gap: 14px; background: transparent; border: none; border-radius: 0; padding: 8px 0; box-shadow: none; transition: none; }
.vcard:hover { transform: none; box-shadow: none; }
.vcard__video { width: 118px; height: 84px; flex: none; border-radius: 10px; overflow: hidden; background: linear-gradient(135deg,#1d2b50,#0d1b3e); display: grid; place-items: center; position: relative; }
.vcard__video::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.4), transparent 60%); }
.play { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--accent); position: relative; z-index: 1; transition: transform .2s; }
.play svg { width: 15px; height: 15px; margin-left: 2px; }

.vcard__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.vcard__head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.vcard__name { background: var(--accent-soft); color: var(--accent-strong); padding: 3px 11px; border-radius: var(--radius-pill); font-family: var(--ff-body); font-weight: 600; font-size: .9rem; }
.vcard__head small { color: var(--text-mute); font-size: .8rem; }
.vcard__quote { color: var(--text-soft); font-size: .95rem; line-height: 1.4; }

/* ===================== NÚMEROS ===================== */
.numbers { padding: 84px 0; }
.metrics-marquee {
  position: relative; left: 50%; right: 50%; width: 100vw; margin-left: -50vw; margin-right: -50vw;
  overflow: hidden;
}
.metrics-track { display: flex; justify-content: space-around; align-items: flex-start; gap: 24px; padding: 0 4vw; flex-wrap: wrap; }
.metric { flex: 0 0 auto; text-align: center; cursor: default; }
.metric strong { display: block; font-family: var(--ff-body); font-weight: 400; font-size: clamp(2.6rem, 5vw, 4.2rem); color: var(--ink); letter-spacing: -.02em; line-height: 1.05; white-space: nowrap; transition: color .25s ease; }
.metric span { display: block; color: var(--text-soft); font-size: 1rem; margin-top: 8px; transition: color .25s ease; }
.metric:hover strong, .metric:hover span { color: var(--accent); }
/* Staggered fade-in when the section enters view */
.js .metrics-track .metric { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.metrics-track.is-in .metric { opacity: 1; transform: none; }
.metrics-track.is-in .metric:nth-child(1) { transition-delay: 0s; }
.metrics-track.is-in .metric:nth-child(2) { transition-delay: .08s; }
.metrics-track.is-in .metric:nth-child(3) { transition-delay: .16s; }
.metrics-track.is-in .metric:nth-child(4) { transition-delay: .24s; }
.metrics-track.is-in .metric:nth-child(5) { transition-delay: .32s; }
.metrics-track.is-in .metric:nth-child(6) { transition-delay: .4s; }

/* ===================== DARK SECTIONS ===================== */
.section--dark { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.glow--1 { width: 460px; height: 460px; background: var(--accent-glow); top: -120px; right: -100px; }
.glow--2 { width: 380px; height: 380px; background: rgba(99,102,241,.35); bottom: -140px; left: -80px; }
.glow--3 { width: 520px; height: 520px; background: var(--accent-glow); top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: .35; }

/* ===================== ASSISTANT ===================== */
.assistant { position: relative; padding: 96px 0; overflow: hidden; background: #fff; }
/* Concentric rings + soft glow behind the phone (right side) */
.assistant__rings, .assistant__glow { position: absolute; top: 50%; right: 6%; transform: translateY(-50%); pointer-events: none; z-index: 0; border-radius: 50%; }
.assistant__rings {
  width: 820px; height: 820px;
  background: repeating-radial-gradient(circle, transparent 0 74px, rgba(37,99,235,.16) 74px 76px);
  -webkit-mask-image: radial-gradient(circle, #000 68%, transparent 85%);
  mask-image: radial-gradient(circle, #000 68%, transparent 85%);
}
.assistant__glow {
  width: 660px; height: 660px; filter: blur(46px);
  background: radial-gradient(circle, rgba(99,102,241,.42), rgba(37,99,235,.26) 45%, transparent 72%);
}
.assistant__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.assistant__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.assistant__copy .section-title { text-align: left; font-family: 'Inter', sans-serif; font-size: 52px; font-weight: 400; font-style: normal; letter-spacing: -.02em; line-height: 1.15; }
.assistant__copy .section-sub { text-align: left; }
.ai-name { color: var(--accent); font-weight: 600; }

/* phone photo */
.assistant__photo {
  width: 100%; max-width: 420px; height: auto; display: block; margin-inline: auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 26px 50px rgba(16,30,64,.18));
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 64%, transparent 96%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 64%, transparent 96%);
}

/* ===================== FEATURES ===================== */
.features { padding: 96px 0; }
.grid { display: grid; gap: 22px; }
/* Icon + text list (3 columns) */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 56px; max-width: 1080px; margin: 0 auto; }
.feat { display: flex; align-items: center; gap: 16px; }
.feat__icon { width: 56px; height: 56px; flex: none; border-radius: 16px; background: #fff; border: 1px solid var(--gray-200); color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s, color .25s; }
.feat__icon svg { width: 26px; height: 26px; }
.feat:hover .feat__icon { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); color: var(--accent); }
.feat__text h3 { font-family: var(--ff-body); font-weight: 600; font-size: 1.04rem; color: var(--ink); }
.feat__text p { color: var(--text-soft); font-size: .92rem; margin-top: 2px; }

/* ===================== ADDONS ===================== */
.addons { padding: 96px 0; }
.addons .container { position: relative; z-index: 1; }
.grid--addons { grid-template-columns: repeat(3,1fr); gap: 30px 44px; max-width: 1120px; margin: 0 auto; }
.acard { position: relative; overflow: hidden; display: flex; flex-direction: row; align-items: center; gap: 16px; background: none; border: none; border-radius: 16px; padding: 12px 14px; transition: background .25s;
  --glow-x: 50%; --glow-y: 50%; --glow-intensity: 0; --glow-radius: 200px; }
.acard:hover { background: rgba(255,255,255,.03); }
/* MagicBento border-glow (follows cursor, blue) — invisible at rest */
.acard::after {
  content: ''; position: absolute; inset: 0; padding: 1.5px; border-radius: inherit; pointer-events: none; z-index: 1;
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgba(37,99,235, calc(var(--glow-intensity) * 0.9)) 0%,
    rgba(37,99,235, calc(var(--glow-intensity) * 0.4)) 30%,
    transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude;
  transition: opacity .3s ease;
}
.acard > * { position: relative; z-index: 2; }
.acard__icon { width: 56px; height: 56px; flex: none; border-radius: 16px; background: rgba(7, 52, 100, .55); border: 1px solid rgba(255,255,255,.22); color: #fff; display: grid; place-items: center; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.acard__icon svg { width: 26px; height: 26px; }
.acard__text h3 { display: flex; align-items: center; gap: 6px; font-size: 1rem; font-weight: 600; color: #fff; }
.acard__text p { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 2px; }
/* AI modules — gradient-glowing icon + sparkle */
.acard--ai .acard__icon {
  border: 2px solid transparent;
  background: linear-gradient(rgba(7,52,100,.85), rgba(7,52,100,.85)) padding-box,
    linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899) border-box;
  box-shadow: 0 0 14px rgba(124,58,237,.45);
}
.ai-spark { width: 14px; height: 14px; flex: none; color: #c084fc; }

/* ===================== TESTIMONIALS (big) ===================== */
.testimonials { padding: 96px 0; }
/* Single horizontal row with side arrows (manual scroll, no autoplay) */
.testimonials__scroller { position: relative; }
.testimonials__grid {
  display: flex; gap: 22px; align-items: stretch;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 24px 24px max(24px, calc(50vw - 590px));
  scrollbar-width: none; -ms-overflow-style: none;
}
.testimonials__grid::-webkit-scrollbar { display: none; }
.testimonials__nav { display: flex; gap: 14px; justify-content: center; margin-top: 26px; }
.t-arrow { width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--ink); cursor: pointer; transition: background .2s, border-color .2s; }
.t-arrow svg { width: 18px; height: 18px; stroke-width: 1.6; }
.t-arrow:hover { background: var(--gray-50); border-color: #cfd6e2; }
/* Photo testimonial cards (quote on top, name at bottom, dark gradient over the photo) */
.tcard { flex: 0 0 auto; width: clamp(255px, 24vw, 305px); aspect-ratio: 384 / 600; scroll-snap-align: start; border-radius: var(--radius-lg); overflow: hidden; position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 26px 24px; color: #fff; box-shadow: var(--shadow); }
.tcard::before { content:""; position:absolute; inset:0; z-index: 0; background-size: cover; background-position: center; } /* colored fallback when no photo */
.t1::before { background: linear-gradient(135deg,#3b82f6,#1e3a8a); }
.t2::before { background: linear-gradient(135deg,#0ea5e9,#0c4a6e); }
.t3::before { background: linear-gradient(135deg,#6366f1,#312e81); }
.t4::before { background: linear-gradient(135deg,#2563eb,#0d1b3e); }
.tcard__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.tcard::after { content:""; position:absolute; inset:0; z-index: 2; background: linear-gradient(180deg, rgba(8,12,28,.5) 0%, rgba(8,12,28,.08) 32%, rgba(8,12,28,.55) 70%, rgba(8,12,28,.94) 100%); }
.tcard__quote, .tcard__person { position: relative; z-index: 3; }
.tcard__quote { font-family: var(--ff-body); font-weight: 600; font-size: 1.02rem; line-height: 1.4; }
.tcard__quote::before { content: '\201C'; margin-right: 2px; color: rgba(255,255,255,.85); }
.tcard__quote::after { content: '\201D'; margin-left: 2px; color: rgba(255,255,255,.85); }
.tcard__person strong { display: block; font-family: var(--ff-body); font-weight: 700; font-size: 1.12rem; }
.tcard__person small { color: rgba(255,255,255,.8); font-size: .86rem; }

/* ===================== SECURITY ===================== */
.security { padding: 96px 0; background: #0a0e1a; }
.security .section-title { color: #fff; }
.security .section-sub { color: rgba(255,255,255,.7); }
.grid--security { grid-template-columns: repeat(4,1fr); }
.scard { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 12px; transition: transform .25s, box-shadow .25s, background .25s; }
.scard:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0,0,0,.5); background: rgba(255,255,255,.06); }
.scard__icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(37,99,235,.16); border: 1px solid rgba(37,99,235,.4); color: #9bc0ff; display: grid; place-items: center; }
.scard__icon svg { width: 26px; height: 26px; }
.scard h3 { font-size: 1.06rem; color: #fff; }
.scard p { color: rgba(255,255,255,.65); font-size: .92rem; }

/* ===================== DIFF ===================== */
.diff { padding: 96px 0; }
.diff__marquee {
  overflow: hidden; width: 100vw; position: relative; left: 50%; transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.diff__track { display: flex; gap: 22px; width: max-content; padding: 10px 0; will-change: transform; }
.diff__marquee.is-static { overflow-x: auto; -webkit-mask-image: none; mask-image: none; padding-bottom: 8px; }
.dcard { flex: 0 0 auto; width: clamp(280px, 23vw, 320px); min-height: 170px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 26px; position: relative; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.dcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dcard__icon { width: auto; height: 30px; background: none; border: none; color: var(--ink); display: block; }
.dcard__icon svg { width: 30px; height: 30px; }
.dcard h3 { font-size: 1.3rem; font-weight: 600; color: var(--ink); line-height: 1.2; }

/* ===================== FAQ ===================== */
.faq { padding: 96px 0; background: var(--gray-50); }
.faq__inner { max-width: 1120px; margin-inline: auto; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.acc.is-open { box-shadow: var(--shadow); border-color: transparent; }
.acc__head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 28px; font-family: var(--ff-body); font-weight: 500; font-size: 1.06rem; text-align: left; color: var(--ink); }
.acc__icon { position: relative; width: 22px; height: 22px; flex: none; }
.acc__icon::before, .acc__icon::after { content:""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--ink); border-radius: 2px; }
.acc__icon::before { width: 14px; height: 2px; }
.acc__icon::after { width: 2px; height: 14px; transition: transform .3s; }
.acc.is-open .acc__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.acc__body { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows .35s ease, visibility 0s .35s; }
.acc.is-open .acc__body { grid-template-rows: 1fr; visibility: visible; transition: grid-template-rows .35s ease, visibility 0s; }
.acc__inner { overflow: hidden; min-height: 0; }
.acc__body p { padding: 0 24px 22px; color: var(--text-soft); }

/* ===================== CTA + FORM ===================== */
.cta { padding: 96px 0; }
.cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cta__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.cta__copy .section-title { text-align: left; }
.cta__seals { display: flex; flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,.78); font-size: .9rem; }
.cta__seals li { display: inline-flex; align-items: center; gap: 8px; }
.seal-check { width: 16px; height: 16px; flex: none; color: #7fb2ff; }

.multistep { background: #fff; color: var(--text); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); }
.multistep__progress { height: 6px; background: var(--gray-100); border-radius: var(--radius-pill); overflow: hidden; margin-bottom: 10px; }
.multistep__progress span { display: block; height: 100%; background: var(--accent); border-radius: inherit; transition: width .35s ease; }
.multistep__count { font-size: .82rem; color: var(--text-mute); margin-bottom: 18px; }
.step { border: none; display: none; flex-direction: column; gap: 12px; }
.step.is-active { display: flex; animation: fadeUp .4s ease; }
.step legend { font-family: var(--ff-body); font-weight: 600; font-size: 1.25rem; margin-bottom: 8px; color: var(--ink); }
.opt { display: flex; align-items: center; gap: 12px; padding: 15px 18px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); cursor: pointer; transition: border-color .2s, background .2s; }
.opt:hover { border-color: var(--accent); }
.opt input { accent-color: var(--accent); width: 18px; height: 18px; }
.opt:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.field { margin-top: 6px; }
.field__label { display: block; font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 6px; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 12px; font-size: .82rem; color: var(--text-soft); cursor: pointer; }
.consent input { width: 18px; height: 18px; flex: none; margin-top: 1px; accent-color: var(--accent); }
.multistep__error { margin-top: 12px; color: #b91c1c; font-size: .88rem; font-weight: 500; }
.field input { width: 100%; padding: 15px 18px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font: inherit; }
.field input:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.multistep__actions { display: flex; gap: 12px; margin-top: 22px; }
.multistep__actions .btn { flex: 1; }
.multistep__done { margin-top: 16px; color: #15803d; font-weight: 600; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }

/* ===================== FOOTER ===================== */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 72px 0 32px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand p { margin: 16px 0 20px; max-width: 320px; font-size: .94rem; }
.logo--footer .logo__text { color: #fff; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #cdd5e4; transition: .2s; }
.socials a svg { width: 19px; height: 19px; }
.socials a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.footer__col h3 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; font-size: .92rem; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 28px; font-size: .86rem; }
.heart { display: inline-block; width: 14px; height: 14px; vertical-align: -2px; color: #60a5fa; }

/* ===================== FLOATING BUTTONS ===================== */
.floats { position: fixed; right: max(22px, env(safe-area-inset-right)); bottom: calc(22px + env(safe-area-inset-bottom)); z-index: 90; display: flex; flex-direction: column; gap: 14px; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; color: #fff; display: grid; place-items: center; transition: transform .2s; }
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 30px; height: 30px; }
.whatsapp { background: #25d366; box-shadow: 0 12px 30px rgba(37,211,102,.5); animation: pulse 2.4s infinite; }
.whatsapp svg { width: 32px; height: 32px; }
@keyframes pulse { 0%{ box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0);} }

/* ===================== ANIMATIONS ===================== */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

.split-word { display: inline-block; will-change: transform, opacity; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  /* Hambúrguer já a partir de 1024px: entre 769–1050px o nav completo não cabe (tablets) */
  .nav { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; padding: 12px var(--gut); border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow); max-height: calc(100vh - 72px); max-height: calc(100dvh - 72px); overflow-y: auto; }
  .nav.is-open .nav__link { padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
  .features__grid { grid-template-columns: repeat(2,1fr); gap: 30px 40px; }
  .grid--security { grid-template-columns: repeat(2,1fr); }
  .metrics-marquee { position: static; width: 100%; margin: 0; left: auto; right: auto; }
  .metrics-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 14px; padding: 0; }
  .assistant__inner, .cta__inner { grid-template-columns: 1fr; gap: 44px; }
  .assistant__copy, .cta__copy { align-items: center; text-align: center; }
  .assistant__copy .section-title, .cta__copy .section-title { text-align: center; }
}
@media (max-width: 768px) {
  /* Mantém o CTA "Testar grátis!" no header; esconde só o "Entrar" */
  .header__actions .btn--ghost { display: none; }
  .grid--addons { grid-template-columns: 1fr; }
  .social__row { flex-direction: column; align-items: stretch; gap: 22px; }
  .social__headline { border-right: none; padding: 10px var(--gut) 0; }
  .social__cards { width: 100%; min-width: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  /* Métricas: sem marquee/máscara — grade limpa 2 colunas */
  .metrics-marquee { position: static; width: 100%; margin: 0; left: auto; right: auto; -webkit-mask-image: none; mask-image: none; }
  .metrics-track { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 14px; padding: 0; }
  .metric strong { font-size: clamp(1.7rem, 8vw, 2.8rem); }
  /* Ornamentos do Assistente menores em telas pequenas */
  .assistant__rings { width: 520px; height: 520px; }
  .assistant__glow { width: 420px; height: 420px; }
}
@media (max-width: 560px) {
  :root { --gut: 18px; }
  .features__grid, .grid--security { grid-template-columns: 1fr; }
  .assistant__copy .section-title { font-size: clamp(1.9rem, 8.5vw, 36px); }
  .hero__cta, .multistep__actions { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .multistep { padding: 22px; }
  .float-btn { width: 54px; height: 54px; }
  .logo__full { height: 30px; }
  .header__actions .btn--dark { font-size: .78rem; padding: 9px 14px; }
  .btn--lg { white-space: normal; }
  /* Prints do produto legíveis: recorte à esquerda em vez de miniatura */
  .shotframe__screen { aspect-ratio: 4 / 3; }
  .shot { object-fit: cover; object-position: left top; }
  /* Espaço extra para o botão flutuante do WhatsApp não cobrir os botões do form */
  .cta { padding-bottom: 140px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ===================== BLOG ===================== */
.blog-hero { padding: 56px 0 8px; text-align: center; background: linear-gradient(180deg, #f3f6fe 0%, #ffffff 100%); }
.blog-hero .section-sub { max-width: 640px; margin-inline: auto; }

.bcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding: 40px 0 96px; }
.bcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bcard__cover { aspect-ratio: 16 / 9; display: flex; align-items: flex-end; padding: 16px 18px; background-size: cover; background-position: center; }
.bcard__tag { display: inline-flex; padding: 5px 12px; border-radius: var(--radius-pill); background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); color: #fff; font-size: .74rem; font-weight: 600; letter-spacing: .02em; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.bcard__body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: 20px 22px 24px; }
.bcard__body h2 { font-size: 1.14rem; font-weight: 600; line-height: 1.35; color: var(--ink); }
.bcard__meta { font-size: .82rem; color: var(--text-mute); }
.bcard__excerpt { color: var(--text-soft); font-size: .94rem; line-height: 1.55; }
.bcard__more { margin-top: auto; padding-top: 12px; color: var(--accent); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.bcard__more svg { width: 15px; height: 15px; transition: transform .2s; }
.bcard:hover .bcard__more svg { transform: translateX(3px); }

/* capas em gradiente (sem imagens externas) */
.bg-1 { background: linear-gradient(135deg, #3b82f6, #1e3a8a); }
.bg-2 { background: linear-gradient(135deg, #0ea5e9, #0c4a6e); }
.bg-3 { background: linear-gradient(135deg, #6366f1, #312e81); }
.bg-4 { background: linear-gradient(135deg, #2563eb, #0d1b3e); }
.bg-5 { background: linear-gradient(135deg, #0891b2, #164e63); }

/* ---------- página de artigo ---------- */
.post-hero { padding: 44px 0 8px; background: linear-gradient(180deg, #f3f6fe 0%, #ffffff 100%); }
.post-hero__inner { max-width: 820px; margin-inline: auto; }
.breadcrumb { font-size: .86rem; color: var(--text-mute); margin-bottom: 18px; }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--accent); }
.post-title { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 600; line-height: 1.2; letter-spacing: -.02em; color: var(--ink); }
.post-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 16px; font-size: .9rem; color: var(--text-mute); }
.post-cover { max-width: 820px; margin: 28px auto 0; border-radius: var(--radius-lg); aspect-ratio: 21 / 8; display: flex; align-items: flex-end; padding: 20px 24px; background-size: cover; background-position: center; }

.post-body { max-width: 760px; margin-inline: auto; padding: 40px 0 48px; font-size: 1.06rem; line-height: 1.75; color: var(--text); }
.post-body h2 { font-size: 1.45rem; font-weight: 600; line-height: 1.3; margin: 38px 0 14px; color: var(--ink); }
.post-body p { margin-bottom: 18px; }
.post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--accent-strong); }
.post-body ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--ink); }
.post-stat { background: var(--accent-soft); border-left: 4px solid var(--accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 22px; margin: 26px 0; font-size: 1.02rem; color: var(--ink); }
.post-fontes { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--gray-200); font-size: .9rem; color: var(--text-soft); }
.post-fontes ul { list-style: none; padding-left: 0; }
.post-fontes li { margin-bottom: 6px; }

/* CTA final dos artigos */
.post-cta { max-width: 760px; margin: 8px auto 72px; background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 34px 32px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; position: relative; overflow: hidden; }
.post-cta::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: var(--accent-glow); filter: blur(80px); top: -120px; right: -80px; pointer-events: none; }
.post-cta h2 { color: #fff; font-size: 1.35rem; font-weight: 600; position: relative; z-index: 1; }
.post-cta p { color: rgba(255,255,255,.75); position: relative; z-index: 1; margin: 0; }
.post-cta .btn { position: relative; z-index: 1; }

/* navegação entre posts / voltar */
.post-back { display: inline-flex; align-items: center; gap: 8px; color: var(--text-soft); font-weight: 500; font-size: .92rem; margin-bottom: 14px; }
.post-back:hover { color: var(--accent); }
.post-back svg { width: 16px; height: 16px; }

@media (max-width: 1024px) {
  .bcards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .bcards { grid-template-columns: 1fr; gap: 20px; padding-bottom: 72px; }
  .post-cover { aspect-ratio: 16 / 9; border-radius: var(--radius); }
  .post-body { font-size: 1rem; padding-top: 30px; }
  .post-cta { padding: 26px 22px; }
}
