:root {
  --ink: #101722;
  --ink-2: #1f2937;
  --muted: #667085;
  --paper: #fffdf8;
  --soft: #f5efe4;
  --soft-2: #eef3f2;
  --line: rgba(24, 36, 52, .12);
  --navy: #07111f;
  --teal: #1f9d96;
  --teal-dark: #08756f;
  --gold: #caa864;
  --gold-soft: #f4e6c7;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(16, 23, 34, .14);
  --shadow-soft: 0 20px 44px rgba(16, 23, 34, .08);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(202, 168, 100, .22), transparent 28rem),
    radial-gradient(circle at 90% 12%, rgba(31, 157, 150, .16), transparent 28rem),
    linear-gradient(115deg, rgba(255, 250, 240, .98) 0%, rgba(255, 250, 240, .98) 48%, rgba(239, 248, 247, .98) 48%, rgba(255, 253, 248, .98) 100%);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, .035), transparent 28%, rgba(31, 157, 150, .055)),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .82), transparent 22rem);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  background: rgba(255, 253, 248, .82);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 34px rgba(16, 23, 34, .08);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(16, 23, 34, .1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 16px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -.05em;
  background: linear-gradient(145deg, var(--navy), #123356 58%, var(--teal));
  box-shadow: 0 16px 28px rgba(8, 33, 58, .22);
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

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

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #2d3748;
  font-size: 13.5px;
  font-weight: 750;
}

.main-nav a:hover {
  background: rgba(16, 23, 34, .06);
}

.main-nav .nav-cta {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(7, 17, 31, .18);
}

.main-nav .nav-cta:hover {
  background: #14243a;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .92fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 90px);
  padding-top: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(202, 168, 100, .15);
}

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

h1 {
  margin: 18px 0 22px;
  font-size: clamp(38px, 5.1vw, 66px);
  line-height: 1;
  letter-spacing: -.055em;
}

h2 {
  margin: 12px 0 16px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

h3 {
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.hero-copy p,
.section-head p,
.cta-card p {
  color: var(--muted);
  font-size: 18px;
}

.hero-copy p {
  max-width: 650px;
}

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

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(16, 23, 34, .09);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 12px 30px rgba(16, 23, 34, .06);
  color: #344054;
  font-size: 13px;
  font-weight: 850;
}

.hero-pills span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(31, 157, 150, .12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #173657);
  box-shadow: 0 20px 34px rgba(7, 17, 31, .22);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .75);
  border-color: var(--line);
}

.btn-ghost.light {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.btn-disabled {
  color: #8590a0;
  background: #eef1f4;
  pointer-events: none;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 34px;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(16, 23, 34, .09);
  border-radius: 20px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 16px 34px rgba(16, 23, 34, .06);
}

.hero-metrics strong {
  display: block;
  font-size: 26px;
  letter-spacing: -.04em;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  perspective: 1400px;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(16, 23, 34, .12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow);
  transform: rotateX(3deg) rotateY(-9deg) rotateZ(1.2deg);
  transform-style: preserve-3d;
  transition:
    opacity .34s ease,
    filter .58s ease,
    transform .72s cubic-bezier(.19, 1, .22, 1),
    box-shadow .45s ease;
  will-change: opacity, transform, filter;
}

.product-window:hover {
  box-shadow: 0 36px 95px rgba(16, 23, 34, .2);
  transform: rotateX(1deg) rotateY(-4deg) rotateZ(.4deg) translateY(-4px);
}

.product-window.is-changing.swap-side {
  opacity: .72;
  filter: blur(2px) saturate(.92);
  transform: rotateX(5deg) rotateY(-15deg) rotateZ(1.4deg) translate3d(58px, 0, -42px) scale(.96);
  box-shadow: 0 18px 58px rgba(16, 23, 34, .16);
}

.window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f5f8fb);
}

.window-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e4e7ec;
}

