:root {
  --bg: #020108;
  --bg-elevated: #080510;
  --ink: #efeaf8;
  --muted: #8a809c;
  --line: #1a1228;
  --orange: #7c3aed;
  --orange-soft: rgba(124, 58, 237, 0.14);
  --accent: #a855f7;
  --gray: #5c546e;
  --font-display: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: #020108;
  color-scheme: dark;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  height: auto;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: #020108;
  background-image:
    radial-gradient(900px 520px at 12% -8%, rgba(76, 29, 149, 0.22) 0%, transparent 55%),
    radial-gradient(700px 480px at 95% 8%, rgba(88, 28, 135, 0.14) 0%, transparent 50%),
    radial-gradient(600px 400px at 50% 100%, rgba(49, 10, 101, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, #020108 0%, #05030c 100%);
  background-attachment: scroll;
  min-height: 100%;
  
  line-height: 1.55;
  overflow-x: hidden;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  -webkit-tap-highlight-color: transparent;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.28),
    rgba(76, 29, 149, 0.08) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.35s;
  mix-blend-mode: screen;
}

body:hover .cursor-glow {
  opacity: 1;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1.25rem, 4vw, 3.5rem);
  background: linear-gradient(
    180deg,
    rgba(2, 1, 8, 0.96) 0%,
    rgba(2, 1, 8, 0) 100%
  );
  transition: background 0.3s, backdrop-filter 0.3s;
}

.site-header.scrolled {
  background: rgba(2, 1, 8, 0.92);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.logo span {
  color: var(--orange);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

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

.nav-cta {
  color: var(--ink) !important;
  border: 1px solid transparent;
  background: transparent;
  padding: 0.35rem 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-cta:hover {
  border-color: transparent;
  color: #25d366 !important;
  background: transparent;
}

.nav-cta .wa-icon {
  width: 22px;
  height: 22px;
}

/* Hero */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 7rem clamp(1.25rem, 4vw, 3.5rem) 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 34rem;
  will-change: transform;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  margin-bottom: 1.25rem;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-sub {
  color: var(--orange);
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(168, 85, 247, 0.55), 0 0 60px rgba(76, 29, 149, 0.45);
  animation: brand-glow 3.5s ease-in-out infinite;
}

@keyframes brand-glow {
  0%,
  100% {
    text-shadow: 0 0 22px rgba(124, 58, 237, 0.4), 0 0 48px rgba(49, 10, 101, 0.35);
  }
  50% {
    text-shadow: 0 0 36px rgba(168, 85, 247, 0.75), 0 0 80px rgba(76, 29, 149, 0.55);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  max-width: 22ch;
}

.hero-title-top {
  display: block;
}

.t-line {
  display: inline;
}

.hero-title-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3em;
}

.word-rotate {
  display: inline-grid;
  color: var(--orange);
  overflow: hidden;
  height: 1.2em;
  vertical-align: bottom;
  transition: width 0.35s var(--ease);
}

.word-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.55s var(--ease);
}

.word-track span {
  height: 1.2em;
  line-height: 1.2em;
  white-space: nowrap;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40ch;
  margin-bottom: 1.1rem;
}

.niche-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

.niche-tags li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--orange);
  border: 1px solid rgba(168, 85, 247, 0.5);
  padding: 0.35rem 0.65rem;
  background: var(--orange-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.85rem 1.35rem;
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.btn .wa-icon {
  width: 36px;
  height: 36px;
}

.wa-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.nav-cta .wa-icon {
  width: 22px;
  height: 22px;
}

.nav-cta .nav-mail,
.nav-cta .mail-icon {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--orange);
  color: #0a0a0a;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0.7rem 1.15rem;
  gap: 0.55rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px) scale(1.02);
  color: #fff;
}

.btn-whatsapp .wa-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.btn-whatsapp-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0.7rem 1.15rem;
  gap: 0.55rem;
}

.btn-whatsapp-outline:hover {
  border-color: #25d366;
  color: #25d366;
  transform: translateY(-2px);
}

.btn-whatsapp-outline .wa-icon {
  width: 32px;
  height: 32px;
}

.btn-email-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0.7rem 1.15rem;
  gap: 0.55rem;
}

.btn-email-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.mail-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-pulse {
  animation: btn-pulse 2.2s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.hero-stage {
  position: relative;
  height: min(58vh, 460px);
  display: grid;
  place-items: center;
  will-change: transform;
}

.browser-stack {
  position: relative;
  width: min(100%, 440px);
  height: 100%;
  perspective: 900px;
}

.browser {
  position: absolute;
  inset: 0;
  background: #111;
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateX(45%) scale(0.86) rotateY(-12deg);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
  overflow: hidden;
}

.browser.active {
  opacity: 1;
  transform: translateX(0) scale(1) rotateY(0);
  z-index: 3;
}

.browser.prev {
  opacity: 0.3;
  transform: translateX(-22%) scale(0.9) rotateY(10deg);
  z-index: 2;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
  background: #0d0d0d;
}

.browser-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}

