:root {
  color-scheme: dark light;
  --navy-950: #06101f;
  --navy-900: #0b132b;
  --navy-850: #0d1931;
  --navy-800: #10203a;
  --navy-700: #163050;
  --blue: #0077ff;
  --blue-strong: #075fd3;
  --cyan: #00cff4;
  --green: #22c55e;
  --green-strong: #129544;
  --white: #ffffff;
  --technical-white: #f7f9fc;
  --ink: #0b1730;
  --ink-soft: #52647a;
  --muted: #9db0bf;
  --line: rgba(15, 42, 74, 0.12);
  --line-dark: rgba(255, 255, 255, 0.11);
  --surface: #ffffff;
  --surface-soft: #eef4f8;
  --surface-dark: rgba(255, 255, 255, 0.055);
  --success-soft: rgba(34, 197, 94, 0.12);
  --warning: #fbbf24;
  --danger: #fb7185;
  --shadow-sm: 0 16px 40px rgba(9, 24, 47, 0.08);
  --shadow-md: 0 24px 70px rgba(4, 15, 34, 0.2);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.32);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 78px;
  --transition: 220ms cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--technical-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
h4,
ul,
ol {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.2rem;
}

h1,
h2,
h3,
h4,
.display-font {
  font-family: Sora, Inter, ui-sans-serif, system-ui, sans-serif;
  text-wrap: balance;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.03;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2.1vw, 29px);
  line-height: 1.15;
}

::selection {
  color: var(--navy-950);
  background: var(--cyan);
}

:focus-visible {
  outline: 3px solid rgba(0, 207, 244, 0.95);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  color: var(--navy-950);
  background: var(--cyan);
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section--light {
  color: var(--ink);
  background: var(--technical-white);
}

.section--white {
  color: var(--ink);
  background: var(--white);
}

.section--dark {
  color: #eff7fb;
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 119, 255, 0.13), transparent 33%),
    radial-gradient(circle at 18% 90%, rgba(34, 197, 94, 0.08), transparent 30%),
    var(--navy-950);
}

.section--navy {
  color: #eff7fb;
  background: var(--navy-900);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 44px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.55vw, 19px);
}

