:root {
  --ink: #07111f;
  --muted: #627084;
  --quiet: #8995a6;
  --line: rgba(7, 17, 31, 0.1);
  --line-strong: rgba(7, 17, 31, 0.16);
  --surface: #ffffff;
  --surface-2: #f6f8fb;
  --surface-3: #edf3f6;
  --brand: #0a2d44;
  --accent: #00a884;
  --accent-2: #3bd7ff;
  --violet: #6d5dfc;
  --dark: #08111f;
  --shadow: 0 24px 70px rgba(14, 29, 45, 0.11);
  --shadow-soft: 0 14px 36px rgba(14, 29, 45, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(10, 45, 68, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 45, 68, 0.035) 1px, transparent 1px),
    #fcfdfe;
  background-size: 56px 56px, 56px 56px, auto;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

p,
h2,
h3 {
  overflow-wrap: break-word;
}

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

.page-shell,
.product-page {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 10px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(7, 17, 31, 0.08);
  background: rgba(251, 252, 253, 0.86);
  backdrop-filter: blur(18px) saturate(130%);
}

.brand img {
  display: block;
  width: 110px;
  height: auto;
  max-height: 52px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 32px);
  color: #263849;
  font-size: 0.92rem;
  font-weight: 760;
}

.nav a {
  padding: 10px 0;
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.has-submenu::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: calc(100% + 120px);
  height: 26px;
  transform: translateX(-50%);
}

.has-submenu > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 248px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.submenu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 20px;
}

.submenu a {
  padding: 10px 12px;
  border-radius: 7px;
  color: #293b4e;
  white-space: nowrap;
}

.submenu a:hover {
  background: #edf8f6;
  color: #05745d;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-actions,
.social-links {
  display: flex;
  align-items: center;
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.social-links {
  gap: 8px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 8px;
  font-weight: 860;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta,
.button.primary {
  border: 1px solid rgba(0, 168, 132, 0.12);
  background: #07111f;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 17, 31, 0.16);
}

.nav-cta:hover,
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(7, 17, 31, 0.22);
}

.social-link,
.mail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.social-link svg,
.nav-cta svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-link svg.brand-glyph,
.nav-cta svg.brand-glyph {
  fill: currentColor;
  stroke: none;
  stroke-width: 0;
}

.social-link:hover,
.mail-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 132, 0.28);
  background: #f3fffb;
  color: #05745d;
}

.whatsapp-cta {
  gap: 8px;
  background: linear-gradient(135deg, #059b7c, #09c49b);
  box-shadow: 0 16px 34px rgba(0, 168, 132, 0.22);
}

.mail-cta {
  padding: 0;
}

.button.ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  box-shadow: none;
}

.button.ghost:hover {
  border-color: rgba(0, 168, 132, 0.34);
  background: #ffffff;
  transform: translateY(-2px);
}

.hero {
  min-height: 620px;
  padding: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(59, 215, 255, 0.12), transparent 24%),
    radial-gradient(circle at 12% 18%, rgba(0, 168, 132, 0.08), transparent 24%);
}

.hero-copy {
  min-width: 0;
  max-width: 960px;
}

.eyebrow {
  margin: 0;
  color: #05745d;
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 14px 0 22px;
  max-width: 720px;
  font-size: clamp(2.65rem, 4.55vw, 4.65rem);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: #3f4d5d;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
}

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