.window-top span:nth-child(1) { background: #f87171; }
.window-top span:nth-child(2) { background: #fbbf24; }
.window-top span:nth-child(3) { background: #34d399; }

.window-top strong {
  margin-left: 8px;
  color: #3d4756;
  font-size: 13px;
}

.product-window img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  opacity: 1;
  filter: saturate(1.03) contrast(1.02);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity .32s ease,
    filter .56s ease,
    transform .66s cubic-bezier(.19, 1, .22, 1);
  will-change: opacity, transform, filter;
}

.product-window img.is-swapping,
.ar-panel img.is-swapping {
  opacity: .08;
  filter: blur(10px) saturate(.85);
}

.product-window img.is-swapping.swap-side {
  transform: translate3d(72px, 0, 0) rotateY(-10deg) scale(.94);
}

.product-window img.is-swapping.swap-depth {
  transform: translate3d(0, 24px, -70px) scale(.82);
}

.product-window img.is-swapping.swap-lift {
  transform: translate3d(-38px, 28px, 0) rotateZ(-2deg) scale(.9);
}

.ar-panel {
  --panel-transform: translateZ(100px) rotateZ(0deg);
  position: absolute;
  z-index: 3;
  overflow: hidden;
  width: min(390px, 54%);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 30px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 30px 76px rgba(16, 23, 34, .2);
  backdrop-filter: blur(18px);
  transform: var(--panel-transform);
  transform-style: preserve-3d;
  transition:
    opacity .34s ease,
    filter .58s ease,
    transform .72s cubic-bezier(.19, 1, .22, 1),
    box-shadow .45s ease;
  animation: arFloat 5.6s ease-in-out infinite;
  will-change: opacity, transform, filter;
}

.ar-panel::before {
  content: "";
  position: absolute;
  inset: -46%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(115deg,
      transparent 31%,
      rgba(255, 255, 255, .24) 42%,
      rgba(255, 255, 255, .82) 50%,
      rgba(255, 255, 255, .22) 58%,
      transparent 69%);
  transform: translateX(-130%) rotate(8deg);
}

.ar-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .56;
  background:
    radial-gradient(circle at 18% 0%, rgba(96, 165, 250, .22), transparent 32%),
    radial-gradient(circle at 86% 100%, rgba(31, 157, 150, .18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 46%);
}

.ar-panel.is-changing::before {
  animation: arCardSweep .82s cubic-bezier(.19, 1, .22, 1);
}

.ar-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  opacity: 1;
  filter: saturate(1.04) contrast(1.02);
  transform: translate3d(0, 0, 0) scale(1);
  position: relative;
  z-index: 0;
  display: block;
  transition:
    opacity .32s ease,
    filter .56s ease,
    transform .66s cubic-bezier(.19, 1, .22, 1);
  will-change: opacity, transform, filter;
}

.ar-panel.is-changing {
  box-shadow: 0 18px 56px rgba(16, 23, 34, .18);
}

.ar-panel.is-changing.swap-side {
  opacity: .22;
  filter: blur(9px) saturate(.78);
  transform: var(--panel-transform) translate3d(118px, -12px, -190px) rotateY(-18deg) rotateX(5deg) scale(.64);
}

.ar-panel.is-changing.swap-depth {
  opacity: .18;
  filter: blur(12px) saturate(.72);
  transform: var(--panel-transform) translate3d(0, 56px, -270px) rotateX(15deg) scale(.56);
}

.ar-panel.is-changing.swap-lift {
  opacity: .24;
  filter: blur(10px) saturate(.76);
  transform: var(--panel-transform) translate3d(-92px, 78px, -150px) rotateZ(-10deg) rotateY(10deg) scale(.62);
}

.ar-panel img.is-swapping.swap-side {
  transform: translate3d(42px, 0, 0) rotateY(-8deg) scale(.9);
}

.ar-panel img.is-swapping.swap-depth {
  transform: translate3d(0, 18px, -90px) scale(.76);
}

.ar-panel img.is-swapping.swap-lift {
  transform: translate3d(-28px, 36px, 0) rotateZ(-3deg) scale(.84);
}

.ar-panel span {
  display: block;
  position: relative;
  z-index: 3;
  padding: 13px 17px;
  color: #253247;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(10px);
}

.ar-panel-top {
  --panel-transform: translateZ(128px) rotateZ(3deg);
  top: -38px;
  right: -62px;
  transform-origin: 12% 118%;
}

.ar-panel-bottom {
  --panel-transform: translateZ(142px) rotateZ(-4deg);
  width: min(410px, 56%);
  left: -62px;
  bottom: 8px;
  transform-origin: 92% -18%;
  animation-delay: -1.8s;
}

@keyframes arFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes arCardSweep {
  0% {
    opacity: 0;
    transform: translateX(-130%) rotate(8deg);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(135%) rotate(8deg);
  }
}

.floating-card {
  position: absolute;
  max-width: 255px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 26px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 24px 54px rgba(16, 23, 34, .14);
  backdrop-filter: blur(14px);
}

.floating-card strong {
  display: block;
  margin-bottom: 4px;
}

.floating-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.card-a {
  left: -28px;
  bottom: 58px;
}

.card-b {
  right: -12px;
  top: 84px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1180px, calc(100% - 32px));
  margin: -28px auto 0;
  padding: 18px;
  border: 1px solid rgba(16, 23, 34, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  box-shadow: var(--shadow-soft);
}

.trust-strip span {
  padding: 9px 16px;
  border-radius: 999px;
  color: #374151;
  background: rgba(245, 239, 228, .9);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.story-section,
.areas-section {
  width: min(1240px, calc(100% - 32px));
}

.story-section {
  position: relative;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 36px auto auto -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 168, 100, .24), transparent 68%);
  pointer-events: none;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .82fr);
  gap: 24px;
  align-items: stretch;
}