.browser-bar > span:nth-child(1) {
  background: var(--orange);
}

.url {
  margin-left: 0.6rem;
  flex: 1;
  font-size: 0.72rem;
  color: var(--gray);
  background: #1a1a1a;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--line);
}

.browser-screen {
  height: calc(100% - 42px);
  padding: 0;
  overflow: hidden;
}

.fake-site {
  font-family: var(--font-display);
  color: #f2f2f2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fs-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.fs-nav.light {
  background: rgba(255, 255, 255, 0.03);
}

.fs-nav.dark-glass {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
  border: 0;
}

.fs-logo {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fs-logo.orange {
  color: var(--orange);
  letter-spacing: -0.03em;
  font-size: 0.85rem;
}

.fs-nav nav {
  display: flex;
  gap: 0.35rem;
  flex: 1;
  justify-content: center;
}

.fs-nav nav i {
  width: 22px;
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  display: block;
}

.fs-btn {
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.fs-btn.solid {
  background: var(--orange);
  border-color: var(--orange);
  color: #0a0a0a;
}

.fs-kicker {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.fake-site h4 {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}

/* Corporate site */
.site-corp {
  background: #111110;
}

.site-corp .fs-hero {
  padding: 0.9rem 0.85rem 0.55rem;
}

.site-corp .fs-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.4rem;
  padding: 0 0.85rem 0.85rem;
  flex: 1;
  min-height: 0;
}

.site-corp .shot {
  border-radius: 2px;
  min-height: 70px;
}

.site-corp .shot.a {
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
    linear-gradient(135deg, #7c3aed, #2e1065 55%, #0a0512);
  animation: shot-pan 6s ease-in-out infinite alternate;
  background-size: 140% 140%;
}

.site-corp .shot.b {
  background: linear-gradient(180deg, #2a2a2a, #121212);
}

.site-corp .shot.c {
  background: linear-gradient(180deg, #c084fc, #1e0a3c);
}

/* Landing */
.site-landing {
  background: radial-gradient(600px 220px at 80% 20%, #0d0618, #0d0d0f 55%);
}

.fs-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.7rem;
  padding: 0.9rem 0.85rem;
  flex: 1;
  align-items: center;
  min-height: 0;
}

.fs-copy p {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.7rem;
}

.fs-cta-row {
  display: flex;
  gap: 0.35rem;
}

.fs-widget {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.65rem;
  height: 100%;
  max-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.w-bar {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  flex: 1;
}

.w-bar s {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, #7c3aed, rgba(124, 58, 237, 0.25));
  text-decoration: none;
  display: block;
  animation: grow 1.2s var(--ease) both;
}

.w-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c3aed, transparent);
  animation: shimmer 2s ease-in-out infinite;
}

/* ERP / sistemas empresariais */
.site-erp {
  background: #0e0e10;
}

.erp-body {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem 0.9rem;
  flex: 1;
  min-height: 0;
}

.erp-side {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.2rem;
}

.erp-side i {
  height: 18px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: block;
}

.erp-side i.on {
  background: var(--orange);
  border-color: var(--orange);
}

.erp-main {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.erp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-top: auto;
}

.erp-cards b {
  background: #161616;
  border: 1px solid #2a2a2a;
  padding: 0.5rem 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-weight: 500;
}

.erp-cards span {
  font-size: 0.55rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.erp-cards strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--orange);
  letter-spacing: -0.03em;
}

/* Painel interno */
.site-panel {
  background: #0c0c0c;
}

.fs-masonry {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.4rem;
  padding: 0.7rem 0.85rem 0.85rem;
  flex: 1;
  min-height: 0;
}

.fs-masonry .tile {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: flex-end;
  padding: 0.55rem;
  position: relative;
  overflow: hidden;
}

.fs-masonry .tile.big {
  grid-row: span 2;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7)),
    linear-gradient(135deg, #3a3a3a, #111);
}

.fs-masonry .tile.accent {
  background: linear-gradient(135deg, #7c3aed, #2e1065);
}

.fs-masonry .tile span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.fs-masonry .tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  transform: translateX(-100%);
  animation: pipe-run 3.5s ease-in-out infinite;
}

/* Portal */
.site-portal {
  background: #101012;
}

.portal-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.65rem;
  padding: 0.85rem;
  flex: 1;
  min-height: 0;
  align-items: center;
}

.portal-cards {
  display: grid;
  gap: 0.45rem;
  height: 100%;
}

.portal-cards .pcard {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: flex-end;
  padding: 0.6rem;
  min-height: 58px;
}

.portal-cards .pcard.accent {
  background: linear-gradient(135deg, #7c3aed, #1e0a3c);
  border-color: transparent;
}

.portal-cards .pcard span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shop-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes shot-pan {
  from {
    background-position: 0% 40%;
  }
  to {
    background-position: 100% 60%;
  }
}

.slide-dots {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 5;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #333;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.dot.active {
  background: var(--orange);
  transform: scale(1.25);
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes card-pop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes graph-line {
  0%,
  100% {
    transform: translateY(0) scaleX(1);
  }
  50% {
    transform: translateY(-10px) scaleX(1.02);
  }
}

@keyframes node-pulse {
  0%,
  100% {
    border-color: var(--line);
  }
  50% {
    border-color: rgba(124, 58, 237, 0.55);
  }
}

@keyframes alert-blink {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes cta-beat {
  0%,
  100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.06);
  }
}

@keyframes pipe-run {
  to {
    transform: translateX(100%);
  }
}

@keyframes log-scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(20px);
  }
}

