/* =========================================================
   PULSO NR-1 ASSISTIDO — Landing comercial
   Identidade visual: Inteligência Organizacional
   CSS único, sem dependências externas, sem CDN.
   ========================================================= */

:root {
  /* Marca */
  --pulso-primary: #23424C;
  --pulso-primary-dark: #163A46;
  --pulso-primary-soft: #2E5E6E;

  --pulso-success: #5D8C63;
  --pulso-success-dark: #3E6B47;

  --pulso-graphite: #232629;
  --pulso-gray: #BFC7CC;
  --pulso-gray-light: #E8ECEF;
  --pulso-bg: #F7F9FA;
  --pulso-white: #FFFFFF;

  --pulso-warning: #C9852B;
  --pulso-danger: #A94442;

  /* Texto */
  --text-strong: #18272D;
  --text-base: #324248;
  --text-muted: #51616A;
  --text-on-dark: #EEF3F5;
  --text-on-dark-muted: #C2D1D6;

  /* Raios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Sombras */
  --shadow-soft: 0 16px 40px rgba(35, 38, 41, 0.08);
  --shadow-medium: 0 24px 70px rgba(35, 38, 41, 0.14);

  /* Layout */
  --container: 1280px;
  --header-h: 80px;

  --font-sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, system-ui, -apple-system,
    "Apple Color Emoji", sans-serif;
}

/* ===================== Reset enxuto ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18.5px;
  line-height: 1.7;
  color: var(--text-base);
  background-color: var(--pulso-bg);
  background-image:
    radial-gradient(1100px 520px at 82% -8%, rgba(46, 94, 110, 0.10), transparent 60%),
    radial-gradient(900px 480px at -10% 4%, rgba(93, 140, 99, 0.08), transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  color: var(--text-strong);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

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

/* ===================== Utilitários ===================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section--tight {
  padding: 96px 0;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 68px;
  text-align: center;
}

.section-head--left {
  text-align: left;
  margin-left: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pulso-primary-soft);
  margin-bottom: 18px;
}

.section--dark .eyebrow {
  color: #7FB6A0;
}

h2.section-title {
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3rem);
}

.section-sub {
  font-size: 1.22rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 18px;
}

.section--dark {
  background:
    radial-gradient(900px 520px at 84% -10%, rgba(46, 94, 110, 0.55), transparent 60%),
    linear-gradient(160deg, var(--pulso-primary-dark) 0%, #112B33 55%, var(--pulso-graphite) 100%);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #FFFFFF;
}

.section--dark .section-sub,
.section--dark p {
  color: var(--text-on-dark-muted);
}

/* ===================== Glassmorphism ===================== */
.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 80px rgba(35, 38, 41, 0.10);
}

.glass-dark {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ===================== Botões ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  padding: 17px 30px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid rgba(46, 94, 110, 0.45);
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--pulso-primary-soft), var(--pulso-primary));
  color: #fff;
  box-shadow: 0 14px 30px rgba(35, 66, 76, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(35, 66, 76, 0.34);
}

.btn--success {
  background: linear-gradient(135deg, var(--pulso-success), var(--pulso-success-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(62, 107, 71, 0.28);
}

.btn--success:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(62, 107, 71, 0.34);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--pulso-gray);
  color: var(--pulso-primary);
}

.btn--ghost:hover {
  background: #fff;
  border-color: var(--pulso-primary-soft);
  transform: translateY(-2px);
}

.btn--on-dark {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 19px 38px;
  font-size: 1.12rem;
}

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 249, 250, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(35, 66, 76, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(35, 38, 41, 0.07);
  background: rgba(247, 249, 250, 0.88);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand img {
  height: 34px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav > .btn {
  display: none;
}

.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-base);
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
  letter-spacing: -0.005em;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--pulso-success);
  transition: width 0.2s ease;
}