.story-section .section-head {
  max-width: none;
  margin-bottom: 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(16, 23, 34, .09);
  border-radius: 32px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.story-section .section-head p + p {
  margin-top: 14px;
}

.story-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.story-highlights span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(31, 157, 150, .1);
  font-size: 12px;
  font-weight: 900;
}

.founder-card {
  overflow: hidden;
  border: 1px solid rgba(16, 23, 34, .09);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .78)),
    radial-gradient(circle at 92% 8%, rgba(31, 157, 150, .14), transparent 18rem);
  box-shadow: var(--shadow);
}

.founder-photo {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  background: #111827;
}

.founder-photo::after {
  content: "20+ anos de consultoria";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 17, 31, .58);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
}

.founder-copy {
  padding: 28px;
}

.founder-copy > span {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.founder-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.founder-copy p {
  color: var(--muted);
}

.story-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(16, 23, 34, .09);
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 0%, rgba(202, 168, 100, .35), transparent 20rem),
    radial-gradient(circle at 15% 100%, rgba(31, 157, 150, .34), transparent 19rem),
    linear-gradient(135deg, #07111f, #14243a 62%, #0b3439);
  box-shadow: var(--shadow);
}

.story-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
}

.story-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story-card h3 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.story-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.experience-grid,
.areas-grid {
  display: grid;
  gap: 16px;
}

.experience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.experience-card {
  min-height: 128px;
  padding: 22px;
  border: 1px solid rgba(16, 23, 34, .09);
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.experience-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.05em;
}

.experience-card span {
  color: #344054;
  font-weight: 850;
}

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

.area-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(16, 23, 34, .09);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .68)),
    radial-gradient(circle at top right, rgba(31, 157, 150, .12), transparent 16rem);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.area-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -58px;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 168, 100, .2), transparent 68%);
}

.area-card:hover {
  border-color: rgba(31, 157, 150, .34);
  box-shadow: 0 24px 54px rgba(16, 23, 34, .12);
  transform: translateY(-4px);
}

.area-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(31, 157, 150, .12);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.area-card strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--navy);
  background: var(--gold-soft);
  font-weight: 950;
  letter-spacing: -.03em;
}

.area-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.value-section {
  width: min(1240px, calc(100% - 32px));
}

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

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(16, 23, 34, .09);
  border-radius: 28px;
  background: rgba(255, 255, 255, .74);
  box-shadow: var(--shadow-soft);
}