.hero-copy > *,
.hero-stage {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.85s var(--ease) forwards;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero-copy > *:nth-child(2) {
  animation-delay: 0.15s;
}
.hero-copy > *:nth-child(3) {
  animation-delay: 0.28s;
}
.hero-copy > *:nth-child(4) {
  animation-delay: 0.4s;
}
.hero-stage {
  animation-delay: 0.25s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  position: relative;
  z-index: 2;
}

.section-head {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
}

.section-head h2,
.contact h2,
.impact-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  margin-bottom: 0.55rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

.cinema {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 6%,
    black 94%,
    transparent
  );
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.cinema-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: cinema 55s linear infinite;
}

.cinema:hover .cinema-track {
  animation-play-state: paused;
}

@keyframes cinema {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.cinema-card {
  width: min(78vw, 300px);
  flex-shrink: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 0.9rem;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.cinema-card:hover {
  border-color: rgba(124, 58, 237, 0.5);
  transform: translateY(-8px) scale(1.02);
}

.cinema-card strong {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.cinema-card > span {
  color: var(--muted);
  font-size: 0.85rem;
}

.mini-browser {
  background: #0c0c0c;
  border: 1px solid var(--line);
  overflow: hidden;
}

.mini-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--line);
}

.mini-bar > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
  flex-shrink: 0;
}

.mini-bar > span:first-child {
  background: var(--orange);
}

.mini-url {
  margin-left: 0.4rem;
  flex: 1;
  font-size: 0.62rem;
  color: var(--gray);
  background: #161616;
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--line);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-body {
  padding: 0.7rem;
  height: 168px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.mock-top em {
  font-style: normal;
  font-size: 0.65rem;
  color: var(--muted);
}

.logo-img {
  height: 22px;
  width: auto;
  max-width: 96px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.logo-img.logo-wide {
  height: 18px;
  filter: none;
}

.mock-grafana .logo-img {
  filter: invert(48%) sepia(98%) saturate(1800%) hue-rotate(1deg) brightness(1.05);
}

.mock-prom .logo-img {
  filter: invert(42%) sepia(90%) saturate(1800%) hue-rotate(346deg);
}

.mock-docker .logo-img {
  filter: invert(48%) sepia(80%) saturate(2000%) hue-rotate(176deg);
}

.mock-k8s .logo-img {
  filter: invert(36%) sepia(80%) saturate(1800%) hue-rotate(205deg);
}

.mock-nginx .logo-img {
  filter: invert(36%) sepia(90%) saturate(1200%) hue-rotate(110deg);
}

.mock-linux .logo-img {
  filter: invert(80%) sepia(70%) saturate(600%) hue-rotate(5deg);
}

.mock-host-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.mock-host-list b {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  font-size: 0.72rem;
  color: #cfcfcf;
  background: #151515;
  border: 1px solid var(--line);
  padding: 0.35rem 0.45rem;
}

.mock-host-list i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.mock-host-list i.ok {
  background: #22c55e;
}
.mock-host-list i.warn {
  background: #f59e0b;
}
.mock-host-list i.crit {
  background: #ef4444;
  animation: alert-blink 1.2s ease-in-out infinite;
}

.graf-panels {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.4rem;
  flex: 1;
}

.graf-panel {
  background: #141414;
  border: 1px solid #2a2a2a;
  position: relative;
  overflow: hidden;
}

.graf-panel.tall {
  grid-row: span 2;
}

.graf-panel s {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 18%;
  height: 2px;
  background: #f46800;
  box-shadow: 0 0 10px rgba(244, 104, 0, 0.5);
  text-decoration: none;
  display: block;
  animation: graph-line 2.8s ease-in-out infinite;
}

.prom-chart {
  flex: 1;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent 55%, rgba(230, 82, 44, 0.25)),
    repeating-linear-gradient(90deg, transparent, transparent 14px, #1f1f1f 15px),
    #121212;
  position: relative;
}

.prom-chart::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 30%;
  height: 2px;
  background: #e6522c;
  animation: graph-line 3s ease-in-out infinite;
}

.dock-rows,
.term-lines {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.dock-rows b,
.term-lines b {
  font-weight: 500;
  font-size: 0.7rem;
  color: #bfbfbf;
  background: #151515;
  border: 1px solid var(--line);
  padding: 0.4rem 0.5rem;
}

.term-lines b:first-child,
.term-lines b:nth-child(3) {
  color: var(--orange);
}

.k8s-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  flex: 1;
}

.k8s-grid i {
  display: block;
  background: #151515;
  border: 1px solid var(--line);
  position: relative;
}

.k8s-grid i::after {
  content: "";
  position: absolute;
  inset: 35%;
  border-radius: 50%;
  background: #326ce5;
}

.k8s-grid i:nth-child(2)::after,
.k8s-grid i:nth-child(5)::after {
  background: var(--orange);
}

.ngx-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  flex: 1;
}