.slide-visual,
.metric-card,
.signature-item,
.focus-grid article,
.feature-list article,
.proof-card,
.client-card,
.support-card,
.system-shot,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.hero-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  min-height: 625px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 76px) clamp(72px, 7vw, 92px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.slide-visual {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border-color: rgba(7, 17, 31, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.slide-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  border-radius: 6px;
}

.slide-visual.is-board {
  background: #0a0e14;
}

.slide-visual.is-board img {
  object-fit: contain;
}

.wa-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  background-color: #0b141a;
  background-image:
    radial-gradient(120% 90% at 78% 6%, rgba(37, 211, 102, 0.18), transparent 55%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 18px 18px;
}

.wa-collage .wa-chat {
  position: absolute;
  width: 47%;
  max-width: none;
  font-size: 12.5px;
}

.wa-collage .wa-chat-body {
  min-height: 0;
}

.wa-collage .wa-chat--back {
  right: 4%;
  top: 13%;
  transform: rotate(2.5deg);
  filter: brightness(0.9);
  z-index: 1;
}

.wa-collage .wa-chat--front {
  left: 5%;
  top: 7%;
  transform: rotate(-2deg);
  z-index: 2;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

@media (max-width: 720px) {
  .wa-collage .wa-chat--back {
    display: none;
  }

  .wa-collage .wa-chat--front {
    width: 74%;
    left: 50%;
    top: 8%;
    transform: translateX(-50%);
  }
}

.slide-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 340px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 17, 31, 0.88);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.slide-caption span {
  display: block;
  margin-bottom: 5px;
  color: #76f4dc;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-caption strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.22;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.22);
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 22px;
  background: var(--accent);
}

.carousel-timer {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.carousel-timer svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.timer-track,
.timer-progress {
  fill: none;
  stroke-width: 3;
}

.timer-track {
  stroke: rgba(7, 17, 31, 0.12);
}

.timer-progress {
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-dasharray: 94.25;
  stroke-dashoffset: 94.25;
}

.carousel-timer.is-running .timer-progress {
  animation: carouselTimer 7.2s linear forwards;
}

@keyframes carouselTimer {
  to {
    stroke-dashoffset: 0;
  }
}

.metric-card:hover,
.focus-grid article:hover,
.product-card:hover,
.system-shot:hover,
.client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 132, 0.34);
  box-shadow: 0 22px 48px rgba(14, 29, 45, 0.12);
}

.hero-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.panel-top,
.showcase-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.panel-top span,
.showcase-top span,
.shot-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #90a6b8;
}

.panel-top span:nth-child(1),
.showcase-top span:nth-child(1),
.shot-top span:nth-child(1) {
  background: #ff6b6b;
}

.panel-top span:nth-child(2),
.showcase-top span:nth-child(2),
.shot-top span:nth-child(2) {
  background: #ffd166;
}

.panel-top span:nth-child(3),
.showcase-top span:nth-child(3),
.shot-top span:nth-child(3) {
  background: #06d6a0;
}