.value-card::after {
  content: "";
  position: absolute;
  inset: auto -26px -48px auto;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 157, 150, .18), transparent 68%);
}

.value-card strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--teal-dark);
  background: rgba(31, 157, 150, .12);
  font-weight: 950;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.client-showcase {
  position: relative;
  min-height: 450px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #101722, #182436);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.client-showcase::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 30%, rgba(202, 168, 100, .42), transparent 18rem),
    radial-gradient(circle at 84% 60%, rgba(31, 157, 150, .35), transparent 20rem);
}

.client-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 42px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}

.client-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.client-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
  transform: perspective(1200px) rotateY(4deg);
}

.client-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  transition: transform 5s ease;
}

.client-slide.is-active .client-photo img {
  transform: scale(1.045);
}

.client-gradient {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--white);
}

.client-gradient.cafe {
  background:
    linear-gradient(180deg, transparent, rgba(7, 17, 31, .86)),
    url("assets/screens/atendimento-comandas.png") center / cover;
}

.client-gradient.retail {
  background:
    linear-gradient(180deg, transparent, rgba(7, 17, 31, .86)),
    url("assets/screens/pagamento-combinado.png") center / cover;
}

.client-gradient strong {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.05em;
}

.client-gradient span {
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.client-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.client-content > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.client-content h3 {
  max-width: 590px;
  margin: 16px 0;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.client-content p {
  max-width: 580px;
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, .2);
}

.carousel-arrow:first-of-type { left: 18px; }
.carousel-arrow:last-of-type { right: 18px; }

.client-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.client-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 23, 34, .2);
  cursor: pointer;
}

.client-dots button.is-active {
  width: 30px;
  background: var(--navy);
}

.modules-section {
  width: min(1240px, calc(100% - 32px));
}

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

.module-card,
.value-card,
.manual-card,
.process-step {
  border: 1px solid rgba(16, 23, 34, .09);
  border-radius: 26px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.module-card {
  min-height: 226px;
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.module-card:hover {
  border-color: rgba(31, 157, 150, .38);
  box-shadow: 0 24px 54px rgba(16, 23, 34, .12);
  transform: translateY(-4px);
}

.module-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 15px;
  color: var(--navy);
  background: var(--gold-soft);
  font-weight: 950;
}

.module-card h3 {
  margin-bottom: 10px;
}

.module-card p,
.value-card p,
.manual-card p,
.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.flow-section {
  width: min(1240px, calc(100% - 32px));
}

.flow-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(16, 23, 34, .08);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(245, 239, 228, .58)),
    radial-gradient(circle at 20% 0%, rgba(202, 168, 100, .2), transparent 20rem);
  box-shadow: var(--shadow-soft);
}

.flow-board article {
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(16, 23, 34, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
}

.flow-board span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(31, 157, 150, .12);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.flow-board h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.flow-board p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 20px;
  align-items: stretch;
}

.gallery-main {
  overflow: hidden;
  border: 1px solid rgba(16, 23, 34, .11);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: perspective(1300px) rotateX(2deg);
}

.gallery-main img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: top left;
}

.gallery-thumbs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.gallery-thumbs button {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(16, 23, 34, .1);
  border-radius: 18px;
  color: #344054;
  background: rgba(255, 255, 255, .8);
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.gallery-thumbs button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #173657);
  box-shadow: 0 18px 34px rgba(7, 17, 31, .18);
}

.manuals-section {
  background:
    linear-gradient(180deg, rgba(245, 239, 228, .28), transparent);
}

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

.manual-card {
  padding: 24px;
}

.manual-type {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(31, 157, 150, .12);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.manual-type.pending {
  color: #8a5b00;
  background: rgba(202, 168, 100, .18);
}

.manual-card .btn {
  margin-top: 22px;
}

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

.process-step {
  padding: 26px;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 950;
}

.cta-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 72px;
}

