:root {
  --bg: #f6f8fb;
  --bg-2: #eef2f7;
  --ink: #0f172a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --blue: #0ea5e9;
  --blue-2: #0284c7;
  --surface: #fff;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --display: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 6% -12%, rgba(14, 165, 233, 0.12), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(2, 132, 199, 0.08), transparent 50%),
    linear-gradient(180deg, #eef3f9 0%, var(--bg) 28%, #f1f5f9 100%);
  overflow-x: hidden;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm {
  min-height: 2.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.28);
}
.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(2, 132, 199, 0.32);
}
.btn-ghost {
  border-color: rgba(14, 165, 233, 0.28);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}
.btn-ghost:hover {
  border-color: var(--blue);
  background: rgba(14, 165, 233, 0.08);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Header */
.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(246, 248, 251, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.top.is-scrolled {
  background: rgba(246, 248, 251, 0.92);
  border-bottom-color: var(--line);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: 0;
}
.logo-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--blue), var(--blue-2));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.logo-text em {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}
.top-nav {
  display: none;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.top-nav a:hover { color: var(--ink); }
.top-social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.55rem;
  padding-right: 0.75rem;
  border-right: 1px solid rgba(14, 165, 233, 0.22);
}
.social-link {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--blue-2);
  border: 1px solid rgba(14, 165, 233, 0.35);
  background: rgba(14, 165, 233, 0.08);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.social-link:hover {
  color: var(--blue);
  border-color: rgba(14, 165, 233, 0.7);
  background: rgba(14, 165, 233, 0.14);
  transform: translateY(-1px);
}
.social-link svg { display: block; }
.menu-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
}
.mobile-nav {
  position: fixed;
  inset: 4.2rem 1rem auto;
  z-index: 39;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  color: var(--muted);
}
.mobile-nav a:hover { color: var(--ink); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.1s ease, transform 8s ease;
}
.hero-img.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.28) 0%, rgba(15, 23, 42, 0.18) 35%, rgba(15, 23, 42, 0.78) 100%),
    radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.18), transparent 45%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 7rem clamp(1rem, 4vw, 2.5rem) 5rem;
  max-width: 44rem;
  color: #f8fafc;
}
.hero-copy .lede { color: rgba(248, 250, 252, 0.82); }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.pill-admin,
.pill-soft {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pill-admin {
  background: rgba(14, 165, 233, 0.95);
  color: #fff;
}
.pill-admin:hover { background: #38bdf8; color: #0f172a; }
.pill-soft {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.28);
}
.hero h1 {
  font-size: clamp(2.35rem, 6.2vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.lede {
  margin-top: 1.05rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.55;
  max-width: 34rem;
  font-weight: 500;
}
.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.hero .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 2;
  width: 1.4rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  transform: translateX(-50%);
}
.scroll-hint span {
  position: absolute;
  left: 50%;
  top: 0.35rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #e0f2fe;
  transform: translateX(-50%);
  animation: drip 1.6s ease-in-out infinite;
}
@keyframes drip {
  0% { top: 0.35rem; opacity: 1; }
  100% { top: 1.4rem; opacity: 0; }
}

/* Segmentos mosaic */
.services { padding: 4.5rem 0 5rem; }
.services-head {
  max-width: var(--max);
  margin: 0 auto 2rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.services-head h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.7rem);
  line-height: 1.15;
}
.services-head p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: var(--muted);
  max-width: 32rem;
}
.service-mosaic {
  display: grid;
  gap: 0.55rem;
  padding: 0 clamp(0.55rem, 2vw, 1rem);
}
.svc {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.svc > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: brightness(0.78) saturate(0.98);
  transform: scale(1);
  transition: transform 0.55s ease, filter 0.35s ease;
  pointer-events: none;
}
.svc:hover > img {
  transform: scale(1.08);
  filter: brightness(0.88) saturate(1.05);
}
.svc-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 0.35rem;
  padding: 1.4rem;
  color: #f8fafc;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.82) 100%);
}
.svc-copy span {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #7dd3fc;
}
.svc-copy h3 {
  font-size: 1.35rem;
  font-weight: 700;
}
.svc-copy p { color: rgba(248, 250, 252, 0.78); font-size: 0.92rem; }
.svc-lg { min-height: 340px; }
.svc-lg .svc-copy { min-height: 340px; }
.svc-wide { min-height: 280px; }

