/* ============================================================
   Sync2Motion — página de produto
   ============================================================ */

main section { padding: 100px 0 60px; }
main section.ab-band {
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.02) 50%, rgba(255,255,255,0) 100%);
}

/* ============ Hero ============ */
.s2m-hero {
  padding-top: 200px !important;
  padding-bottom: 80px !important;
}
.s2m-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.s2m-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.s2m-pill {
  display: inline-flex; align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: .5px;
  color: #fff;
  background: linear-gradient(135deg, rgba(180,120,255,.25), rgba(80,200,255,.18));
  border: 1px solid rgba(180,120,255,.4);
}
.s2m-hero h1 {
  font-size: clamp(60px, 9vw, 110px);
  line-height: 1;
  margin: 0 0 20px;
  letter-spacing: -.03em;
}
.s2m-hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.s2m-tag {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 22px;
}
.s2m-hero .lead {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 540px;
  line-height: 1.65;
  margin: 0 0 32px;
}
.s2m-hero .lead code,
main code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.9em;
  background: rgba(180,120,255,.12);
  border: 1px solid rgba(180,120,255,.25);
  padding: 1px 7px;
  border-radius: 5px;
  color: #d4c4ff;
}

.s2m-stats {
  display: flex; gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.s2m-stats .stat { display: flex; flex-direction: column; }
.s2m-stats .num {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.s2m-stats .lbl { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; margin-top: 2px; }

/* Hero visual */
.s2m-hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s2m-logo-stage {
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(180,120,255,.28), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(80,200,255,.20), transparent 55%),
    rgba(255,255,255,.02);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.5),
    inset 0 0 60px rgba(180,120,255,.05);
}
.s2m-logo {
  width: 70%;
  height: 70%;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.5));
}
.s2m-spin {
  transform-origin: 32px 32px;
  animation: s2m-spin 10s linear infinite;
}
@keyframes s2m-spin {
  to { transform: rotate(360deg); }
}
.s2m-arc-path {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: s2m-draw 4s ease-out infinite;
}
@keyframes s2m-draw {
  0% { stroke-dashoffset: 80; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -80; }
}
.s2m-orb {
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  animation: ab-float 8s ease-in-out infinite;
}
.s2m-orb.o-a { top: -10px; right: 10px; background: rgba(180,120,255,.35); }
.s2m-orb.o-b { bottom: 10px; left: -20px; background: rgba(80,200,255,.30); animation-direction: reverse; animation-duration: 11s; }
@keyframes ab-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.s2m-caption {
  position: absolute;
  bottom: 18px;
  left: 50%; transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
}

