/* Litoral Tickets - site de vendas (experiência) */
:root {
  --bg: #070b14;
  --bg-elevated: #0a101c;
  --surface: #111827;
  --line: rgba(225, 227, 241, 0.12);
  --text: #f7f6fb;
  --muted: #9aa3c2;
  --soft: #e1e3f1;
  --brand: #3e4e8f;
  --brand-bright: #5b6db5;
  --sea: #2dd4bf;
  --radius: 18px;
  --max: 1120px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --font-num: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--soft);
  max-width: 36rem;
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 20, 0.82);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  font-weight: 600;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-bright);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: grid;
  align-items: center;
  padding: 3rem 0 4.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 20, 0.92) 0%, rgba(7, 11, 20, 0.78) 42%, rgba(7, 11, 20, 0.45) 100%),
    url("festa-praia.jpg") center / cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--bg) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.15rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.95rem 0.55rem 0.7rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
  min-width: 168px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.store-badge:hover {
  border-color: rgba(225, 227, 241, 0.28);
  background: rgba(0, 0, 0, 0.6);
}

.store-badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.15;
}

.store-badge span span {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
}

/* Phone mockup */
.phone-stage {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 520px;
}

.phone-stage::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 78, 143, 0.45), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 1;
  width: min(260px, 70vw);
  aspect-ratio: 9 / 19.2;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #2a3348, #0c1220);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate(3deg);
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(2deg) translateY(-10px);
  }
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 18px;
  border-radius: 999px;
  background: #05080f;
  z-index: 3;
}

.phone-screen {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #0a101c;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
}

.phone-top {
  padding: 2.4rem 1rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phone-ticket {
  margin: 0.4rem 0.85rem;
  border-radius: 18px;
  padding: 1.1rem;
  min-height: 210px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(165deg, #5b6db5 0%, #3e4e8f 42%, #152038 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transform: perspective(700px) rotateY(-12deg) rotateX(6deg);
  animation: ticket-tilt 5s ease-in-out infinite;
}

@keyframes ticket-tilt {
  0%,
  100% {
    transform: perspective(700px) rotateY(-12deg) rotateX(6deg);
  }
  50% {
    transform: perspective(700px) rotateY(-4deg) rotateX(2deg);
  }
}

.phone-ticket .meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 246, 251, 0.75);
}

.phone-ticket h3 {
  font-size: 1.35rem;
  max-width: 9ch;
}

.phone-ticket .place {
  color: rgba(247, 246, 251, 0.8);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.phone-ticket .code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
  color: var(--sea);
  font-size: 0.78rem;
}

.phone-bottom {
  padding: 0.85rem 1rem 1.1rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.float-chip {
  position: absolute;
  z-index: 2;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 16, 28, 0.88);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--soft);
  backdrop-filter: blur(8px);
  animation: chip-in 0.8s ease both;
}

.float-chip.a {
  top: 12%;
  left: 0;
}

.float-chip.b {
  bottom: 18%;
  right: 0;
}

@keyframes chip-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-head {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
  max-width: 40rem;
}

.section-head p {
  font-size: 1.05rem;
}

.band {
  background:
    radial-gradient(ellipse 70% 80% at 10% 40%, rgba(62, 78, 143, 0.22), transparent 55%),
    linear-gradient(180deg, #0a101c, #070b14);
  border-block: 1px solid var(--line);
}

.festas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.festa-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  isolation: isolate;
}

.festa-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform 0.5s ease;
}

.festa-card:hover img {
  transform: scale(1.05);
}

.festa-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 11, 20, 0.92) 100%);
  z-index: 0;
}

.festa-card .body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.2rem;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
}

.festa-card .tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sea);
}

.festa-card h3 {
  font-size: 1.35rem;
}

.festa-card p {
  color: var(--soft);
  font-size: 0.92rem;
}

.journey {
  display: grid;
  gap: 1rem;
}

.journey-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.journey-item .n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  font-family: var(--font-num);
  font-weight: 700;
}

.journey-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.collection-visual {
  position: relative;
  min-height: 360px;
}