.main-nav a:hover {
  color: var(--pulso-primary);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--pulso-gray);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--pulso-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.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);
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  padding: 100px 0 124px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 420px at 78% 18%, rgba(93, 140, 99, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pulso-primary);
  background: rgba(46, 94, 110, 0.10);
  border: 1px solid rgba(46, 94, 110, 0.18);
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pulso-success);
  box-shadow: 0 0 0 4px rgba(93, 140, 99, 0.22);
  animation: pulseDot 2.2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(93, 140, 99, 0.35); }
  50% { box-shadow: 0 0 0 7px rgba(93, 140, 99, 0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 1.5rem + 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 26px;
}

.hero h1 .accent {
  color: var(--pulso-primary-soft);
}

.nowrap { white-space: nowrap; }

.hero-sub {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-base);
  max-width: 600px;
  margin-bottom: 22px;
}

.hero-note {
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--text-base);
  border-left: 4px solid var(--pulso-success);
  padding-left: 20px;
  margin-bottom: 38px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* ---- Hero mockup + cards flutuantes ---- */
.hero-stage {
  position: relative;
  padding: 18px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-strong);
  box-shadow: var(--shadow-medium);
  animation: floatY 6s ease-in-out infinite;
}

.floating-card .fc-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
}

.floating-card small {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

.fc-1 { top: 2%; left: -9%; animation-delay: 0s; }
.fc-2 { top: 24%; right: -11%; animation-delay: 0.8s; }
.fc-3 { bottom: 18%; left: -12%; animation-delay: 1.6s; }
.fc-4 { bottom: -4%; right: -2%; animation-delay: 2.2s; }

.fc-ico--ok { background: linear-gradient(135deg, var(--pulso-success), var(--pulso-success-dark)); }
.fc-ico--blue { background: linear-gradient(135deg, var(--pulso-primary-soft), var(--pulso-primary)); }
.fc-ico--amber { background: linear-gradient(135deg, #D89A45, var(--pulso-warning)); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---- Dashboard mockup (HTML/CSS) ---- */
.mockup {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 440px;
  box-shadow: var(--shadow-medium);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.mockup-side {
  background: linear-gradient(180deg, var(--pulso-primary-dark), var(--pulso-graphite));
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.mockup-side .ms-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--pulso-primary-soft), var(--pulso-success));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}

.mockup-side .ms-item {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
}

.mockup-side .ms-item.active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.mockup-main {
  padding: 24px 26px 28px;
}

.mm-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}

.mm-top h5 {
  margin: 0;
  font-size: 1.12rem;
  color: var(--text-strong);
}

.mm-top p {
  margin: 3px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
}

.badge--ok { background: rgba(93, 140, 99, 0.16); color: var(--pulso-success-dark); }
.badge--amber { background: rgba(201, 133, 43, 0.16); color: #9A6519; }
.badge--blue { background: rgba(46, 94, 110, 0.14); color: var(--pulso-primary); }

.mm-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.kpi {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--pulso-gray-light);
  border-radius: var(--radius-sm);
  padding: 14px 15px;
}

.kpi .k-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pulso-primary);
  line-height: 1.1;
}

.kpi .k-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.kpi--ok .k-val { color: var(--pulso-success-dark); }

.mm-chart {
  display: flex;
  align-items: flex-end;
  gap: 11px;
  height: 130px;
  padding: 14px 4px 0;
  border-top: 1px solid var(--pulso-gray-light);
}

.mm-chart .bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--pulso-primary-soft), var(--pulso-primary));
  opacity: 0.9;
}

.mm-chart .bar.alt {
  background: linear-gradient(180deg, var(--pulso-success), var(--pulso-success-dark));
}

/* ===================== Sinais vitais ===================== */
.cards-grid {
  display: grid;
  gap: 28px;
}

.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--pulso-white);
  border: 1px solid var(--pulso-gray-light);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(46, 94, 110, 0.22);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.card-ico {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--pulso-primary-soft), var(--pulso-primary));
}