/* Booking form */
.book {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 4.5rem;
}
.book-layout {
  display: grid;
  gap: 1.6rem;
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.16);
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(14, 165, 233, 0.1), transparent 55%),
    var(--surface);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
.book-copy h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  line-height: 1.15;
}
.book-copy > p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 28rem;
}
.book-points {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.book-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}
.book-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--blue);
}
.book-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
}
.book-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
}
.book-form .opt {
  font-weight: 500;
  color: var(--muted);
}
.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0.78rem 0.9rem;
  font: inherit;
  font-weight: 500;
  font-size: 0.95rem;
}
.book-form select option,
.book-form select optgroup {
  background: #fff;
  color: #0f172a;
}
.book-form select option:disabled {
  color: #64748b;
}
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.55);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}
.book-form textarea { resize: vertical; min-height: 88px; }
.book-form input[type="date"] { color-scheme: light; }
.select-wrap {
  position: relative;
  display: block;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.4rem;
  cursor: pointer;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 0.95rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.book-grid {
  display: grid;
  gap: 0.85rem;
}
.book-submit {
  width: 100%;
  margin-top: 0.25rem;
  border: 0;
  cursor: pointer;
}
.book-hint {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}
.book-error {
  margin: 0;
  color: #dc2626;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Fit band — qualquer segmento */
.fit-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.fit-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem clamp(1rem, 4vw, 2.5rem);
}
.fit-inner h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.55rem);
  line-height: 1.15;
  max-width: 18ch;
}
.fit-lede {
  margin-top: 0.9rem;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 1.02rem;
}
.fit-rail {
  margin-top: 1.6rem;
}
.fit-rail-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.fit-rail span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 2.1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.22);
  background: rgba(14, 165, 233, 0.06);
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}
.fit-note {
  margin-top: 1.1rem;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 500;
}

/* Voices */
.voices {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 4rem;
}
.voices-head {
  max-width: 36rem;
  margin-bottom: 1.6rem;
}
.voices-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  line-height: 1.15;
}
.voices-rail {
  display: grid;
  gap: 0.85rem;
}
.voice {
  margin: 0;
  padding: 1.25rem 1.2rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.voice blockquote {
  margin: 0;
  color: #0f172a;
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 500;
}
.voice figcaption {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.15rem;
}
.voice strong {
  font-size: 0.9rem;
  color: var(--ink);
}
.voice span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

/* Sell hook */
.sell-hook {
  position: relative;
  margin: 0.5rem 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(14, 165, 233, 0.12), transparent 55%),
    linear-gradient(180deg, #eef6fc 0%, var(--bg) 100%);
}
.sell-hook-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem clamp(1rem, 4vw, 2.5rem);
}
.sell-hook h2 {
  font-size: clamp(1.95rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  font-weight: 700;
  max-width: 18ch;
}
.sell-hook h2 em {
  font-style: normal;
  color: var(--blue-2);
}
.sell-hook h2 span {
  display: block;
  margin-top: 0.35rem;
  color: #334155;
  font-size: 0.72em;
  font-weight: 500;
  max-width: 22ch;
}
.sell-hook-lede {
  margin-top: 1.15rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.55;
  font-weight: 500;
}

/* Panel mock */
.panel-show {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2.5rem) 4.5rem;
}
.panel-intro {
  max-width: 38rem;
  margin-bottom: 1.8rem;
}
.panel-intro h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.7rem);
  line-height: 1.15;
}
.panel-intro p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.panel-frame {
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}
.panel-shot {
  width: 100%;
}
.panel-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: #f1f5f9;
  border-bottom: 1px solid var(--line);
}
.panel-chrome span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #94a3b8;
}
.panel-chrome span:nth-child(1) { background: #f87171; }
.panel-chrome span:nth-child(2) { background: #fbbf24; }
.panel-chrome span:nth-child(3) { background: #4ade80; }
.panel-chrome em {
  margin-left: 0.6rem;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}
.panel-body {
  display: grid;
  grid-template-columns: 1fr;
}
.panel-side {
  display: none;
  padding: 1.2rem 1rem;
  border-right: 1px solid var(--line);
  background: #f8fafc;
}
.panel-side strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--blue-2);
}
.panel-side nav {
  display: grid;
  gap: 0.35rem;
}
.panel-side nav b,
.panel-side nav span {
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.panel-side nav b {
  background: rgba(14, 165, 233, 0.12);
  color: var(--ink);
}
.panel-main { padding: 1.1rem 1rem 1.3rem; }
.panel-main > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.panel-main > header p {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}
.panel-main > header h3 {
  font-size: 1.35rem;
  font-weight: 700;
}
.panel-main > header button {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  pointer-events: none;
}
.panel-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.panel-kpis > div {
  padding: 0.75rem 0.7rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
}
.panel-kpis span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.panel-kpis strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}
.panel-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.panel-rows li {
  display: grid;
  grid-template-columns: 3.4rem 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.panel-rows time {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-2);
}
.panel-rows strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}
.panel-rows small {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.78rem;
}
.panel-rows em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
}
.st-ok { background: rgba(16, 185, 129, 0.12); color: #059669; }
.st-run { background: rgba(14, 165, 233, 0.14); color: #0284c7; }
.st-wait { background: rgba(245, 158, 11, 0.14); color: #d97706; }
.panel-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

/* Suite */
.suite {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2.5rem) 5rem;
}
.suite-intro {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}
.suite-intro h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  line-height: 1.15;
}
.suite-intro p:not(.eyebrow) {
  margin-top: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}
.suite-split {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
.suite-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}
.suite-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1);
  transition: transform 0.55s ease;
}
.suite-visual:hover img {
  transform: scale(1.06);
}
.suite-float {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: auto;
  width: min(18rem, calc(100% - 2rem));
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 165, 233, 0.22);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 0.2rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  z-index: 2;
}
.suite-float strong {
  font-family: var(--display);
  font-weight: 700;
}
.suite-float span { color: var(--muted); font-size: 0.9rem; }
.suite-float em {
  font-style: normal;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.suite-list { display: grid; gap: 0; }
.suite-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}
.suite-list article:last-child { border-bottom: 1px solid var(--line); }
.suite-list span {
  font-family: var(--font);
  color: var(--blue-2);
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  padding-top: 0.2rem;
}
.suite-list strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.suite-list p { color: var(--muted); line-height: 1.45; }
.suite-cta {
  margin-top: 2.5rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}