.collection-visual .ticket {
  position: absolute;
  width: min(280px, 75%);
  aspect-ratio: 1.55 / 1;
  border-radius: 20px;
  padding: 1.2rem;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.collection-visual .t1 {
  left: 8%;
  top: 8%;
  background: linear-gradient(160deg, #5b6db5, #1a2448);
  transform: rotate(-8deg);
  z-index: 1;
}

.collection-visual .t2 {
  right: 4%;
  bottom: 6%;
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)),
    url("festa-sunset.jpg") center / cover;
  transform: rotate(7deg);
  z-index: 2;
}

.collection-visual .meta {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 246, 251, 0.75);
}

.collection-visual h3 {
  font-size: 1.5rem;
  max-width: 10ch;
}

.collection-visual .code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--sea);
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.cool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cool-item {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.65);
  display: grid;
  gap: 0.65rem;
  min-height: 100%;
}

.cool-item .kicker {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sea);
}

.download-block {
  text-align: center;
  display: grid;
  gap: 1.1rem;
  justify-items: center;
}

.download-block .lead {
  text-align: center;
}

.footer {
  padding: 2.75rem 0 2.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}

.footer strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.75rem;
}

.footer a {
  display: block;
  margin: 0.35rem 0;
  color: var(--muted);
}

.footer a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

/* Partners leftovers used by /parceiros */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.tile {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.72);
  display: grid;
  gap: 0.7rem;
  min-height: 100%;
}

.tile .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(62, 78, 143, 0.25);
  color: #8b9ad4;
  font-family: var(--font-num);
  font-size: 0.85rem;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.75rem;
  color: var(--soft);
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--sea);
}

.panel {
  background: linear-gradient(180deg, rgba(21, 32, 56, 0.9), rgba(10, 16, 28, 0.95));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  padding: 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.stat strong,
.num {
  display: block;
  font-family: var(--font-num);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 0.2rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 0.85rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  font-family: var(--font-num);
  font-weight: 700;
}

.step strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.compare th,
.compare td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare th {
  background: rgba(62, 78, 143, 0.2);
  font-family: var(--font-display);
}

.compare td:last-child {
  color: var(--sea);
  font-weight: 600;
}

.cta-final {
  text-align: center;
  display: grid;
  gap: 1.15rem;
  justify-items: center;
}

.cta-final .lead {
  text-align: center;
}

.btn-sea {
  background: var(--sea);
  color: #042f2e;
}

.hero-brand {
  height: clamp(40px, 7vw, 58px);
  width: auto;
}

/* Partners - hero with photo */
.hero-partners::before {
  background:
    linear-gradient(90deg, rgba(7, 11, 20, 0.92) 0%, rgba(7, 11, 20, 0.78) 48%, rgba(7, 11, 20, 0.55) 100%),
    url("festa-noite.jpg") center / cover no-repeat;
}

.hero-partners-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  max-width: none;
}

.hero-partners .hero-copy {
  text-align: left;
  justify-items: start;
}