.cta-card {
  overflow: hidden;
  position: relative;
  padding: clamp(36px, 6vw, 70px);
  border-radius: 38px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(202, 168, 100, .35), transparent 19rem),
    radial-gradient(circle at 22% 100%, rgba(31, 157, 150, .36), transparent 18rem),
    linear-gradient(135deg, #07111f, #14243a 60%, #0a2f38);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  max-width: 780px;
}

.cta-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, .75);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
  color: var(--muted);
  border-top: 1px solid rgba(16, 23, 34, .1);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  font-weight: 850;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 22px 48px rgba(22, 163, 74, .32);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.whatsapp-float:hover {
  color: #fff;
  filter: saturate(1.08);
  transform: translateY(-3px);
  box-shadow: 0 28px 58px rgba(22, 163, 74, .38);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  fill: currentColor;
}

.lead-page {
  min-height: 100vh;
}

.lead-hero {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, 560px);
  gap: 34px;
  align-items: start;
  padding-top: 70px;
}

.lead-copy {
  position: sticky;
  top: 130px;
}

.lead-copy h1 {
  max-width: 680px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.lead-benefits {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.lead-benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  border: 1px solid rgba(16, 23, 34, .09);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 14px 32px rgba(16, 23, 34, .06);
  color: #344054;
  font-weight: 750;
}

.lead-benefits li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(31, 157, 150, .12);
}

.lead-form {
  padding: 26px;
  border: 1px solid rgba(16, 23, 34, .1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .84)),
    radial-gradient(circle at top right, rgba(31, 157, 150, .12), transparent 22rem);
  box-shadow: var(--shadow);
}

.form-intro {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 23, 34, .09);
}

.form-intro span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.form-intro h2 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.form-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.lead-form label > span {
  color: #344054;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 54, 87, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
}

.lead-form input,
.lead-form select {
  min-height: 52px;
  padding: 0 15px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 128px;
  padding: 14px 15px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(31, 157, 150, .7);
  box-shadow: 0 0 0 4px rgba(31, 157, 150, .12);
}

.consent-row {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  gap: 10px !important;
  padding: 14px;
  border: 1px solid rgba(16, 23, 34, .09);
  border-radius: 18px;
  background: rgba(245, 239, 228, .5);
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.consent-row span {
  color: #344054 !important;
  font-size: 13px !important;
  line-height: 1.45;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.lead-submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.status-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px;
}

.status-card {
  width: min(760px, 100%);
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid rgba(16, 23, 34, .1);
  border-radius: 34px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}

.status-card h1 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 58px);
}

.status-card p {
  color: var(--muted);
  font-size: 18px;
}

.status-card ul {
  margin: 22px 0 0;
  padding: 18px 20px 18px 38px;
  border-radius: 18px;
  background: rgba(202, 168, 100, .14);
  color: #5f4308;
}