.suite-cta h3 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  max-width: 28rem;
  line-height: 1.2;
}

/* Demo */
.proof {
  background:
    radial-gradient(ellipse 60% 80% at 20% 0%, rgba(14, 165, 233, 0.1), transparent 55%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.proof-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem clamp(1rem, 4vw, 2.5rem);
}
.proof-inner h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  font-weight: 700;
}
.proof-inner > p:not(.eyebrow) {
  margin-top: 0.55rem;
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.creds {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 0.85rem;
}
.cred-card {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.cred-card:hover {
  border-color: rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}
.cred-card span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-2);
  font-weight: 700;
}
.cred-card code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
  color: #0f172a;
}
.cred-card em {
  margin-top: 0.45rem;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1d4ed8;
}
.cred-card-ghost em { color: #334155; }
.proof-cta { margin-top: 0.25rem; }
.btn-wa {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
  box-shadow: none !important;
}
.btn-wa:hover {
  background: #1ebe57 !important;
  border-color: #1ebe57 !important;
  color: #fff !important;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.faq-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.4rem clamp(1rem, 4vw, 2.5rem) 2.6rem;
}
.faq-head {
  max-width: 36rem;
  margin-bottom: 0.85rem;
}
.faq-head .eyebrow { margin-bottom: 0.35rem; }
.faq-head h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
}
.faq-list {
  display: grid;
  gap: 0.35rem;
  max-width: 42rem;
}
.faq-item {
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: 10px;
  background: var(--surface);
  padding: 0 0.85rem;
}
.faq-item[open] {
  border-color: rgba(14, 165, 233, 0.32);
  background: rgba(14, 165, 233, 0.04);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.72rem 1.4rem 0.72rem 0;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0.1rem;
  top: 50%;
  width: 0.38rem;
  height: 0.38rem;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}
.faq-item p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.86rem;
  max-width: 38rem;
}
.faq-item strong { color: var(--ink); font-weight: 700; }
.faq-cta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}
.faq-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}
.faq-cta .btn { min-height: 2.4rem; padding: 0.55rem 1rem; font-size: 0.84rem; }

.foot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2.5rem) 2.5rem;
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line);
}
.foot-brand { display: grid; gap: 0.25rem; }
.foot-brand strong {
  font-family: var(--font);
  letter-spacing: 0.04em;
  color: var(--blue-2);
  font-weight: 800;
}
.foot-brand span { color: var(--muted); font-size: 0.9rem; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}
.foot-links a {
  color: #334155;
  font-weight: 600;
}
.foot-links a:hover { color: var(--blue-2); }