.card-ico svg { width: 30px; height: 30px; }

.card-ico--success {
  background: linear-gradient(135deg, var(--pulso-success), var(--pulso-success-dark));
}

.card-step {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pulso-primary-soft);
  margin-bottom: 8px;
}

/* ===================== Problema (cards de dor) ===================== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pain-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--pulso-white);
  border: 1px solid var(--pulso-gray-light);
  border-left: 5px solid var(--pulso-warning);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-strong);
  box-shadow: 0 10px 28px rgba(35, 38, 41, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pain-card:hover {
  transform: translateX(4px);
  box-shadow: 0 14px 34px rgba(35, 38, 41, 0.09);
}

.pain-card .x {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: rgba(201, 133, 43, 0.14);
  color: var(--pulso-warning);
  font-weight: 800;
}

/* ===================== Cards em seção escura ===================== */
.card-dark {
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.card-dark:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(127, 182, 160, 0.4);
}

.card-dark h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.card-dark p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.6;
}

.card-dark .card-ico {
  background: linear-gradient(135deg, rgba(127, 182, 160, 0.9), var(--pulso-success-dark));
}

/* ===================== Jornada (timeline) ===================== */
.journey {
  position: relative;
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 24px;
}

.journey-step {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.journey-step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(127, 182, 160, 0.4);
}

.journey-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  background: linear-gradient(135deg, var(--pulso-primary-soft), var(--pulso-success-dark));
  box-shadow: 0 10px 24px rgba(46, 94, 110, 0.4);
  margin-bottom: 18px;
}

.journey-step h4 {
  font-size: 1.18rem;
  line-height: 1.35;
  margin: 0;
  color: #fff;
}

/* ===================== Resultado vira plano de ação ===================== */
.flow-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--pulso-white);
  border: 1px solid var(--pulso-gray-light);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: 0 10px 26px rgba(35, 38, 41, 0.06);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-strong);
}

.flow-item .fn {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, var(--pulso-success), var(--pulso-success-dark));
}

.action-card {
  background: linear-gradient(160deg, var(--pulso-primary), var(--pulso-primary-dark));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: 0 36px 90px rgba(22, 58, 70, 0.4);
}

.action-card .ac-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.action-card h4 {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0;
}

.action-card .ac-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 1.1rem;
}

.action-card .ac-row span:first-child {
  color: rgba(255, 255, 255, 0.65);
}

.action-card .ac-row strong {
  color: #fff;
  font-weight: 600;
}

/* ===================== Plataforma ===================== */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.platform-card {
  background: var(--pulso-white);
  border: 1px solid var(--pulso-gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 30px 34px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.platform-card .pc-ico {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pulso-primary-soft), var(--pulso-primary));
  margin-bottom: 20px;
}

.platform-card .pc-ico svg { width: 28px; height: 28px; }

.platform-card h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.platform-card p {
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* mini-mockup decorativo dentro do bloco plataforma */
.platform-preview {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.mini-mock {
  background: var(--pulso-white);
  border: 1px solid var(--pulso-gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.mini-mock .mm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mini-mock .mm-head strong {
  font-size: 1rem;
  color: var(--text-strong);
}

.mini-mock .mm-line {
  height: 11px;
  border-radius: 6px;
  background: var(--pulso-gray-light);
  margin-bottom: 11px;
}

.mini-mock .mm-line.w70 { width: 70%; }
.mini-mock .mm-line.w50 { width: 50%; }
.mini-mock .mm-line.accent {
  background: linear-gradient(90deg, var(--pulso-primary-soft), var(--pulso-success));
}

.mini-mock .mm-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 78px;
  margin-top: 16px;
}

.mini-mock .mm-bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--pulso-primary-soft), var(--pulso-primary));
}

.mini-mock .mm-bars i.alt {
  background: linear-gradient(180deg, var(--pulso-success), var(--pulso-success-dark));
}