.status-error ul {
  background: rgba(248, 113, 113, .12);
  color: #7f1d1d;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lead-hero {
    grid-template-columns: 1fr;
  }

  .lead-copy {
    position: static;
  }

  .hero-visual {
    max-width: 780px;
  }

  .modules-grid,
  .value-grid,
  .areas-grid,
  .manuals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

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

  .founder-photo,
  .founder-photo img {
    min-height: 520px;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 820px) {
  .site-header {
    border-radius: 24px;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(16, 23, 34, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .brand {
    min-width: auto;
  }

  .hero-metrics,
  .client-slide,
  .modules-grid,
  .value-grid,
  .areas-grid,
  .manuals-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

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

  .founder-photo,
  .founder-photo img {
    min-height: 420px;
  }

  .flow-board {
    grid-template-columns: 1fr;
  }

  .client-showcase {
    min-height: 760px;
  }

  .client-slide {
    padding: 30px;
  }

  .client-content h3 {
    font-size: 34px;
  }

  .gallery-main img {
    height: 420px;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
  }

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

  .floating-card {
    display: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .ar-panel {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
    transform: none;
  }
}

@media (max-width: 560px) {
  .section-pad {
    padding: 68px 0;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 33px;
  }

  .hero-copy p,
  .section-head p,
  .cta-card p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-strip {
    border-radius: 26px;
    justify-content: flex-start;
  }

  .client-showcase {
    min-height: 790px;
  }

  .client-photo,
  .client-photo img {
    min-height: 300px;
  }

  .carousel-arrow {
    top: 320px;
  }

  .gallery-main img {
    height: 300px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 9px 12px;
  }

  .whatsapp-float span {
    display: none;
  }
}

/* BDG Sistemas professional refresh */
:root {
  --ink: #111827;
  --ink-2: #243244;
  --muted: #64748b;
  --paper: #f6f8fb;
  --soft: #eef3f7;
  --soft-2: #e7eef4;
  --line: rgba(15, 23, 42, .12);
  --navy: #0b1422;
  --teal: #0f766e;
  --teal-dark: #0b5f59;
  --gold: #b8892f;
  --gold-soft: #fff7df;
  --white: #ffffff;
  --shadow: 0 22px 54px rgba(15, 23, 42, .13);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, .08);
  --radius-lg: 10px;
  --radius-md: 8px;
  --radius-sm: 8px;
}

* {
  letter-spacing: 0 !important;
}

body {
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef3f7 46%, #f7fafc 100%),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, .035) 0 1px, transparent 1px 76px);
  color: var(--ink);
}

body::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .38)),
    linear-gradient(90deg, rgba(15, 23, 42, .04) 0 1px, transparent 1px 80px),
    linear-gradient(0deg, rgba(15, 23, 42, .035) 0 1px, transparent 1px 80px);
}

.site-header {
  width: min(1240px, calc(100% - 28px));
  margin-top: 12px;
  padding: 10px 10px 10px 12px;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 10px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 26px rgba(15, 23, 42, .08);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(100, 116, 139, .24);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
}

.brand {
  gap: 10px;
  min-width: 205px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(145deg, #0b1422, #103a52 58%, #0f766e);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .18);
}

.brand strong {
  font-size: 14px;
}

.brand small {
  color: #526174;
  font-size: 12px;
}

.main-nav {
  gap: 2px;
}

.main-nav a {
  padding: 9px 10px;
  border-radius: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 760;
}

.main-nav a:hover {
  background: rgba(15, 23, 42, .055);
}

.main-nav .nav-cta {
  border: 1px solid rgba(15, 23, 42, .18);
  background: #0b1422;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .16);
}

.section-pad {
  width: min(1240px, calc(100% - 32px));
  padding: 76px 0;
}

.hero {
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  gap: 42px;
  min-height: calc(100vh - 86px);
  padding-top: 28px;
}

.eyebrow {
  gap: 9px;
  color: #0f766e;
  font-size: 12px;
  font-weight: 850;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #b8892f;
  box-shadow: none;
}

h1,
h2,
h3 {
  color: #0f172a;
  letter-spacing: 0 !important;
}

h1 {
  max-width: 760px;
  margin: 16px 0 18px;
  font-size: 58px;
  line-height: 1.03;
}

h2 {
  max-width: 900px;
  margin: 10px 0 14px;
  font-size: 40px;
  line-height: 1.12;
}

h3 {
  font-size: 20px;
  line-height: 1.24;
}

.hero-copy p,
.section-head p,
.cta-card p {
  color: #536176;
  font-size: 17px;
  line-height: 1.66;
}

.hero-copy p {
  max-width: 690px;
}

.hero-pills {
  gap: 8px;
  margin-top: 22px;
}

.hero-pills span {
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(15, 118, 110, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .84);
  color: #334155;
  box-shadow: none;
}

.hero-pills span::before {
  background: #0f766e;
}

.hero-actions {
  gap: 10px;
  margin-top: 24px;
}

.btn {
  min-height: 46px;
  padding: 12px 17px;
  border-radius: 8px;
  font-weight: 820;
  box-shadow: none;
}

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

.btn-primary {
  background: linear-gradient(135deg, #0b1422, #0f2f44 56%, #0f766e);
  box-shadow: 0 14px 26px rgba(15, 23, 42, .16);
}

.btn-ghost {
  border-color: rgba(15, 23, 42, .14);
  background: rgba(255, 255, 255, .82);
  color: #1f2937;
}

.btn-ghost.light {
  border-color: rgba(255, 255, 255, .32);
  color: #ffffff;
  background: rgba(255, 255, 255, .1);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 720px;
  margin-top: 24px;
}

.hero-metrics div {
  min-height: 106px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
}

.hero-metrics strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.2;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-size: 12.5px;
  line-height: 1.42;
}

.hero-visual {
  min-height: 620px;
  perspective: none;
}

.product-window {
  border: 1px solid rgba(100, 116, 139, .28);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, .18);
  transform: none;
}