.section--dark .section-heading p,
.section--navy .section-heading p,
.section--dark .lead,
.section--navy .lead {
  color: #a9bdc9;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

.section--dark .eyebrow,
.section--navy .eyebrow,
.hero .eyebrow {
  color: var(--cyan);
}

.text-gradient {
  color: transparent;
  background: linear-gradient(100deg, #ffffff 0%, #8ed9ff 48%, #7ceaa8 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.muted {
  color: var(--muted);
}

.small-note {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.section--dark .small-note,
.section--navy .small-note {
  color: #879eac;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: #dce9f0;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled,
.site-header.force-solid {
  background: rgba(6, 16, 31, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 100%;
  display: grid;
  grid-template-columns: 218px 1fr auto;
  gap: 30px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 205px;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a,
.portal-link {
  position: relative;
  color: #b9cbd6;
  transition: color var(--transition);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.portal-link:hover {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.portal-link {
  font-size: 13px;
  font-weight: 650;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 20px;
  height: 2px;
  display: block;
  content: "";
  background: currentColor;
  border-radius: 99px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span {
  margin: 4px 0;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

/* Buttons */
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  color: inherit;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

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

.btn--primary {
  color: var(--navy-950);
  background: linear-gradient(105deg, var(--cyan), var(--green));
  box-shadow: 0 15px 38px rgba(0, 207, 244, 0.14);
}

.btn--primary:hover {
  box-shadow: 0 18px 50px rgba(0, 207, 244, 0.22);
}

.btn--secondary {
  color: #edf8fc;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--dark {
  color: var(--white);
  background: var(--navy-900);
}

.btn--outline {
  color: var(--navy-900);
  background: transparent;
  border-color: rgba(11, 19, 43, 0.2);
}

.btn--outline:hover {
  border-color: var(--blue);
}

.btn--small {
  min-height: 43px;
  padding-inline: 16px;
  font-size: 13px;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-weight: 800;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 74px) 0 88px;
  color: #f1f8fb;
  background:
    radial-gradient(circle at 85% 18%, rgba(0, 119, 255, 0.19), transparent 34%),
    radial-gradient(circle at 66% 92%, rgba(34, 197, 94, 0.12), transparent 30%),
    var(--navy-950);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
}

.hero::after {
  position: absolute;
  right: -200px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(0, 207, 244, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(0, 119, 255, 0.025), 0 0 0 150px rgba(34, 197, 94, 0.018);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  gap: 70px;
  align-items: center;
}

.hero-copy {
  max-width: 710px;
}

.hero-copy p {
  max-width: 670px;
  margin-bottom: 0;
  color: #b2c4cf;
  font-size: clamp(17px, 1.7vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 30px;
  color: #8fa6b4;
  font-size: 12px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.75);
}

.hero-visual {
  position: relative;
  min-height: 530px;
  perspective: 1200px;
  transition: transform 180ms ease-out;
}

.hero-screen,
.hero-guide-card {
  position: absolute;
  overflow: hidden;
  background: rgba(10, 26, 48, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-screen {
  top: 30px;
  right: 0;
  width: 88%;
  padding: 10px;
  border-radius: 26px;
  transform: rotateY(-4deg) rotateX(1deg);
}

.hero-screen img {
  width: 100%;
  border-radius: 17px;
}

.hero-guide-card {
  right: 8%;
  bottom: 0;
  width: 63%;
  padding: 10px;
  border-radius: 22px;
  transform: translateX(-18%) rotateY(6deg);
}

.hero-guide-card img {
  border-radius: 14px;
}

.hero-floating {
  position: absolute;
  z-index: 3;
  min-width: 210px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #eff8fb;
  background: rgba(7, 20, 38, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-floating--monitor {
  top: 3px;
  left: 2%;
}

.hero-floating--guia {
  right: 0;
  bottom: 58px;
}

.hero-floating b {
  display: block;
  font-size: 13px;
}

.hero-floating small {
  display: block;
  color: #8fa7b6;
  font-size: 10px;
}

.hero-icon {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--cyan), var(--green));
  border-radius: 11px;
  font-size: 17px;
  font-weight: 900;
}

.hero-line {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 10%;
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
  opacity: 0.55;
  transform: rotate(-17deg);
}

.hero-line::before,
.hero-line::after {
  position: absolute;
  top: -4px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 207, 244, 0.8);
}

.hero-line::before { left: 18%; }
.hero-line::after { right: 22%; background: var(--green); }

.hero--compact {
  min-height: 610px;
  padding-bottom: 74px;
}

.hero--compact .hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
}

.hero--compact h1 {
  font-size: clamp(43px, 5.3vw, 70px);
}

.product-hero-media {
  position: relative;
  overflow: hidden;
  padding: 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  box-shadow: var(--shadow-dark);
}

.product-hero-media img {
  width: 100%;
  border-radius: 18px;
}

.product-logo {
  max-width: 270px;
  max-height: 84px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 28px;
}

.product-logo--guia {
  max-width: 320px;
  max-height: 100px;
}

/* Cards and grids */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}

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

.card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card--dark {
  color: #edf7fb;
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--line-dark);
  box-shadow: none;
}

.card p:last-child {
  margin-bottom: 0;
}

.card p {
  color: var(--ink-soft);
}

.card--dark p {
  color: #9fb4c1;
}

.card-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--blue);
  background: rgba(0, 119, 255, 0.08);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
}

.card--dark .card-number {
  color: var(--cyan);
  background: rgba(0, 207, 244, 0.09);
}

.pain-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pain-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.pain-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}

.pain-panel--guia::before {
  background: linear-gradient(180deg, var(--cyan), var(--green));
}

.pain-label {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pain-panel--guia .pain-label {
  color: var(--green-strong);
}

.pain-list {
  display: grid;
  gap: 15px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pain-list li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 11px;
  color: var(--ink-soft);
}

.pain-list li::before {
  width: 7px;
  height: 7px;
  margin-top: 9px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
}

.pain-panel--guia .pain-list li::before {
  background: var(--green);
}

/* Product cards */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.solution-card {
  position: relative;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 36px;
  color: #edf7fb;
  background: linear-gradient(150deg, #0a1b34, #0d2442 70%, #10345a);
  border: 1px solid rgba(0, 207, 244, 0.2);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.solution-card--guia {
  background: linear-gradient(150deg, #071b28, #0b2b35 70%, #0a3e30);
  border-color: rgba(34, 197, 94, 0.25);
}

.solution-card::after {
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  content: "";
  background: rgba(0, 119, 255, 0.12);
  border-radius: 50%;
  filter: blur(30px);
}

.solution-card--guia::after {
  background: rgba(34, 197, 94, 0.12);
}

.solution-card > * {
  position: relative;
  z-index: 1;
}

.solution-card p {
  color: #aec0cb;
}

.solution-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 24px 0 30px;
  padding: 0;
  color: #dcebf1;
  font-size: 14px;
  list-style: none;
}

.solution-card li {
  display: flex;
  gap: 9px;
}

.solution-card li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 8px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
}

.solution-card--guia li::before {
  background: var(--green);
}

.solution-preview {
  position: relative;
  height: 245px;
  margin: auto -12px 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.solution-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-preview--monitor img {
  object-fit: contain;
  padding: 4px;
}

.solution-card .text-link {
  margin-top: auto;
}

/* Benefits */
.benefit-card {
  min-height: 230px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--blue);
  background: linear-gradient(145deg, rgba(0, 119, 255, 0.12), rgba(0, 207, 244, 0.08));
  border: 1px solid rgba(0, 119, 255, 0.13);
  border-radius: 15px;
  font-size: 20px;
  font-weight: 900;
}

/* Complementarity flow */
.complement-grid {
  display: grid;
  grid-template-columns: 1fr 82px 1fr;
  gap: 24px;
  align-items: stretch;
}

.complement-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
}

.complement-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.complement-card--guia strong {
  color: #67e896;
}

.complement-card p {
  margin-bottom: 0;
  color: #a8bbc7;
}

.complement-plus {
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--cyan), var(--green));
  border-radius: 24px;
  font-family: Sora, sans-serif;
  font-size: 32px;
  font-weight: 900;
}

/* Evidence */
.evidence-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: center;
}

.stats {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.stat {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.stat strong {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
  font-family: Sora, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.stat:nth-child(2) strong { color: var(--cyan); }
.stat:nth-child(3) strong { color: var(--warning); font-size: clamp(22px, 3vw, 34px); }
.stat span { color: #9fb2bf; font-size: 13px; }

.evidence-media {
  overflow: hidden;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
}

.evidence-media img {
  width: 100%;
  border-radius: 16px;
}

/* Audience */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

/* Steps */
.step-card {
  position: relative;
  min-height: 245px;
  padding-top: 76px;
}

.step-card .step-number {
  position: absolute;
  top: 26px;
  left: 28px;
  color: #d8e4ec;
  font-family: Sora, sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

/* About and founders */
.about-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 62px;
  align-items: center;
}

.about-media {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.about-media img {
  width: 100%;
}

.about-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  content: "";
  background: linear-gradient(transparent, rgba(6, 16, 31, 0.8));
}

.founder-list {
  display: grid;
  gap: 15px;
  margin-top: 28px;
}

.founder-item {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.founder-item strong {
  display: block;
  font-family: Sora, sans-serif;
  font-size: 18px;
}

.founder-item span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 64px;
  align-items: start;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-option {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  color: #e9f5fa;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.contact-option:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 207, 244, 0.35);
  transform: translateY(-2px);
}

.contact-option b {
  display: block;
  font-size: 14px;
}

.contact-option small {
  color: #8fa5b2;
}

.contact-option span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.lead-form {
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  box-shadow: var(--shadow-dark);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: block;
  margin-bottom: 16px;
}

.field span {
  display: block;
  margin-bottom: 7px;
  color: #c6d5de;
  font-size: 12px;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: #eff8fb;
  background: rgba(4, 13, 28, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input,
.field select {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 116px;
  padding: 13px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #647b8a;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: rgba(4, 13, 28, 0.72);
  border-color: rgba(0, 207, 244, 0.65);
  box-shadow: 0 0 0 4px rgba(0, 207, 244, 0.09);
}

.field select option {
  color: #eaf5f9;
  background: var(--navy-900);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 3px 0 18px;
  color: #9db0bc;
  font-size: 11px;
  line-height: 1.45;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.consent a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}


.form-privacy {
  margin: 2px 0 18px;
  color: #9db0bc;
  font-size: 11px;
  line-height: 1.55;
}

.form-privacy a,
.form-noscript a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-noscript p {
  margin: 0 0 16px;
  color: #ffd88a;
  font-size: 12px;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #8fa5b2;
  font-size: 12px;
  text-align: center;
}

.form-status.success { color: #73e9a7; }
.form-status.error { color: #ff94a6; }

/* Product page specific */
.feature-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.feature-media {
  overflow: hidden;
  padding: 10px;
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.feature-media img {
  width: 100%;
  border-radius: 17px;
}

.feature-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-point b {
  display: block;
  margin-bottom: 4px;
}

.feature-point p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.feature-point .feature-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(0, 119, 255, 0.08);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 900;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-flow::before {
  position: absolute;
  top: 30px;
  right: 8%;
  left: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--green));
  opacity: 0.35;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-node {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--cyan), var(--green));
  border: 6px solid var(--navy-950);
  border-radius: 50%;
  font-family: Sora, sans-serif;
  font-weight: 900;
  box-shadow: 0 0 0 1px rgba(0, 207, 244, 0.28);
}

.process-copy {
  min-width: 0;
}

.process-step h3 {
  margin-bottom: 6px;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.process-step p {
  margin-bottom: 0;
  color: #8fa5b3;
  font-size: 12px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline-card {
  min-height: 205px;
  padding: 25px;
  color: #edf7fb;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
}

.timeline-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-family: Sora, sans-serif;
  font-size: 27px;
}

.timeline-card:nth-child(2) strong { color: var(--danger); }
.timeline-card:nth-child(3) strong { color: #79a8ff; }
.timeline-card:nth-child(4) strong { color: var(--green); }
.timeline-card b { display: block; margin-bottom: 6px; }
.timeline-card p { margin-bottom: 0; color: #8fa5b3; font-size: 13px; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.plan-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.plan-card--pro {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 20px 55px rgba(34, 197, 94, 0.08);
}

.plan-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 11px;
  color: var(--blue-strong);
  background: rgba(0, 119, 255, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.plan-card--pro .plan-label {
  color: var(--green-strong);
  background: rgba(34, 197, 94, 0.1);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--ink-soft);
}

.check-list li::before {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  margin-top: 3px;
  content: "✓";
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.plan-card--pro .check-list li::before {
  background: var(--green);
}

.guide-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.guide-flow .process-step:not(:last-child)::after {
  position: absolute;
  top: 29px;
  right: -15px;
  width: 18px;
  content: "→";
  color: rgba(255, 255, 255, 0.38);
  font-size: 18px;
}

.guide-flow .process-node {
  border-color: var(--navy-900);
}

.audience-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.audience-value-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.audience-value-card .role {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.audience-value-card:nth-child(2) .role { color: var(--green-strong); }
.audience-value-card:nth-child(3) .role { color: #6f54d9; }

.boundary-box {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 28px;
  padding: 22px;
  color: #eaf6fa;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
}

.boundary-box .boundary-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--green);
  border-radius: 16px;
  font-weight: 900;
}

.boundary-box p {
  margin-bottom: 0;
  color: #9fb2bf;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-item summary {
  position: relative;
  padding: 20px 52px 20px 22px;
  font-family: Sora, sans-serif;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  content: "+";
  color: var(--blue);
  font-size: 23px;
  transform: translateY(-50%);
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
}

/* Legal / content */
.content-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + 78px) 0 90px;
  color: var(--ink);
  background: var(--technical-white);
}

.content-shell {
  max-width: 880px;
  margin-inline: auto;
}

.content-shell h1 {
  color: var(--ink);
  font-size: clamp(40px, 5vw, 62px);
}

.content-shell h2 {
  margin-top: 52px;
  font-size: 28px;
}

.content-shell h3 {
  margin-top: 30px;
  font-size: 21px;
}

.content-shell p,
.content-shell li {
  color: var(--ink-soft);
}

.content-shell a {
  color: var(--blue-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 13px;
}

.notice {
  margin: 28px 0;
  padding: 20px 22px;
  color: var(--ink-soft);
  background: #edf5fa;
  border-left: 4px solid var(--cyan);
  border-radius: 14px;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 44px;
  color: #eff8fb;
  background: linear-gradient(120deg, #091a31, #0b2440 60%, #0d3e34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.cta-band::after {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 230px;
  height: 230px;
  content: "";
  background: rgba(0, 207, 244, 0.1);
  border-radius: 50%;
  filter: blur(25px);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}

.cta-band h2 {
  max-width: 740px;
  margin-bottom: 10px;
  font-size: clamp(31px, 4vw, 48px);
}

.cta-band p {
  max-width: 700px;
  margin-bottom: 0;
  color: #a9bdc9;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 68px 0 26px;
  color: #8fa5b2;
  background: #050c18;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
  opacity: 0.9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px;
}

.footer-brand {
  width: 210px;
  margin-bottom: 12px;
}

.footer-copy {
  max-width: 280px;
  color: #7f95a3;
  font-size: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 5px;
  color: #eef7fb;
  font-size: 13px;
}

.footer-column a {
  color: #8fa5b2;
  font-size: 13px;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: linear-gradient(145deg, #5af28d, var(--green));
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(34, 197, 94, 0.28);
  font-family: Sora, sans-serif;
  font-size: 21px;
  font-weight: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 46px rgba(34, 197, 94, 0.38);
}

/* Progressive reveal: content remains visible without JavaScript */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .65, .25, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1080px) {
  .nav-wrap {
    grid-template-columns: 200px 1fr auto;
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-grid,
  .hero--compact .hero-grid {
    grid-template-columns: 1fr 0.92fr;
    gap: 42px;
  }

  .hero-visual {
    min-height: 480px;
  }

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

  .contact-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 38px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .nav-wrap {
    grid-template-columns: 190px 1fr auto;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
  }

  .mobile-panel {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: none;
    max-height: calc(100vh - var(--header-height) - 20px);
    overflow: auto;
    padding: 16px;
    color: #eaf6fa;
    background: rgba(6, 16, 31, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-panel.open {
    display: block;
  }

  .mobile-panel nav {
    display: grid;
    gap: 4px;
  }

  .mobile-panel nav a {
    padding: 13px 12px;
    border-radius: 11px;
    font-weight: 700;
  }

  .mobile-panel nav a:hover,
  .mobile-panel nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-panel-actions {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero,
  .hero--compact {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-grid,
  .hero--compact .hero-grid,
  .evidence-layout,
  .about-layout,
  .contact-layout,
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(620px, 100%);
    min-height: 530px;
    margin-inline: auto;
  }

  .pain-split,
  .solutions-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 560px;
  }

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

  .complement-plus {
    width: 70px;
    height: 70px;
    margin-inline: auto;
  }

  .process-flow,
  .guide-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-flow::before {
    top: 30px;
    bottom: 30px;
    left: 30px;
    width: 2px;
    height: auto;
  }

  .process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    align-items: center;
    padding-bottom: 22px;
    text-align: left;
  }

  .process-node {
    margin: 0;
  }

  .process-copy {
    grid-column: 2;
  }

  .process-step h3 {
    margin-bottom: 4px;
  }

  .guide-flow .process-step:not(:last-child)::after {
    display: none;
  }

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

  .audience-value-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .brand {
    width: 174px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 57px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 43px);
  }

  .hero,
  .hero--compact {
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 66px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-screen {
    top: 28px;
    width: 96%;
  }

  .hero-guide-card {
    right: 1%;
    width: 70%;
    transform: translateX(-22%) rotateY(4deg);
  }

  .hero-floating {
    min-width: 176px;
    padding: 11px 12px;
  }

  .hero-floating--monitor {
    left: -2px;
  }

  .hero-floating--guia {
    right: -2px;
    bottom: 35px;
  }

  .hero-icon {
    width: 31px;
    height: 31px;
    font-size: 14px;
  }

  .hero-floating b { font-size: 11px; }
  .hero-floating small { font-size: 9px; }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .pain-panel,
  .solution-card,
  .plan-card,
  .audience-value-card {
    padding: 24px;
  }

  .solution-card {
    min-height: auto;
  }

  .solution-card ul {
    grid-template-columns: 1fr;
  }

  .solution-preview {
    height: 205px;
  }

  .step-card {
    min-height: 220px;
  }

  .about-layout,
  .feature-layout,
  .contact-layout {
    gap: 36px;
  }

  .lead-form {
    padding: 20px;
  }

  .cta-band {
    padding: 30px 24px;
  }

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

  .cta-band .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .content-page {
    padding-top: calc(var(--header-height) + 54px);
  }
}

@media (max-width: 390px) {
  .brand { width: 156px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* Brand motion — native, lazy-loaded and motion-aware */
.section--motion {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 207, 244, .12), transparent 28rem),
    radial-gradient(circle at 88% 82%, rgba(34, 197, 94, .10), transparent 30rem),
    #06101f;
  color: #f7f9fc;
}
.section--motion::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}
.brand-motion .container { position: relative; z-index: 1; }
.motion-heading { max-width: 760px; margin-bottom: 2.2rem; }
.motion-heading h2, .motion-about-copy h2 { color: #f7f9fc; }
.motion-heading p, .motion-about-copy p { color: rgba(247,249,252,.72); }
.motion-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(91, 213, 255, .24);
  background: #03101f;
  box-shadow: 0 34px 90px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.03);
}
.brand-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #03101f;
}
.motion-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(3, 12, 26, .72) 100%);
}
.motion-caption {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  gap: .9rem;
  z-index: 2;
}
.motion-caption img { width: clamp(42px, 6vw, 66px); height: auto; filter: drop-shadow(0 10px 25px rgba(0,0,0,.35)); }
.motion-caption div { display: grid; gap: .15rem; }
.motion-caption strong { font-family: 'Sora', sans-serif; font-size: clamp(1rem, 2vw, 1.35rem); }
.motion-caption span { font-size: .9rem; color: rgba(247,249,252,.7); }
.motion-about-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.motion-about-copy { max-width: 520px; }
.motion-frame--about { border-radius: 24px; }
@media (max-width: 820px) {
  .motion-about-grid { grid-template-columns: 1fr; }
  .motion-about-copy { max-width: 680px; }
  .motion-frame { border-radius: 20px; }
  .motion-caption span { display: none; }
}
@media (max-width: 560px) {
  .motion-frame { aspect-ratio: 4 / 3; }
  .brand-video { object-position: center; }
  .motion-caption { align-items: flex-end; }
}


/* Progressive fallback when JavaScript is unavailable */
.no-js .lead-form button[type="submit"],
.no-js .form-status { display: none; }

@media (max-width: 900px) {
  .no-js .menu-toggle { display: none !important; }
  .no-js .mobile-panel {
    position: relative;
    z-index: 1;
    top: var(--header-height);
    right: auto;
    left: auto;
    display: block;
    max-height: none;
    margin: 0 14px var(--header-height);
    overflow: visible;
  }
}


/* === V5: hero motion + consolidated economy indicator === */
.hero-visual--motion {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: none;
  transition: none;
}

.hero-video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(91, 213, 255, .26);
  border-radius: 28px;
  background: #03101f;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36), 0 0 70px rgba(0, 207, 244, .08), inset 0 0 0 1px rgba(255, 255, 255, .03);
  isolation: isolate;
}

.hero-video-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 70px rgba(3, 12, 26, .18);
}

.hero-impact-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #03101f;
}

.hero-video-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 12, 26, .02) 55%, rgba(3, 12, 26, .18) 100%),
    radial-gradient(circle at 50% 50%, rgba(0, 207, 244, .02), rgba(3, 12, 26, .08) 78%);
}

.stat--economy {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 136px;
}

.economy-donut {
  position: relative;
  width: 96px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from -90deg, #22c55e 0deg, #00cff4 170deg, #0077ff 252deg, rgba(255, 255, 255, .10) 252deg 360deg);
  box-shadow: 0 0 34px rgba(0, 207, 244, .14);
}

.economy-donut::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #0d1b2c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.economy-donut span {
  position: relative;
  z-index: 1;
  color: #f7f9fc;
  font-family: Sora, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.stat--economy .economy-copy {
  min-width: 0;
}

.stat--economy .economy-copy strong {
  margin: 0 0 6px;
  color: #f7f9fc;
  font-family: Sora, sans-serif;
  font-size: 17px;
  line-height: 1.2;
}

.stat--economy .economy-copy span {
  display: block;
  color: #9fb2bf;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .hero-visual--motion {
    width: min(720px, 100%);
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .hero-visual--motion {
    min-height: 0;
  }
  .hero-video-shell {
    border-radius: 20px;
  }
  .stat--economy {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 15px;
  }
  .economy-donut {
    width: 82px;
  }
  .economy-donut::before {
    inset: 9px;
  }
  .economy-donut span {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-impact-video {
    visibility: hidden;
  }
  .hero-video-shell {
    background: #03101f url('../video/zelunexa-motion-institucional-poster.jpg') center / cover no-repeat;
  }
}

/* === V6: vídeos integrados à composição visual, sem aparência de player === */
.hero-visual--motion {
  position: relative;
  min-height: clamp(380px, 34vw, 490px);
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-video-shell {
  position: relative;
  width: min(100%, 820px);
  aspect-ratio: 4 / 3;
  margin-left: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  -webkit-mask-image: radial-gradient(ellipse 92% 88% at 60% 52%, #000 0 60%, rgba(0,0,0,.94) 72%, rgba(0,0,0,.58) 86%, transparent 100%);
  mask-image: radial-gradient(ellipse 92% 88% at 60% 52%, #000 0 60%, rgba(0,0,0,.94) 72%, rgba(0,0,0,.58) 86%, transparent 100%);
}

.hero-video-shell::before {
  display: none;
}

.hero-impact-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: 60% 52%;
  background: transparent;
  filter: saturate(1.05) contrast(1.035) brightness(.98);
  transform: scale(1.16);
}

.hero-video-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,16,31,.88) 0%, rgba(6,16,31,.46) 11%, rgba(6,16,31,.07) 28%, transparent 52%),
    linear-gradient(180deg, rgba(6,16,31,.16) 0%, transparent 24%, transparent 72%, rgba(6,16,31,.34) 100%),
    radial-gradient(circle at 58% 50%, rgba(0,207,244,.06), transparent 58%);
}

/* O vídeo institucional também se dissolve no ambiente em vez de ficar dentro de um card. */
.brand-motion--about {
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

.brand-motion--about .motion-about-grid {
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(1rem, 2.5vw, 2.6rem);
}

.motion-frame--about {
  position: relative;
  width: calc(100% + clamp(40px, 7vw, 120px));
  margin-right: calc(clamp(40px, 7vw, 120px) * -1);
  aspect-ratio: 16 / 9;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(ellipse 90% 82% at 56% 50%, #000 0 56%, rgba(0,0,0,.94) 70%, rgba(0,0,0,.58) 84%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 82% at 56% 50%, #000 0 56%, rgba(0,0,0,.94) 70%, rgba(0,0,0,.58) 84%, transparent 100%);
}

.motion-frame--about .brand-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}

.motion-frame--about .motion-shade {
  background:
    linear-gradient(90deg, rgba(6,16,31,.9) 0%, rgba(6,16,31,.34) 12%, transparent 35%),
    linear-gradient(180deg, rgba(6,16,31,.12), transparent 28%, transparent 70%, rgba(6,16,31,.38));
}

@media (max-width: 900px) {
  .hero-visual--motion {
    width: min(820px, 112%);
    min-height: clamp(360px, 62vw, 520px);
    margin: -18px -6% 0;
  }
  .hero-video-shell {
    inset: -5% -4% -6%;
    -webkit-mask-image: radial-gradient(ellipse 94% 84% at 50% 50%, #000 0 58%, rgba(0,0,0,.88) 72%, rgba(0,0,0,.46) 86%, transparent 100%);
    mask-image: radial-gradient(ellipse 94% 84% at 50% 50%, #000 0 58%, rgba(0,0,0,.88) 72%, rgba(0,0,0,.46) 86%, transparent 100%);
  }
  .hero-impact-video {
    min-height: clamp(360px, 62vw, 520px);
    object-position: center;
  }
  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(6,16,31,.12) 0%, transparent 22%, transparent 70%, rgba(6,16,31,.48) 100%),
      radial-gradient(circle at 50% 50%, rgba(0,207,244,.06), transparent 58%);
  }
  .brand-motion--about .motion-about-grid {
    grid-template-columns: 1fr;
  }
  .motion-frame--about {
    width: 112%;
    margin: -12px -6% 0;
  }
}

@media (max-width: 640px) {
  .hero-visual--motion {
    width: 116%;
    min-height: 320px;
    margin: -8px -8% -12px;
  }
  .hero-video-shell {
    inset: -2% -2% -4%;
  }
  .hero-impact-video {
    min-height: 320px;
    transform: scale(1.02);
  }
  .motion-frame--about {
    width: 116%;
    margin-inline: -8%;
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-shell,
  .motion-frame--about {
    -webkit-mask-image: radial-gradient(ellipse 90% 82% at 50% 50%, #000 0 58%, rgba(0,0,0,.86) 72%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 82% at 50% 50%, #000 0 58%, rgba(0,0,0,.86) 72%, transparent 100%);
  }
}

/* === V7 FINAL: vídeos proporcionais e integrados, sem aparência de player === */
.hero-visual--motion {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 34vw, 450px);
  align-self: center;
  margin: 0;
  overflow: visible;
  isolation: isolate;
}

.hero-video-shell {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: 16 / 10;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(ellipse 96% 90% at 52% 50%, #000 0 64%, rgba(0,0,0,.94) 74%, rgba(0,0,0,.62) 86%, transparent 100%);
  mask-image: radial-gradient(ellipse 96% 90% at 52% 50%, #000 0 64%, rgba(0,0,0,.94) 74%, rgba(0,0,0,.62) 86%, transparent 100%);
}

.hero-video-shell::before {
  display: none;
}

.hero-impact-video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: saturate(1.04) contrast(1.02) brightness(.98);
  transform: none;
}

.hero-video-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,16,31,.52) 0%, rgba(6,16,31,.10) 14%, transparent 30%, transparent 76%, rgba(6,16,31,.10) 92%, rgba(6,16,31,.32) 100%),
    linear-gradient(180deg, rgba(6,16,31,.10) 0%, transparent 20%, transparent 78%, rgba(6,16,31,.28) 100%),
    radial-gradient(circle at 54% 48%, rgba(0,207,244,.06), transparent 56%);
}

/* Novos blocos de vídeo: fazem parte da composição da página, sem card/moldura. */
.section--motion-inline {
  padding-top: clamp(72px, 7vw, 102px);
  padding-bottom: clamp(72px, 7vw, 102px);
}

.motion-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.motion-split--reverse {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.motion-copy {
  max-width: 560px;
}

.motion-copy p {
  color: rgba(247,249,252,.74);
}

.check-list--light li {
  color: rgba(247,249,252,.84);
}

.motion-frame--inline {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(ellipse 96% 90% at 52% 50%, #000 0 64%, rgba(0,0,0,.94) 74%, rgba(0,0,0,.60) 86%, transparent 100%);
  mask-image: radial-gradient(ellipse 96% 90% at 52% 50%, #000 0 64%, rgba(0,0,0,.94) 74%, rgba(0,0,0,.60) 86%, transparent 100%);
}

.motion-frame--inline::before {
  display: none;
}

.motion-frame--inline .brand-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  transform: none;
  filter: saturate(1.03) contrast(1.02);
}

.motion-shade--inline {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,16,31,.24) 0%, transparent 18%, transparent 82%, rgba(6,16,31,.18) 100%),
    linear-gradient(180deg, rgba(6,16,31,.08), transparent 24%, transparent 74%, rgba(6,16,31,.22));
}

/* Botão permanente da área do cliente. */
.portal-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(0,207,244,.24);
  border-radius: 12px;
  color: #e8f7fb;
  background: rgba(0,207,244,.055);
}

.portal-link:hover {
  color: #fff;
  border-color: rgba(34,197,94,.5);
  background: rgba(34,197,94,.08);
}

@media (max-width: 1050px) {
  .hero-grid {
    gap: 44px;
  }
  .hero-visual--motion {
    min-height: clamp(320px, 35vw, 430px);
  }
  .hero-video-shell {
    width: min(100%, 700px);
  }
}

@media (max-width: 900px) {
  .hero-visual--motion {
    width: min(760px, 100%);
    min-height: clamp(300px, 58vw, 420px);
    margin: 0 auto;
    justify-content: center;
  }
  .hero-video-shell {
    width: 100%;
    margin-inline: auto;
  }
  .motion-split,
  .motion-split--reverse {
    grid-template-columns: 1fr;
  }
  .motion-copy {
    max-width: 680px;
  }
  .motion-frame--inline {
    width: min(760px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .hero-visual--motion {
    min-height: 260px;
  }
  .hero-video-shell,
  .motion-frame--inline {
    aspect-ratio: 4 / 3;
  }
  .hero-impact-video {
    object-fit: cover;
    object-position: 58% 50%;
    transform: scale(1.1);
  }
  .motion-frame--inline .brand-video {
    object-fit: contain;
  }
  .portal-link {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-shell {
    background: transparent url('../video/zelunexa-motion-institucional-poster.jpg') center / contain no-repeat;
  }
  .motion-frame--monitor {
    background: transparent url('../video/zelunexa-motion-monitor-poster.jpg') center / contain no-repeat;
  }
  .motion-frame--guia {
    background: transparent url('../video/zelunexa-motion-guia-poster.jpg') center / contain no-repeat;
  }
}

/* === V12 HOME DESKTOP: video principal ampliado === */
@media (min-width: 1051px) {
  .hero .hero-grid {
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: clamp(30px, 2.4vw, 46px);
  }

  .hero .hero-visual--motion {
    width: calc(100% + clamp(210px, 14vw, 280px));
    min-height: clamp(560px, 41vw, 640px);
    margin-right: calc(clamp(210px, 14vw, 280px) * -1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hero .hero-video-shell {
    width: 100%;
    height: 100%;
    min-height: inherit;
    aspect-ratio: auto;
    overflow: hidden;
    margin: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.72) 4%, #000 11%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.72) 4%, #000 11%, #000 100%);
  }

  .hero .hero-impact-video {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: 78% 50%;
    transform: scale(1.22);
    transform-origin: 78% 50%;
  }

  .hero .hero-video-overlay {
    background: linear-gradient(90deg, rgba(6,16,31,.54) 0%, rgba(6,16,31,.16) 8%, transparent 19%), linear-gradient(180deg, rgba(6,16,31,.06) 0%, transparent 14%, transparent 86%, rgba(6,16,31,.14) 100%), radial-gradient(circle at 66% 50%, rgba(0,207,244,.05), transparent 64%);
  }
}
/* === FIM V12 HOME DESKTOP === */