.ngx-bars i {
  flex: 1;
  display: block;
  background: linear-gradient(180deg, #009639, rgba(0, 150, 57, 0.25));
  animation: grow 1.4s var(--ease) both;
}

.ngx-bars i:nth-child(1) {
  height: 45%;
}
.ngx-bars i:nth-child(2) {
  height: 70%;
  animation-delay: 0.1s;
}
.ngx-bars i:nth-child(3) {
  height: 55%;
  animation-delay: 0.2s;
}
.ngx-bars i:nth-child(4) {
  height: 88%;
  animation-delay: 0.3s;
}

.mock-site .site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.15rem;
}

.mock-site .site-nav.tight {
  margin-bottom: 0.4rem;
}

.fake-logo {
  width: 28px;
  height: 20px;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: #222;
  color: #fff;
  border: 1px solid var(--line);
}

.fake-logo.accent {
  background: var(--orange);
  color: #0a0a0a;
  border-color: transparent;
}

.fake-logo.soft {
  width: auto;
  padding: 0 0.35rem;
  background: #1a1a1a;
  color: var(--orange);
}

.site-links {
  display: flex;
  gap: 0.3rem;
}

.site-links i {
  width: 18px;
  height: 5px;
  background: #2a2a2a;
  display: block;
}

.site-hero {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid var(--line);
  min-height: 48px;
}

.site-hero.orange-fill {
  background: linear-gradient(135deg, #7c3aed, #0d0618 70%);
  border: 0;
}

.site-hero.landing {
  background: linear-gradient(160deg, #7c3aed 0%, #111 65%);
  border: 0;
  flex: 1.3;
}

.site-hero.short {
  min-height: 36px;
  flex: 0.8;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.35), #1a1a1a);
}

.site-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}

.site-cols i {
  height: 28px;
  background: #171717;
  border: 1px solid var(--line);
  display: block;
}

.dash-site .site-cols {
  grid-template-columns: 1fr 1fr;
}

.site-cta {
  height: 22px;
  width: 42%;
  background: var(--orange);
}

.mock-site.dash-site {
  flex-direction: row;
  gap: 0.45rem;
}

.dash-side {
  width: 28px;
  background: #151515;
  border: 1px solid var(--line);
}

.dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.blk {
  background: #1a1a1a;
  border: 1px solid var(--line);
}

.blk.tall {
  flex: 1.2;
}

.blk.mid {
  flex: 1;
}

.blk.orange,
.blk i.orange,
i.orange {
  background: linear-gradient(135deg, #7c3aed, #c084fc) !important;
  border-color: transparent !important;
}

.blk.row {
  display: flex;
  gap: 0.4rem;
  background: transparent;
  border: 0;
}

.blk.row i {
  flex: 1;
  height: 28px;
  background: #1a1a1a;
  border: 1px solid var(--line);
  display: block;
}

.blk.row i.wide {
  height: 36px;
}

.blk.graph {
  flex: 1.4;
  background:
    linear-gradient(180deg, transparent 50%, rgba(124, 58, 237, 0.25)),
    #151515;
}

.blk.cloud-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  background: transparent;
  border: 0;
}

.blk.cloud-grid i {
  display: block;
  background: #1a1a1a;
  border: 1px solid var(--line);
}