/* ===================== Responsabilidade técnica ===================== */
.highlight-quote {
  margin: 0 auto 60px;
  max-width: 980px;
  text-align: center;
  font-size: clamp(1.35rem, 1rem + 1.3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(150deg, var(--pulso-primary) 0%, var(--pulso-primary-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  box-shadow: 0 32px 80px rgba(22, 58, 70, 0.28);
  position: relative;
  overflow: hidden;
}

.highlight-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--pulso-success), var(--pulso-primary-soft));
}

.highlight-quote::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 140, 99, 0.35), transparent 70%);
  pointer-events: none;
}

/* ===================== Segurança / LGPD ===================== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--pulso-white);
  border: 1px solid var(--pulso-gray-light);
  border-radius: var(--radius-md);
  padding: 24px 24px;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--text-strong);
  box-shadow: 0 10px 24px rgba(35, 38, 41, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.security-item:hover {
  transform: translateY(-3px);
  border-color: rgba(93, 140, 99, 0.4);
  box-shadow: 0 14px 30px rgba(35, 38, 41, 0.08);
}

.security-item .chk {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(93, 140, 99, 0.16);
  color: var(--pulso-success-dark);
}

.security-item .chk svg { width: 19px; height: 19px; }

/* ===================== Implantação piloto ===================== */
.pilot-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.pilot-copy p {
  font-size: 1.18rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.pilot-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}

.pilot-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text-on-dark);
}

.pilot-checklist .chk {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(127, 182, 160, 0.22);
  color: #9FD8C0;
}

.pilot-checklist .chk svg { width: 16px; height: 16px; }

.pilot-panel {
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
}

.pilot-panel h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

/* ===================== Formulário / CTA ===================== */
.cta-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.cta-copy h2 {
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3rem);
}

.cta-copy p {
  font-size: 1.18rem;
  line-height: 1.6;
}

.cta-trust {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-trust li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-on-dark);
  font-size: 1.08rem;
}

.cta-trust .chk {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(127, 182, 160, 0.22);
  color: #9FD8C0;
}

.form-card {
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.34);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
}