.panel-top b {
  margin-left: auto;
  color: var(--quiet);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.panel-grid {
  display: grid;
  gap: 12px;
}

.metric-card {
  display: block;
  padding: 18px;
  border-left: 4px solid var(--accent-2);
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.featured-panel-card {
  border-left-color: var(--accent);
}

.metric-card.accent {
  border-left-color: var(--accent);
}

.metric-card.demand {
  border-left-color: var(--violet);
}

.metric-card strong {
  display: block;
  margin: 6px 0;
  font-size: 1.18rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.metric-card small {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 76px);
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 6vw, 76px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

h2 {
  margin: 10px 0 0;
  max-width: 930px;
  font-size: clamp(1.9rem, 3.2vw, 3.05rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
}

.copy-stack {
  max-width: 900px;
  color: #203246;
  font-size: clamp(1.18rem, 1.55vw, 1.45rem);
  font-weight: 680;
  line-height: 1.45;
}

.copy-stack p {
  margin: 0 0 18px;
}

.signature {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.signature-item {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 132px;
  padding: clamp(22px, 3vw, 34px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.signature-item strong {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.6vw, 1.42rem);
  line-height: 1.12;
}

.signature-tag,
.focus-grid span,
.client-card span,
.product-card span,
.proof-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e8f7f4;
  color: #05745d;
  font-size: 0.74rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-item p,
.feature-list p,
.proof-card p,
.client-card p,
.support-card p,
.system-shot p,
.focus-grid p,
.contact p {
  color: var(--muted);
}

.signature-item p,
.feature-list p,
.proof-card p,
.client-card p,
.support-card p {
  margin: 0;
}

.section-heading {
  margin-bottom: 34px;
}

.intelligence-strip {
  background:
    linear-gradient(rgba(10, 45, 68, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 45, 68, 0.04) 1px, transparent 1px),
    #f6f8fb;
  background-size: 56px 56px, 56px 56px, auto;
}

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

.focus-grid article {
  min-height: 170px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.focus-grid span {
  justify-content: center;
  margin-bottom: 22px;
}

.products-band {
  background: #08111f;
  color: #ffffff;
}

.products-band .section-heading h2,
.contact h2,
.product-hero h1 {
  color: #ffffff;
}

.products-band .eyebrow,
.contact .eyebrow,
.product-hero .eyebrow {
  color: #76f4dc;
}

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

.product-card {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.product-card.featured {
  background: linear-gradient(145deg, rgba(0, 168, 132, 0.2), rgba(59, 215, 255, 0.08));
}

.product-card p,
.product-card li {
  color: rgba(255, 255, 255, 0.72);
}

.product-card span,
.proof-card span {
  margin-bottom: 18px;
  background: rgba(118, 244, 220, 0.1);
  color: #8bf0d9;
}

.product-link,
.client-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-weight: 860;
}

.product-link {
  margin-top: auto;
  color: #8bf0d9;
}

.client-link {
  margin-top: auto;
  color: #05745d;
}

.product-link::after,
.client-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.product-page {
  background: #fbfcfd;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.74fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 84% 22%, rgba(59, 215, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #08111f, #0b2d44 70%, #08111f);
  color: #ffffff;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 760;
}

.breadcrumb a:hover {
  color: #8bf0d9;
}

.product-hero h1 {
  margin: 10px 0 18px;
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.product-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.product-actions .button.primary {
  background: #ffffff;
  color: var(--ink);
}

.product-actions .button.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.product-showcase {
  min-height: 430px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 82px rgba(3, 15, 28, 0.26);
}

.showcase-window {
  height: 100%;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.media-window {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7fbfb;
}

.media-window img,
.media-window video {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: left top;
}

.showcase-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

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

.showcase-kpis i,
.showcase-row,
.showcase-chart,
.shot-kpis i,
.shot-table span {
  display: block;
  border: 1px solid rgba(6, 46, 70, 0.08);
  border-radius: 8px;
  background: #f4faf9;
}

.showcase-kpis i {
  height: 76px;
}

.showcase-chart,
.shot-chart {
  background:
    linear-gradient(135deg, rgba(0, 168, 132, 0.86), rgba(59, 215, 255, 0.86)),
    repeating-linear-gradient(90deg, transparent 0 14%, rgba(255, 255, 255, 0.16) 14% 15%);
}

.showcase-chart {
  height: 150px;
}

.showcase-row {
  height: 48px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: 22px;
}

.feature-list h3 {
  margin-bottom: 6px;
}

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

.proof-card {
  min-height: 190px;
  padding: 24px;
}

.page-cta {
  margin: clamp(18px, 5vw, 76px);
}

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

.client-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.support-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  align-items: stretch;
}

.support-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.support-card .button.primary {
  width: fit-content;
}

.product-visuals {
  background: rgba(255, 255, 255, 0.72);
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.system-shot {
  min-height: 380px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.media-shot {
  overflow: hidden;
  padding: 0;
}

.media-shot img,
.media-shot video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
  border-bottom: 1px solid var(--line);
}

.media-shot strong,
.media-shot p {
  margin-right: 22px;
  margin-left: 22px;
}

.media-shot strong {
  margin-top: 20px;
}

.media-shot p {
  margin-bottom: 22px;
}

.shot-top {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

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

.shot-kpis i {
  height: 72px;
}

.shot-chart {
  height: 130px;
  margin-bottom: 22px;
  border-radius: 8px;
}

.shot-table {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.shot-table span {
  height: 54px;
}

.system-shot strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.system-shot p {
  max-width: 620px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 32px;
  align-items: center;
  margin: clamp(18px, 5vw, 64px);
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 18%, rgba(59, 215, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #08111f, #0b2d44 65%, #07111f);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.contact p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.contact-card strong {
  font-size: 1.1rem;
}

.contact-card a {
  color: #8bf0d9;
  font-weight: 760;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 34px;
  padding: 30px clamp(18px, 5vw, 76px);
  background: #08111f;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer img {
  width: 92px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer nav,
.site-footer > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer strong {
  color: #ffffff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a:hover {
  color: #72e8cf;
}

.site-footer small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.46);
}

@media (max-width: 1120px) {
  .split,
  .contact,
  .product-hero,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .carousel-track {
    min-height: 860px;
  }

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

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

  .visual-grid,
  .site-footer,
  .product-proof,
  .client-grid,
  .support-panel {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .brand img {
    width: 96px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .has-submenu > a::after,
  .submenu {
    display: none;
  }

  .social-links {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .whatsapp-cta {
    width: 42px;
    padding: 0;
    font-size: 0;
  }

  .mail-cta {
    display: none;
  }

  .carousel-track {
    min-height: 840px;
  }

  .hero-slide {
    align-content: start;
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 10.8vw, 3.65rem);
  }

  .slide-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .carousel-dots {
    right: auto;
    bottom: 22px;
  }

  .focus-grid,
  .products-grid,
  .signature,
  .visual-grid,
  .site-footer,
  .product-proof,
  .showcase-kpis,
  .client-grid,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .signature {
    gap: 1px;
  }

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

  .product-showcase {
    min-height: 280px;
  }

  .showcase-window,
  .media-window img,
  .media-window video {
    min-height: 250px;
  }

  .contact {
    margin: 18px;
  }
}

@media (max-width: 420px) {
  .section,
  .product-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-slide {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions .button {
    flex: 1 1 160px;
    padding-right: 12px;
    padding-left: 12px;
  }
}


/* Prints reais nas vitrines de produto (fallback: mockup CSS) */
.showcase-window .showcase-shot {
  display: block;
  width: 100%;
  height: auto;
}

.showcase-window.has-shot .showcase-body {
  display: none;
}


/* Secao do assistente de pedidos no WhatsApp (EasySales) */
.wa-assistant-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.wa-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: grid;
  gap: 12px;
}

.wa-benefits li {
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}

.wa-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  background: #25d366;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center / contain no-repeat;
}

.wa-chat {
  max-width: 380px;
  justify-self: center;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.wa-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #075e54;
  color: #fff;
}

.wa-chat-header small {
  display: block;
  opacity: 0.75;
  font-size: 12px;
}

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  color: #04302a;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-chat-body {
  background: #0b141a;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 18px 18px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px;
}

.wa-msg {
  max-width: 85%;
  padding: 8px 12px 16px;
  border-radius: 10px;
  position: relative;
  line-height: 1.45;
  color: #111b21;
}

.wa-msg.received {
  background: #ffffff;
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.wa-msg.sent {
  background: #d9fdd3;
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.wa-time {
  position: absolute;
  right: 10px;
  bottom: 3px;
  font-size: 10.5px;
  color: rgba(17, 27, 33, 0.5);
}

.wa-doc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
}

.wa-doc small {
  color: rgba(17, 27, 33, 0.55);
}

.wa-doc-icon {
  background: #d3405c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 6px;
  padding: 8px 6px;
}

@media (max-width: 900px) {
  .wa-assistant-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* Carrossel de dashboards do Studio BI (Green Data Intelligence) */
.section-heading .section-sub {
  margin: 10px 0 0;
  max-width: 640px;
  color: var(--muted, #667085);
}

.bi-carousel {
  position: relative;
  max-width: 1000px;
  margin: 34px auto 0;
}

.bi-viewport {
  overflow: hidden;
  border-radius: 16px;
}

.bi-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.bi-slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
}

.bi-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #0a0e14;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.28);
}

.bi-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: #131822;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bi-chrome span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cfd6e0;
}

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

.bi-chrome em {
  margin-left: 8px;
  font-style: normal;
  font-size: 12.5px;
  color: #8b93a3;
}

.bi-screen {
  background: #0a0e14;
  aspect-ratio: 920 / 560;
}

.bi-screen.light {
  background: #f4f6fa;
}

.bi-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bi-slide figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 4px 2px;
  text-align: center;
}

.bi-slide figcaption strong {
  font-size: 1.05rem;
  color: var(--ink, #101828);
}

.bi-slide figcaption span {
  color: var(--muted, #667085);
  font-size: 0.95rem;
}

.bi-nav {
  position: absolute;
  top: calc(50% - 34px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e6e9ef;
  background: rgba(255, 255, 255, 0.92);
  color: #344054;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.14);
  transition: background 0.2s, transform 0.2s;
}

.bi-nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.06);
}

.bi-nav.prev { left: -14px; }
.bi-nav.next { right: -14px; }

.bi-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.bi-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #cfd6e0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.bi-dots button.is-active {
  background: #16a34a;
  transform: scale(1.3);
}

@media (max-width: 720px) {
  .bi-nav.prev { left: 6px; }
  .bi-nav.next { right: 6px; }
  .bi-slide figcaption span { font-size: 0.88rem; }
}