/* Impact sticky scroll */
.impact {
  position: relative;
  z-index: 2;
  height: 120vh;
  border-block: 1px solid var(--line);
}

.impact-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(2, 1, 8, 0.55),
    rgba(2, 1, 8, 0.95)
  );
}

.impact-copy h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 0.85rem;
  max-width: 14ch;
}

.impact-copy > p {
  color: var(--muted);
  max-width: 34ch;
  margin-bottom: 2rem;
}

.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.counters > div {
  padding: 1.1rem 0.9rem 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(124, 58, 237, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.counters > div:hover {
  border-color: rgba(124, 58, 237, 0.45);
  transform: translateY(-3px);
}

.counters strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.45rem;
  text-shadow: 0 0 28px rgba(168, 85, 247, 0.55), 0 0 60px rgba(76, 29, 149, 0.4);
}

.counters > div > span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  line-height: 1.3;
}

.phone-rail {
  position: relative;
  height: 70vh;
  display: grid;
  place-items: center;
}

.phone {
  position: absolute;
  width: min(46%, 220px);
  aspect-ratio: 9 / 18;
  border: 2px solid #3a3a3a;
  border-radius: 28px;
  background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
  padding: 10px;
  transition: transform 0.1s linear;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 8px;
  border-radius: 10px;
  background: #050505;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 18px;
}

.ph-status {
  position: absolute;
  top: 8px;
  left: 10px;
  right: 10px;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, #333 40%, transparent 40%);
  opacity: 0.5;
}

.ph-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.55rem 0.4rem;
}

.ph-nav b {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.ph-nav i {
  width: 14px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: block;
  border-radius: 2px;
}

.ph-nav .live {
  font-style: normal;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0a0a0a;
  background: #22c55e;
  padding: 0.15rem 0.3rem;
  border-radius: 2px;
  animation: alert-blink 1.6s ease-in-out infinite;
}

/* Site mobile */
.ui-site {
  background: #0f0f10;
}

.ph-banner {
  margin: 0.2rem 0.5rem 0.45rem;
  padding: 0.7rem 0.55rem;
  min-height: 38%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.55)),
    linear-gradient(135deg, #7c3aed, #2e1065 55%, #0a0512);
  border-radius: 8px;
  animation: gradient-shift 5s ease infinite;
  background-size: 160% 160%;
}

.ph-banner em {
  font-style: normal;
  font-size: 0.45rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.2rem;
}

.ph-banner strong {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ph-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0 0.5rem;
}

.ph-cards span {
  height: 42px;
  border-radius: 6px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: block;
}

.ph-cards span:first-child {
  background: linear-gradient(160deg, #2a2a2a, #151515);
}

.ph-cta {
  margin: 0.45rem 0.5rem 0.6rem;
  height: 22px;
  border-radius: 5px;
  background: var(--orange);
  animation: cta-beat 2s ease-in-out infinite;
}

/* Sistema */
.ui-sys {
  background: #0c0d10;
}

.ph-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0 0.5rem 0.45rem;
}

.ph-stats > div {
  background: #16181e;
  border: 1px solid #2a2e38;
  border-radius: 6px;
  padding: 0.4rem;
}

.ph-stats small {
  display: block;
  font-size: 0.45rem;
  color: #888;
  margin-bottom: 0.15rem;
}

.ph-stats b {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--orange);
  letter-spacing: -0.03em;
}

.ph-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  height: 70px;
  margin: 0 0.5rem 0.45rem;
  padding: 0.4rem;
  border-radius: 6px;
  background: #12141a;
  border: 1px solid #2a2e38;
}

.ph-chart i {
  flex: 1;
  height: var(--h);
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #7c3aed, rgba(124, 58, 237, 0.25));
  display: block;
  animation: grow 1.2s var(--ease) both;
}

.ph-chart i:nth-child(2) {
  animation-delay: 0.08s;
}
.ph-chart i:nth-child(3) {
  animation-delay: 0.16s;
}
.ph-chart i:nth-child(4) {
  animation-delay: 0.24s;
}
.ph-chart i:nth-child(5) {
  animation-delay: 0.32s;
}
.ph-chart i:nth-child(6) {
  animation-delay: 0.4s;
}

.ph-list {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0 0.5rem 0.6rem;
}

.ph-list span {
  height: 12px;
  border-radius: 3px;
  background: #1a1d24;
  display: block;
}

.ph-list span:nth-child(2) {
  width: 78%;
}
.ph-list span:nth-child(3) {
  width: 62%;
}

/* Ops / Zabbix */
.ui-ops {
  background: #0b100e;
}