.product-window:hover {
  transform: none;
}

.window-top {
  height: 46px;
  border-bottom: 1px solid rgba(148, 163, 184, .2);
  background: linear-gradient(180deg, #f8fafc, #eef3f7);
}

.window-top strong {
  color: #334155;
  font-size: 12px;
}

.product-window img {
  height: 442px;
  object-fit: cover;
  object-position: top left;
}

.ar-panel {
  width: 260px;
  border: 1px solid rgba(100, 116, 139, .22);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
  transform: none;
}

.ar-panel::before,
.ar-panel::after {
  display: none;
}

.ar-panel img {
  height: 148px;
  border-radius: 8px 8px 0 0;
  object-position: top left;
}

.ar-panel span {
  right: 10px;
  bottom: 10px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(11, 20, 34, .9);
  font-size: 11px;
}

.ar-panel-top {
  top: 30px;
  right: -8px;
}

.ar-panel-bottom {
  left: -10px;
  bottom: 52px;
}

.floating-card {
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, .24);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .12);
}

.floating-card strong {
  color: #0f172a;
}

.floating-card span {
  color: #64748b;
}

.card-a {
  left: 24px;
  bottom: 18px;
}

.card-b {
  right: 38px;
  bottom: -6px;
}

.trust-strip {
  width: min(1240px, calc(100% - 32px));
  margin-top: -18px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

.trust-strip span {
  border-radius: 8px;
  background: #f8fafc;
  color: #334155;
}

.story-section,
.areas-section {
  width: min(1240px, calc(100% - 32px));
}

.story-section {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, .2);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 20px 50px rgba(15, 23, 42, .07);
}

.story-section::before,
.area-card::after,
.value-card::after,
.client-showcase::before,
.story-card::after {
  display: none;
}

.story-layout {
  gap: 26px;
}

.story-section .section-head {
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 8px;
  background: #ffffff;
}

.story-highlights span {
  border-radius: 8px;
  border-color: rgba(15, 118, 110, .14);
  background: #f8fafc;
}

.founder-card,
.experience-card,
.area-card,
.value-card,
.client-showcase,
.module-card,
.manual-card,
.process-step,
.flow-board,
.gallery-layout,
.gallery-main,
.lead-form,
.status-card {
  border-radius: 8px;
  border-color: rgba(148, 163, 184, .22);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
}

.founder-card {
  overflow: hidden;
}

.founder-photo {
  border-radius: 0;
}

.founder-photo::after {
  border-radius: 0;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .42));
}

.experience-grid {
  gap: 10px;
}

.experience-card {
  padding: 18px;
}

.experience-card strong {
  color: #0f766e;
  font-size: 30px;
}

.areas-grid,
.value-grid,
.modules-grid,
.manuals-grid,
.process-line {
  gap: 12px;
}

.area-card,
.value-card,
.module-card,
.manual-card,
.process-step {
  padding: 20px;
}

.area-card:hover,
.module-card:hover {
  border-color: rgba(15, 118, 110, .34);
  transform: translateY(-2px);
}

.area-card strong,
.value-card strong,
.module-card span,
.flow-board span,
.process-step span {
  border-radius: 8px;
  color: #0f766e;
  background: #ecfdf5;
}

.area-card span,
.module-card h3,
.client-content > span {
  color: #0f766e;
}