.wa-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 50;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease;
}
.wa-fab:hover { transform: scale(1.06); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

@media (min-width: 760px) {
  .menu-btn { display: none; }
  .top-nav { display: flex; }
  .mobile-nav { display: none !important; }

  .service-mosaic {
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 300px 240px 260px;
    gap: 0.65rem;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
  }
  .svc,
  .svc .svc-copy { min-height: 0; height: 100%; }
  .svc-lg {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .svc-adv {
    grid-column: 2 / span 2;
    grid-row: 2;
  }
  .svc-wide {
    grid-column: 1 / span 2;
    grid-row: 3;
  }

  .book-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
  }
  .book-form { padding: 1.45rem; }
  .book-grid { grid-template-columns: 1fr 1fr; }

  .panel-body { grid-template-columns: 200px 1fr; }
  .panel-side { display: block; }
  .panel-main { padding: 1.3rem 1.25rem 1.5rem; }

  .suite-split {
    grid-template-columns: 1.05fr 1fr;
    gap: 2.2rem;
  }
  .suite-visual { min-height: 480px; }
  .suite-float {
    left: 1.2rem;
    right: auto;
    bottom: 1.2rem;
    width: min(18rem, 80%);
  }

  .creds {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
  .voices-rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .foot {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

/* —— Mobile polish —— */
@media (max-width: 759px) {
  .hero {
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto;
    align-items: stretch;
    overflow: hidden;
  }
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 220px;
    max-height: 52vh;
    overflow: hidden;
    background: #e2e8f0;
  }
  .hero-img {
    object-fit: cover;
    object-position: center center;
    transform: none !important;
  }
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.28) 55%, rgba(15, 23, 42, 0.72) 100%);
  }
  .hero-copy {
    position: relative;
    z-index: 2;
    padding: 1.35rem 1rem 2rem;
    max-width: none;
    background: var(--bg);
    color: var(--ink);
  }
  .hero-copy .lede { color: var(--muted); }
  .hero-badges {
    display: none;
  }
  .hero h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.35rem);
    line-height: 1.12;
    overflow-wrap: break-word;
  }
  .hero h1 br { display: none; }
  .lede {
    max-width: none;
    font-size: 0.98rem;
  }
  .hero .btn-ghost {
    border-color: rgba(14, 165, 233, 0.28);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-row .btn { width: 100%; justify-content: center; }
  .scroll-hint { display: none; }

  .svc,
  .svc .svc-copy {
    min-height: 0;
  }
  .svc {
    display: grid;
    grid-template-rows: auto auto;
    aspect-ratio: auto;
    background: var(--surface);
  }
  .svc > img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.95) saturate(0.98);
  }
  .svc:hover > img {
    transform: scale(1.04);
  }
  .svc-copy {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 0.95rem 1rem 1.15rem;
    align-content: start;
    color: var(--ink);
    background: var(--surface);
  }
  .svc-copy span { color: var(--blue-2); }
  .svc-copy p { color: var(--muted); }
  .svc-lg,
  .svc-lg .svc-copy,
  .svc-wide {
    min-height: 0;
  }
  .svc h3 {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
  }

  .book,
  .panel-show,
  .suite,
  .proof,
  .faq,
  .foot {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .services { padding-top: 3.25rem; }
  .service-mosaic {
    padding: 0 1rem;
    gap: 0.75rem;
  }

  .book-layout {
    padding: 1.15rem;
    gap: 1.15rem;
  }
  .book-form {
    padding: 1rem;
  }
  .book-form input,
  .book-form select,
  .book-form textarea {
    font-size: 16px;
  }

  .panel-shot {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    height: 300px;
    margin: 0.35rem auto 0.75rem;
    perspective: 900px;
  }
  .panel-shot .panel-frame {
    width: 540px;
    flex-shrink: 0;
    transform: scale(0.56) rotateX(4deg);
    transform-origin: top center;
    border-radius: 14px;
    box-shadow:
      0 18px 40px rgba(15, 23, 42, 0.16),
      0 0 0 1px rgba(14, 165, 233, 0.14);
  }
  .panel-shot .panel-body {
    grid-template-columns: 148px 1fr;
  }
  .panel-shot .panel-side {
    display: block;
    padding: 0.85rem 0.7rem;
  }
  .panel-shot .panel-side strong {
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
  }
  .panel-shot .panel-side nav b,
  .panel-shot .panel-side nav span {
    padding: 0.4rem 0.55rem;
    font-size: 0.72rem;
  }
  .panel-shot .panel-main {
    padding: 0.85rem 0.8rem 1rem;
  }
  .panel-shot .panel-kpis {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }
  .panel-shot .panel-rows li {
    grid-template-columns: 3.2rem 1fr auto;
    gap: 0.55rem;
  }
  .panel-shot .panel-rows li > :last-child {
    grid-column: auto;
    justify-self: end;
  }
  .panel-shot .panel-rows li:nth-child(n + 5) {
    display: none;
  }
  .panel-shot .panel-main > header {
    flex-wrap: nowrap;
  }

  .suite-visual {
    min-height: min(300px, 78vw);
  }
  .suite-float {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }
  .sell-hook h2,
  .faq-head h2 {
    overflow-wrap: break-word;
    max-width: none;
  }

  .faq details summary {
    padding-right: 2rem;
    font-size: 0.98rem;
    line-height: 1.35;
  }
  .faq details p {
    font-size: 0.92rem;
    overflow-wrap: break-word;
  }

  .creds {
    grid-template-columns: 1fr;
  }
  .cred-card code {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .proof-inner {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }
  .proof-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .fit-rail {
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0 1rem;
  }
  .fit-rail-track {
    flex-wrap: nowrap;
    gap: 0.4rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 0.35rem;
    mask-image: linear-gradient(90deg, transparent 0, #000 1rem, #000 calc(100% - 1.4rem), transparent);
  }
  .fit-rail-track::-webkit-scrollbar { display: none; }
  .fit-rail span {
    scroll-snap-align: start;
    min-height: 1.9rem;
    padding: 0.28rem 0.75rem;
    font-size: 0.78rem;
  }
  .fit-note {
    margin-top: 0.75rem;
    font-size: 0.86rem;
  }

  .wa-fab {
    right: max(0.85rem, env(safe-area-inset-right));
    bottom: max(0.85rem, env(safe-area-inset-bottom));
  }
  .foot {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }
  .mobile-nav {
    max-height: min(70vh, 28rem);
    overflow-y: auto;
  }
}

@media (min-width: 760px) and (max-width: 1024px) {
  .top-nav {
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 72%;
  }
  .top-social { gap: 0.25rem; }
  .top-nav > a:not(.btn) { font-size: 0.86rem; }
  .top-nav .btn-sm {
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-img,
  .svc img { transition: none; }
  .scroll-hint span { animation: none; }
}

/* —— Pitch site + painel (padrão AGYON) —— */
.agyon-pitch {
  padding: clamp(2.75rem, 7vw, 4.5rem) clamp(1.1rem, 4vw, 2.5rem);
  background: #0b0b0d;
  color: #f5f5f7;
  scroll-margin-top: 4rem;
}
.agyon-pitch-inner {
  width: min(100%, 720px);
  margin: 0 auto;
  text-align: center;
}
.agyon-pitch .eyebrow {
  color: rgba(255, 255, 255, 0.55) !important;
}
.agyon-pitch h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.agyon-pitch-inner > p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
}
.agyon-pitch-list {
  list-style: none;
  margin: 0 auto 1.45rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  max-width: 26rem;
  text-align: left;
}
.agyon-pitch-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.agyon-pitch-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #25d366;
}
.agyon-pitch .cta-row {
  justify-content: center;
  flex-wrap: wrap;
}

/* Link de preço → AGYON */
.agyon-price-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1rem;
  margin-top: 1.2rem;
  padding: 0.9rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.agyon-price-link:hover {
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(56, 189, 248, 0.08);
}
.agyon-price-link-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.agyon-price-link-value {
  flex: 1 1 auto;
  font-size: 0.95rem;
}
.agyon-price-link-value strong { font-weight: 750; }
.agyon-price-link-go {
  font-size: 0.88rem;
  font-weight: 650;
  color: #7dd3fc;
  white-space: nowrap;
}
.agyon-price-link:hover .agyon-price-link-go { color: #fff; }

/* Sticky WA vendas */
.wa-sticky {
  position: fixed;
  z-index: 60;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: #16a34a;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}
.wa-sticky:hover { background: #15803d; color: #fff !important; }
@media (max-width: 719px) {
  body { padding-bottom: 4.75rem; }
  .wa-sticky { left: 1rem; right: 1rem; }
}