.ph-alert {
  margin: 0 0.5rem 0.45rem;
  padding: 0.35rem 0.45rem;
  border-radius: 5px;
  font-size: 0.55rem;
  font-weight: 700;
  color: #ffb4a0;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  animation: alert-blink 1.8s ease-in-out infinite;
}

.ph-hosts {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0 0.5rem;
  flex: 1;
}

.ph-hosts > div {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.55rem;
  color: #c8c8c8;
  background: #121816;
  border: 1px solid #24302a;
  border-radius: 5px;
  padding: 0.4rem 0.45rem;
}

.ph-hosts i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
}

.ph-hosts .ok i {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.55);
}

.ph-hosts .warn i {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.55);
  animation: alert-blink 1.2s ease-in-out infinite;
}

.ph-pulse {
  margin: 0.5rem;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #24302a;
  background:
    linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.25), transparent),
    #101512;
  position: relative;
  overflow: hidden;
}

.ph-pulse::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
  animation: graph-line 2.4s ease-in-out infinite;
}

.p1 {
  transform: translate(-55%, 10%) rotate(-12deg);
  z-index: 1;
}

.p2 {
  transform: translate(0, -5%) rotate(2deg);
  z-index: 3;
}

.p3 {
  transform: translate(55%, 15%) rotate(10deg);
  z-index: 2;
}

/* Hero phones — mobile only (hidden on desktop) */
.hero-phones {
  display: none !important;
}

.service-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-list li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1.35rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  transition:
    padding-left 0.35s var(--ease),
    background 0.35s var(--ease);
}

.service-list li:hover {
  padding-left: 0.65rem;
  background: linear-gradient(90deg, var(--orange-soft), transparent 50%);
}

.service-list .index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange);
  padding-top: 0.2rem;
}

.service-list h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.service-list p {
  color: var(--muted);
  max-width: 50ch;
  font-size: 0.98rem;
}

.contact {
  border-top: 1px solid var(--line);
}

.contact-inner {
  max-width: 36rem;
}

.contact h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.contact p {
  color: var(--muted);
  margin-bottom: 1.6rem;
  font-size: 1.02rem;
}

main {
  margin: 0;
  padding: 0;
}

.contact {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem clamp(1.25rem, 4vw, 3.5rem) 2rem;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
}

.reveal-strong {
  opacity: 0;
  transform: translateY(48px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease),
    filter 0.8s var(--ease);
}