.field label .req { color: #F0A988; }

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1.05rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(233, 239, 241, 0.5);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23A9BBC1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field select option {
  color: #1B2A30;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(127, 182, 160, 0.8);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(93, 140, 99, 0.25);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: rgba(231, 155, 126, 0.9);
  box-shadow: 0 0 0 3px rgba(169, 68, 66, 0.22);
}

.field .err-msg {
  font-size: 0.78rem;
  color: #E79B7E;
  display: none;
}

.field.has-error .err-msg { display: block; }

.form-foot {
  margin-top: 22px;
}

.form-disclaimer {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  text-align: center;
}

/* ===================== Rodapé ===================== */
.site-footer {
  background:
    linear-gradient(160deg, var(--pulso-primary-dark) 0%, var(--pulso-graphite) 100%);
  color: var(--text-on-dark-muted);
  padding: 70px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
}

.footer-sign {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7FB6A0;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 420px;
  font-size: 0.98rem;
  margin: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-content: start;
}

.footer-col h5 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.footer-col a {
  font-size: 0.96rem;
  color: var(--text-on-dark-muted);
  transition: color 0.18s ease, padding-left 0.18s ease;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-info {
  font-size: 0.96rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}

.footer-info strong {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-info a {
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-info a:hover { color: #7FB6A0; }

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px 28px;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: rgba(169, 187, 193, 0.72);
}

.footer-bottom > span { line-height: 1.4; }

.footer-bottom a {
  color: rgba(231, 239, 241, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(231, 239, 241, 0.18);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.footer-bottom a:hover {
  color: #FFFFFF;
  border-bottom-color: #7FB6A0;
}

.footer-credit {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-credit > span {
  font-size: 0.8rem;
  color: rgba(169, 187, 193, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-credit > a {
  color: rgba(238, 243, 245, 0.88);
  text-decoration: none;
  transition: color 0.18s ease;
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-credit > a:hover {
  color: #7FB6A0;
}

.footer-credit-url {
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  color: rgba(169, 187, 193, 0.55) !important;
  border-bottom: 1px solid rgba(169, 187, 193, 0.18);
}

.footer-credit-url:hover {
  color: #7FB6A0 !important;
  border-bottom-color: #7FB6A0 !important;
}

/* ===================== Página Obrigado ===================== */
.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 60px 20px;
  text-align: center;
}

.thanks-card {
  max-width: 580px;
  border-radius: var(--radius-xl);
  padding: 56px 44px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.thanks-card img {
  height: 42px;
  width: auto;
  margin: 0 auto 28px;
}

.thanks-check {
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pulso-success), var(--pulso-success-dark));
  box-shadow: 0 16px 40px rgba(62, 107, 71, 0.4);
}

.thanks-card h1 {
  color: #fff;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.1rem);
  margin-bottom: 14px;
}

.thanks-card p {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* ===================== Reveal on scroll ===================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floating-card, .hero-badge .dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===================== Responsivo ===================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-stage { max-width: 560px; margin: 0 auto; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .journey-track { grid-template-columns: repeat(3, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid, .pilot-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 820px) {
  .main-nav,
  .header-cta .btn { display: none; }

  .nav-toggle { display: flex; }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 16px 24px 24px;
    background: rgba(247, 249, 250, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(35, 66, 76, 0.10);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(35, 66, 76, 0.07);
  }

  .main-nav.is-open .btn {
    display: inline-flex;
    margin-top: 12px;
  }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .section { padding: 80px 0; }
  .section--tight { padding: 68px 0; }
  .container { padding: 0 20px; }
  .highlight-quote { padding: 38px 28px; }
  .form-card { padding: 32px 24px; }
  .card { padding: 30px 26px; }
  .cards-grid.cols-4,
  .cards-grid.cols-3,
  .cards-grid.cols-2 { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .journey-track { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-preview { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .pilot-checklist { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-actions .btn,
  .form-foot .btn { width: 100%; }
  .floating-card { transform: scale(0.92); }
  .fc-1 { left: -2%; }
  .fc-2 { right: -2%; }
  .fc-3 { left: -2%; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .floating-card { font-size: 0.78rem; padding: 10px 12px; }
  .mockup { grid-template-columns: 60px 1fr; }
  .mm-kpis { grid-template-columns: 1fr 1fr; }
}

/* ===================== Honeypot (campo invisível) =====================
   Blindagem dupla: wrapper E input com posicionamento off-screen + visibility,
   evitando qualquer resíduo visual mesmo se um estilo de field "vazar". */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.hp-field input {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

/* ===================== Mensagem de erro no formulário ===================== */
.form-alert {
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 22px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.form-alert--error {
  background: rgba(231, 155, 126, 0.14);
  border: 1px solid rgba(231, 155, 126, 0.45);
  color: #FBE2D5;
}

.form-alert--success {
  background: rgba(127, 182, 160, 0.16);
  border: 1px solid rgba(127, 182, 160, 0.45);
  color: #D6F0E2;
}

/* ===================== Estado de envio (AJAX) ===================== */
.btn.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.85;
}

.btn.is-loading .btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  animation: btnspin 0.85s linear infinite;
  margin-right: 4px;
  vertical-align: -3px;
}

@keyframes btnspin { to { transform: rotate(360deg); } }

/* Crédito standalone (obrigado.php) — fora do rodapé escuro principal. */
.site-credit {
  text-align: center;
  padding: 22px 16px 28px;
  font-size: 0.83rem;
  color: rgba(238, 243, 245, 0.55);
}

.site-credit a {
  color: rgba(238, 243, 245, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(238, 243, 245, 0.18);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.site-credit a:hover {
  color: #FFFFFF;
  border-bottom-color: #7FB6A0;
}