.hero-system {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.system-orb {
  position: relative;
  width: min(420px, 92vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.system-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin-slow 28s linear infinite;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.system-core {
  position: relative;
  z-index: 2;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: linear-gradient(160deg, #152038, #0a101c);
  border: 1px solid rgba(225, 227, 241, 0.18);
  box-shadow: 0 0 0 14px rgba(62, 78, 143, 0.18), 0 28px 60px rgba(0, 0, 0, 0.45);
}

.system-logo {
  width: 92px;
  height: auto;
  display: block;
}

.system-node {
  position: absolute;
  z-index: 3;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  background: rgba(10, 16, 28, 0.94);
  border: 1px solid rgba(94, 110, 181, 0.55);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--soft);
  white-space: nowrap;
}

.system-node.n1 { top: 4%; left: 50%; transform: translateX(-50%); }
.system-node.n2 { top: 50%; right: -2%; transform: translateY(-50%); }
.system-node.n3 { bottom: 4%; left: 50%; transform: translateX(-50%); }
.system-node.n4 { top: 50%; left: -2%; transform: translateY(-50%); }

.system-caption {
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.num-inline {
  font-family: var(--font-num);
  font-weight: 700;
  display: inline;
  vertical-align: baseline;
  letter-spacing: -0.02em;
}

.tile .icon svg {
  display: block;
}

/* Canais visuais: App · Totem · SmartPOS · Caixa */
.channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: end;
}

.channel {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  padding: 1.25rem 1rem 1.5rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.72);
  min-height: 100%;
}

.channel h3 {
  font-size: 1.15rem;
}

.channel p {
  font-size: 0.92rem;
}

.device {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 180px;
}

.device-phone {
  width: 78px;
  height: 150px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, #1a2448, #0a101c);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  padding: 8px 6px;
}

.device-phone .screen {
  height: 100%;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(91, 109, 181, 0.9), rgba(21, 32, 56, 0.95));
  display: grid;
  place-items: center;
  font-family: var(--font-num);
  font-size: 0.65rem;
  color: var(--sea);
  letter-spacing: 0.06em;
}

.device-totem {
  width: 92px;
  height: 160px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 6px;
  justify-items: center;
}

.device-totem .screen {
  width: 78px;
  height: 118px;
  border-radius: 10px 10px 4px 4px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, #243056, #0f172a);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 8px;
}

.device-totem .bar {
  width: 70%;
  height: 8px;
  border-radius: 4px;
  background: rgba(225, 227, 241, 0.15);
}

.device-totem .bar.wide {
  width: 90%;
  height: 22px;
  background: rgba(62, 78, 143, 0.55);
}

.device-totem .stand {
  width: 36px;
  height: 18px;
  background: #1a2238;
  border-radius: 0 0 6px 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.device-totem .base {
  width: 64px;
  height: 8px;
  border-radius: 4px;
  background: #121a2c;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.device-pos {
  width: 120px;
  height: 150px;
  position: relative;
}

.device-pos .handset {
  position: absolute;
  left: 8px;
  top: 18px;
  width: 52px;
  height: 100px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, #2a3348, #0c1220);
  z-index: 1;
}

.device-pos .handset::after {
  content: "";
  position: absolute;
  inset: 8px 6px 28px;
  border-radius: 6px;
  background: linear-gradient(160deg, #3e4e8f, #152038);
}

.device-pos .terminal {
  position: absolute;
  right: 4px;
  bottom: 10px;
  width: 70px;
  height: 88px;
  border-radius: 10px;
  border: 2px solid rgba(45, 212, 191, 0.35);
  background: linear-gradient(180deg, #1c2a3f, #0a101c);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 8px;
  gap: 6px;
}

.device-pos .terminal .disp {
  border-radius: 4px;
  background: #0d3d38;
  color: var(--sea);
  font-family: var(--font-num);
  font-size: 0.7rem;
  display: grid;
  place-items: center;
}

.device-pos .terminal .keys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.device-pos .terminal .keys span {
  height: 8px;
  border-radius: 2px;
  background: rgba(225, 227, 241, 0.18);
}

.device-caixa {
  width: 130px;
  height: 100px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(160deg, #1a2448, #0a101c);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.device-caixa .chrome {
  height: 8px;
  border-radius: 4px;
  background: rgba(225, 227, 241, 0.12);
  position: relative;
}

.device-caixa .chrome::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 8px 0 0 #eab308, 16px 0 0 #22c55e;
}

.device-caixa .desk {
  flex: 1;
  border-radius: 6px;
  background: rgba(62, 78, 143, 0.25);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  color: var(--soft);
  font-family: var(--font-num);
}

.flow-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.flow-line span {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
  color: var(--soft);
}

.flow-line .arrow {
  border: 0;
  background: transparent;
  color: var(--sea);
  padding: 0.45rem 0.15rem;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 960px) {
  .channels {
    grid-template-columns: 1fr 1fr;
  }

  .hero-partners-grid {
    grid-template-columns: 1fr;
  }

  .hero-system {
    order: -1;
    margin-bottom: 0.5rem;
  }

  .system-orb {
    width: min(320px, 86vw);
  }

  .system-core {
    width: 132px;
    height: 132px;
  }

  .system-logo {
    width: 72px;
  }

  .hero-grid,
  .split,
  .festas-grid,
  .cool-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav-actions .btn-secondary {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-nav.open {
    display: grid;
    gap: 0.85rem;
    padding: 0 0 1.2rem;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .phone {
    transform: none;
    animation: none;
  }

  .float-chip {
    display: none;
  }

  .collection-visual {
    min-height: 300px;
  }
}