.reveal-strong.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (max-width: 960px) {
  .site-header {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .logo {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .nav {
    gap: 0.65rem;
  }

  .nav a {
    font-size: 0.8rem;
  }

  .hero {
    grid-template-columns: 1fr minmax(160px, 46%);
    align-items: start;
    min-height: auto;
    padding: 4.6rem 1.1rem 0.35rem;
    gap: 0.55rem 0.75rem;
  }

  .hero-copy {
    display: contents;
    max-width: none;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0.45rem;
    font-size: clamp(2.1rem, 9vw, 3.2rem);
    align-self: start;
    position: relative;
    z-index: 3;
  }

  .hero-title {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
    align-self: start;
    position: relative;
    z-index: 3;
  }

  .hero-title-top {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    line-height: 1.05;
  }

  .hero-title-bottom {
    margin-top: 0.12em;
  }

  .lead {
    grid-column: 1 / -1;
    margin-top: 0.85rem;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
  }

  .niche-tags,
  .cta-row {
    display: none;
  }

  .hero-stage {
    grid-column: 2;
    grid-row: 1 / 3;
    order: 0;
    height: 260px;
    width: 100%;
    max-width: 200px;
    justify-self: end;
    align-self: start;
    margin-top: -0.35rem;
    overflow: visible;
    position: relative;
    z-index: 1;
  }

  .browser-stack,
  .slide-dots {
    display: none;
  }

  .hero-phones {
    display: block !important;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .hero-phone {
    position: absolute;
    width: 78%;
    aspect-ratio: 9 / 18;
    border: 2px solid #3a3a3a;
    border-radius: 22px;
    background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
    padding: 7px;
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.55),
      inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  }

  .hero-phone::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 34%;
    height: 6px;
    border-radius: 8px;
    background: #050505;
    z-index: 2;
  }

  .hero-phone .phone-screen {
    border-radius: 14px;
    padding-top: 14px;
  }

  .hero-phone .ph-nav {
    padding: 0.35rem 0.4rem 0.25rem;
  }

  .hero-phone .ph-nav b {
    font-size: 0.48rem;
  }

  .hero-phone .ph-banner {
    margin: 0.15rem 0.35rem 0.3rem;
    padding: 0.45rem 0.4rem;
    min-height: 34%;
    border-radius: 6px;
  }

  .hero-phone .ph-banner em {
    font-size: 0.36rem;
  }

  .hero-phone .ph-banner strong {
    font-size: 0.55rem;
  }

  .hero-phone .ph-stats {
    gap: 0.25rem;
    padding: 0.25rem 0.35rem;
  }

  .hero-phone .ph-stats small {
    font-size: 0.32rem;
  }

  .hero-phone .ph-stats b {
    font-size: 0.55rem;
  }

  .hero-phone .ph-chart {
    height: 28%;
    margin: 0.2rem 0.35rem;
    gap: 3px;
  }

  .hero-phone .ph-alert {
    font-size: 0.4rem;
    margin: 0.25rem 0.35rem;
    padding: 0.25rem 0.35rem;
  }

  .hero-phone .ph-hosts {
    gap: 0.2rem;
    padding: 0 0.35rem;
  }

  .hero-phone .ph-hosts > div {
    font-size: 0.38rem;
    padding: 0.2rem 0.3rem;
  }

  /* Screen animations — hero phones only */
  .hero-phone .phone-screen {
    animation: hero-screen-glow 3.5s ease-in-out infinite;
  }

  .hero-phone .ph-banner {
    animation: gradient-shift 3.2s ease infinite, hero-banner-in 4.5s ease-in-out infinite;
    background-size: 180% 180%;
  }

  .hero-phone .ph-banner strong {
    animation: hero-text-pop 4.5s ease-in-out infinite;
  }

  .hero-phone .ph-cards span {
    animation: hero-card-cycle 3.8s ease-in-out infinite;
  }

  .hero-phone .ph-cards span:last-child {
    animation-delay: 0.45s;
  }

  .hero-phone .ph-cta {
    animation: cta-beat 1.4s ease-in-out infinite;
  }

  .hero-phone .ph-stats b {
    animation: hero-stat-flash 2.8s ease-in-out infinite;
  }

  .hero-phone .ph-stats > div:last-child b {
    animation-delay: 0.5s;
  }

  .hero-phone .ph-chart i {
    animation: hero-bar-bounce 2.2s ease-in-out infinite;
    transform-origin: bottom;
  }

  .hero-phone .ph-chart i:nth-child(2) {
    animation-delay: 0.15s;
  }
  .hero-phone .ph-chart i:nth-child(3) {
    animation-delay: 0.3s;
  }
  .hero-phone .ph-chart i:nth-child(4) {
    animation-delay: 0.45s;
  }
  .hero-phone .ph-chart i:nth-child(5) {
    animation-delay: 0.6s;
  }
  .hero-phone .ph-chart i:nth-child(6) {
    animation-delay: 0.75s;
  }

  .hero-phone .ph-list span {
    animation: hero-list-sweep 3s ease-in-out infinite;
    transform-origin: left center;
  }

  .hero-phone .ph-list span:nth-child(2) {
    animation-delay: 0.25s;
  }
  .hero-phone .ph-list span:nth-child(3) {
    animation-delay: 0.5s;
  }

  .hero-phone .ph-alert {
    animation: alert-blink 1.2s ease-in-out infinite;
  }

  .hero-phone .ph-hosts .ok i,
  .hero-phone .ph-hosts .warn i {
    animation: alert-blink 1.4s ease-in-out infinite;
  }

  .hero-phone .ph-hosts .warn i {
    animation-delay: 0.35s;
  }

  .hero-phone .ph-pulse::after {
    animation: graph-line 1.6s ease-in-out infinite;
  }

  .hero-phone.hp1::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 14px;
    background: linear-gradient(
      105deg,
      transparent 40%,
      rgba(255, 255, 255, 0.12) 50%,
      transparent 60%
    );
    background-size: 220% 100%;
    animation: hero-screen-shine 3.8s ease-in-out infinite;
    pointer-events: none;
    z-index: 4;
  }

  @keyframes hero-screen-glow {
    0%,
    100% {
      box-shadow: inset 0 0 0 0 transparent;
    }
    50% {
      box-shadow: inset 0 0 18px rgba(124, 58, 237, 0.18);
    }
  }

  @keyframes hero-banner-in {
    0%,
    100% {
      transform: scale(1);
      filter: brightness(1);
    }
    45% {
      transform: scale(1.03);
      filter: brightness(1.15);
    }
  }

  @keyframes hero-text-pop {
    0%,
    100% {
      opacity: 0.85;
      letter-spacing: -0.03em;
    }
    50% {
      opacity: 1;
      letter-spacing: -0.01em;
    }
  }

  @keyframes hero-card-cycle {
    0%,
    100% {
      opacity: 0.55;
      transform: translateY(0);
    }
    50% {
      opacity: 1;
      transform: translateY(-2px);
    }
  }

  @keyframes hero-stat-flash {
    0%,
    100% {
      opacity: 0.75;
    }
    50% {
      opacity: 1;
      text-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
    }
  }

  @keyframes hero-bar-bounce {
    0%,
    100% {
      transform: scaleY(0.72);
    }
    50% {
      transform: scaleY(1);
    }
  }

  @keyframes hero-list-sweep {
    0%,
    100% {
      opacity: 0.4;
      transform: scaleX(0.85);
    }
    50% {
      opacity: 1;
      transform: scaleX(1);
    }
  }

  @keyframes hero-screen-shine {
    0% {
      background-position: 120% 0;
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    70% {
      background-position: -40% 0;
      opacity: 0.6;
    }
    100% {
      background-position: -40% 0;
      opacity: 0;
    }
  }

  .hero-phone.hp1 {
    left: -18%;
    top: 18%;
    z-index: 1;
    animation: hero-phone-bob-1 4.2s ease-in-out infinite;
  }

  .hero-phone.hp2 {
    right: -2%;
    top: 2%;
    width: 86%;
    z-index: 3;
    animation: hero-phone-bob-2 3.6s ease-in-out infinite 0.35s;
  }

  .hero-phone.hp3 {
    right: 8%;
    bottom: -6%;
    width: 68%;
    z-index: 2;
    animation: hero-phone-bob-3 4.8s ease-in-out infinite 0.7s;
  }

  @keyframes hero-phone-bob-1 {
    0%,
    100% {
      transform: rotate(-16deg) translateY(0);
    }
    50% {
      transform: rotate(-16deg) translateY(-8px);
    }
  }

  @keyframes hero-phone-bob-2 {
    0%,
    100% {
      transform: rotate(5deg) translateY(0);
    }
    50% {
      transform: rotate(5deg) translateY(-10px);
    }
  }

  @keyframes hero-phone-bob-3 {
    0%,
    100% {
      transform: rotate(14deg) translateY(0);
    }
    50% {
      transform: rotate(14deg) translateY(-6px);
    }
  }

  .browser-stack {
    width: 100%;
    height: 100%;
  }

  .slide-dots {
    bottom: -2px;
    gap: 0.3rem;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .fake-site h4 {
    font-size: 0.72rem;
    margin-bottom: 0.35rem;
  }

  .fs-btn {
    font-size: 0.45rem;
    padding: 0.18rem 0.35rem;
  }

  .fs-kicker {
    font-size: 0.42rem;
  }

  .fs-logo {
    font-size: 0.55rem;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  }

  .lead {
    font-size: 0.92rem;
    margin-bottom: 0;
  }

  .niche-tags {
    gap: 0.35rem;
    margin-bottom: 1.1rem;
  }

  .niche-tags li {
    font-size: 0.68rem;
    padding: 0.28rem 0.5rem;
  }

  .section {
    padding: 3rem 1.1rem;
  }

  .section.services {
    padding-top: 0.5rem;
    padding-bottom: 1.75rem;
  }

  .section.showcase {
    padding-top: 1.75rem;
  }

  .impact,
  #impacto {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .impact-sticky,
  .impact .phone-rail {
    display: none !important;
    height: 0 !important;
  }

  .nav a[href="#impacto"] {
    display: none;
  }

  .cinema-card {
    width: min(78vw, 260px);
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .btn {
    width: 100%;
    justify-content: flex-start;
  }

  .contact {
    padding-bottom: 2rem;
  }

  .site-footer {
    padding: 0.9rem 1.1rem;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    font-size: 0.75rem;
  }
}

@media (max-width: 560px) {
  .nav a:not(.nav-keep) {
    display: none;
  }

  .nav-cta .wa-icon {
    width: 20px;
    height: 20px;
  }

  .hero {
    grid-template-columns: 1fr minmax(140px, 44%);
    gap: 0.45rem 0.55rem;
    padding: 4.4rem 0.9rem 0.25rem;
  }

  .brand {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .hero-stage {
    height: 230px;
    max-width: 175px;
    margin-top: -0.45rem;
  }

  .service-list li {
    grid-template-columns: 2.2rem 1fr;
    gap: 0.7rem;
    padding: 1.25rem 0;
  }

  .service-list h3 {
    font-size: 1.1rem;
  }

  .phone-rail {
    display: none !important;
    height: 0 !important;
  }

  .btn-whatsapp-outline,
  .btn-email-outline {
    font-size: 0.92rem;
    padding: 0.7rem 0.9rem;
  }

  .btn-whatsapp-outline .wa-icon,
  .mail-icon {
    width: 24px;
    height: 24px;
  }

  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-copy > *,
  .hero-stage,
  .reveal-strong {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .cinema-track {
    transform: none !important;
  }
}