/* ============ Features ============ */
.s2m-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.s2m-feature {
  padding: 28px 24px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform .3s, border-color .3s;
}
.s2m-feature:hover { transform: translateY(-4px); border-color: rgba(80,200,255,.3); }
.s2m-feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px -8px rgba(180,120,255,.5);
}
.s2m-feature-icon svg { width: 22px; height: 22px; color: #fff; }
.s2m-feature h3 { font-size: 18px; margin-bottom: 8px; }
.s2m-feature p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ============ Posições mandibulares ============ */
.s2m-positions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.s2m-pos {
  position: relative;
  padding: 32px 26px 28px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.s2m-pos::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
}
.s2m-pos:hover { border-color: rgba(180,120,255,.35); transform: translateY(-3px); }
.s2m-pos-code {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  background: var(--gradient);
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px -4px rgba(180,120,255,.5);
}
.s2m-pos h3 { font-size: 18px; margin-bottom: 8px; }
.s2m-pos p { color: var(--text-muted); font-size: 13.5px; margin: 0; line-height: 1.55; }

/* ============ Sync2Align complement ============ */
.s2m-align {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 44px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(180,120,255,.10), rgba(80,200,255,.05)),
    rgba(255,255,255,.02);
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}
.s2m-align::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(180,120,255,.18), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.s2m-align > * { position: relative; }
.s2m-align-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 14px 30px -8px rgba(180,120,255,.55);
}
.s2m-align-icon svg { width: 32px; height: 32px; }
.s2m-align h2 { font-size: clamp(28px, 3.5vw, 40px); margin: 12px 0 14px; }
.s2m-align p { color: var(--text-muted); font-size: 15px; margin: 0 0 24px; line-height: 1.65; max-width: 760px; }
.s2m-align strong { color: #fff; font-weight: 600; }
.s2m-align em { color: rgba(255,255,255,.85); font-style: normal; border-bottom: 1px dashed rgba(180,120,255,.4); }

.s2m-flow {
  display: flex; align-items: center; gap: 24px;
  margin: 24px 0 32px;
  flex-wrap: wrap;
}
.s2m-flow-step {
  flex: 1; min-width: 220px;
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(10,7,23,.4);
  border: 1px solid var(--border);
  position: relative;
}
.s2m-flow-n {
  position: absolute;
  top: -10px; right: 14px;
  font-family: 'Fraunces', serif;
  font-size: 14px; font-weight: 600;
  background: var(--gradient);
  color: #fff;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.s2m-flow-step strong { color: #fff; font-size: 16px; }
.s2m-flow-step small { color: var(--text-muted); font-size: 12.5px; }
.s2m-flow-arrow {
  width: 32px; height: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ============ Steps (reusa visual do .ab-steps) ============ */
.s2m-steps { max-width: 820px; margin: 0 auto; }

/* ============ Brands grid (reusa estilo do axisbody) ============ */
.ab-brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.ab-brand {
  position: relative;
  padding: 16px 16px 14px 22px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  transition: border-color .25s, transform .25s;
}
.ab-brand:hover { border-color: rgba(80,200,255,.4); transform: translateY(-2px); }
.ab-brand small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: .3px;
}
.ab-brand .dot {
  position: absolute;
  left: 12px; top: 22px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 8px rgba(180,120,255,.6);
}

/* ============ Steps (reused) ============ */
.ab-steps {
  list-style: none; padding: 0; margin: 0;
  counter-reset: step;
}
.ab-steps li {
  display: flex; gap: 24px;
  padding: 28px 24px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  align-items: flex-start;
}
.ab-steps .step-n {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(180,120,255,.5);
}
.ab-steps h3 { font-size: 18px; margin-bottom: 6px; }
.ab-steps p { color: var(--text-muted); font-size: 14.5px; margin: 0; line-height: 1.6; }

/* ============ Paper (citação) ============ */
.s2m-paper {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  border-radius: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.s2m-paper-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(180,120,255,.08);
  border: 1px solid rgba(180,120,255,.18);
  margin-bottom: 18px;
}
.s2m-paper h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 22px; }
.s2m-citation {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin: 0 auto 28px;
  max-width: 580px;
  padding: 0 20px;
  border-left: 2px solid rgba(180,120,255,.4);
  text-align: left;
}
.s2m-citation em { color: #fff; font-style: italic; }

/* ============ CTA + Links (reusa do axisbody) ============ */
.ab-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  padding: 48px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(180,120,255,.15), rgba(80,200,255,.08)),
    rgba(255,255,255,.02);
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}
.ab-cta::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,120,255,.2), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.ab-cta > * { position: relative; }
.ab-cta h2 { font-size: clamp(28px, 3.5vw, 40px); margin: 14px 0; }
.ab-cta p { color: var(--text-muted); margin: 0 0 28px; }
.ab-links {
  background: rgba(10,7,23,.4);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}
.ab-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
  margin-bottom: 14px;
}
.ab-links ul { list-style: none; padding: 0; margin: 0; }
.ab-links li { border-bottom: 1px solid var(--border); }
.ab-links li:last-child { border-bottom: 0; }
.ab-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.85);
  transition: color .15s;
}
.ab-links a:hover { color: var(--cyan); }
.ab-links a span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .s2m-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .s2m-hero-visual { max-width: 460px; margin: 0 auto; }
  .s2m-features { grid-template-columns: repeat(2, 1fr); }
  .s2m-positions { grid-template-columns: repeat(2, 1fr); }
  .ab-brands { grid-template-columns: repeat(2, 1fr); }
  .s2m-align { grid-template-columns: 1fr; padding: 32px; }
  .ab-cta { grid-template-columns: 1fr; padding: 36px; }
}
@media (max-width: 720px) {
  main section { padding: 70px 0 50px; }
  .s2m-hero { padding-top: 150px !important; padding-bottom: 50px !important; }
  .s2m-features,
  .s2m-positions { grid-template-columns: 1fr; }
  .ab-brands { grid-template-columns: 1fr; }
  .s2m-stats { gap: 22px; flex-wrap: wrap; }
  .s2m-stats .num { font-size: 28px; }
  .s2m-flow { flex-direction: column; gap: 12px; }
  .s2m-flow-arrow { transform: rotate(90deg); }
  .ab-cta { padding: 28px; gap: 32px; }
}