.area-card p,
.value-card p,
.module-card p,
.manual-card p,
.process-step p,
.flow-board p,
.client-content p,
.founder-copy p {
  color: #64748b;
}

.value-section,
.modules-section,
.manuals-section {
  border-radius: 0;
  background: transparent;
}

.client-showcase {
  min-height: 510px;
  overflow: hidden;
}

.client-slide {
  gap: 24px;
  padding: 30px 72px;
}

.client-photo {
  border-radius: 8px;
}

.client-photo img {
  border-radius: 8px;
}

.client-content {
  padding: 4px 0;
}

.client-content h3 {
  font-size: 34px;
  line-height: 1.12;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border-color: rgba(148, 163, 184, .24);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .09);
}

.client-dots button {
  border-radius: 8px;
}

.flow-board {
  gap: 1px;
  overflow: hidden;
  padding: 0;
}

.flow-board article {
  border: 0;
  border-right: 1px solid rgba(148, 163, 184, .18);
  border-radius: 0;
  background: #ffffff;
}

.gallery-layout {
  grid-template-columns: minmax(0, 1fr) 245px;
  padding: 14px;
  background: #ffffff;
}

.gallery-main {
  overflow: hidden;
  box-shadow: none;
}

.gallery-main img {
  height: 610px;
  object-position: top left;
}

.gallery-thumbs {
  gap: 8px;
}

.gallery-thumbs button {
  min-height: 48px;
  border-radius: 8px;
  border-color: rgba(148, 163, 184, .22);
  background: #f8fafc;
  color: #334155;
}

.gallery-thumbs button.is-active {
  border-color: rgba(15, 118, 110, .4);
  background: #ecfdf5;
  color: #0f766e;
}

.manual-type {
  border-radius: 8px;
}

.cta-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 22px;
}

.cta-card {
  border-radius: 10px;
  background: linear-gradient(135deg, #0b1422 0%, #0f2f44 54%, #0f766e 100%);
  box-shadow: 0 24px 64px rgba(15, 23, 42, .2);
}

.cta-card .eyebrow {
  color: #a7f3d0;
}

.cta-card .eyebrow::before {
  background: #f2c66d;
}

.site-footer {
  width: min(1240px, calc(100% - 32px));
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
}

.whatsapp-float {
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 118, 110, .22);
}

.lead-page {
  background: #f6f8fb;
}

.lead-copy,
.lead-form {
  border-radius: 8px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border-radius: 8px;
  background: #ffffff;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .hero-visual {
    max-width: none;
    min-height: 560px;
  }

  .product-window img {
    height: 420px;
  }

  .story-section .section-head {
    padding: 24px;
  }
}

@media (max-width: 820px) {
  .site-header {
    border-radius: 8px;
  }

  .main-nav {
    border-radius: 8px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-metrics div {
    min-height: auto;
    padding: 10px;
  }

  .hero-metrics strong {
    font-size: 13px;
  }

  .hero-metrics span {
    display: none;
  }

  .client-showcase {
    min-height: 680px;
  }

  .client-slide {
    padding: 24px;
  }

  .client-content h3 {
    font-size: 28px;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-main img {
    height: 420px;
  }

  .flow-board article {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, .18);
  }
}

@media (max-width: 560px) {
  .section-pad {
    width: min(100% - 22px, 1240px);
    padding: 58px 0;
  }

  .site-header,
  .trust-strip,
  .story-section,
  .areas-section,
  .cta-section,
  .site-footer {
    width: min(100% - 22px, 1240px);
  }

  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 28px;
    line-height: 1.16;
  }

  .hero-copy p,
  .section-head p,
  .cta-card p {
    font-size: 15.5px;
  }

  .hero-pills span {
    min-height: 32px;
    padding: 7px 9px;
    font-size: 12px;
  }

  .product-window img,
  .gallery-main img {
    height: 300px;
  }

  .client-showcase {
    min-height: 720px;
  }

  .carousel-arrow {
    top: 292px;
  }
}
