/* ============================================================
   Workshop PDP+IA V1 — Apple Experience
   ============================================================ */

:root {
  --black: #1E1E1E;
  --gr: #3D3D3A;
  --g7: #5F5E5A;
  --g5: #888780;
  --g3: #B4B2A9;
  --g1: #D3D1C7;
  --off: #F5F4F0;
  --white: #FFFFFF;
  --cta: #0F766E;
  --cta-h: #0D6B63;
}

/* --- Text balance (evitar palavras soltas na última linha) --- */
h1, h2, h3, .sec p, .sec h2 + p {
  text-wrap: balance;
}

/* --- Reveal --- */
[data-r] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}
[data-r].is { opacity: 1; transform: none }
[data-r="left"] { transform: translateX(-50px) }
[data-r="right"] { transform: translateX(50px) }
[data-r="scale"] { transform: scale(.85) }
[data-r="fade"] { transform: none }
[data-r="zoom"] { transform: scale(.7) }

/* Stagger (overridden below with 80ms) */

/* --- Hero --- */
.h-in {
  opacity: 0; transform: translateY(28px);
  animation: hin 1.2s cubic-bezier(.16,1,.3,1) forwards;
}
.h-in:nth-child(2){animation-delay:.2s}
.h-in:nth-child(3){animation-delay:.4s}
.h-in:nth-child(4){animation-delay:.55s}
.h-in:nth-child(5){animation-delay:.7s}
.h-in:nth-child(6){animation-delay:.85s}
@keyframes hin{to{opacity:1;transform:none}}

/* --- Giant numbers --- */
.num {
  opacity: 0; transform: scale(.6);
  transition: opacity 1.2s cubic-bezier(.16,1,.3,1), transform 1.2s cubic-bezier(.16,1,.3,1);
}
.num.is { opacity: 1; transform: none }

/* --- Sticky nav --- */
.sn { transform: translateY(-100%); transition: transform .35s cubic-bezier(.16,1,.3,1) }
.sn.vis { transform: none }

/* --- Marquee --- */
.mq { display: flex; width: max-content; animation: mq 30s linear infinite }
.mq:hover { animation-play-state: paused }
@keyframes mq { to { transform: translateX(-50%) } }

/* --- CTA pulse --- */
.cp { animation: cp 2.5s ease 1.5s 1 }
@keyframes cp {
  0%,100%{box-shadow:0 0 0 0 rgba(233,32,79,0)}
  50%{box-shadow:0 0 0 16px rgba(233,32,79,.12)}
}

/* --- Apple-style image cards --- */
.img-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.img-card img {
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.img-card:hover img {
  transform: scale(1.05);
}

/* --- Feature slider --- */
.slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 24px 20px;
}
.slider-track::-webkit-scrollbar { display: none }
.slider-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--g1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.slider-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(30,30,30,.1);
}
@media (min-width:768px) { .slider-card { width: 380px } }

/* --- Sticky section (text scrolls, image stays) --- */
.sticky-section {
  position: relative;
}
.sticky-img {
  position: sticky;
  top: 80px;
  align-self: start;
}

/* --- Interactive tabs (Apple-style pill selector) --- */
.pill-tabs {
  display: flex;
  gap: 8px;
  background: var(--off);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
}
.pill-tab {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--g7);
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  background: transparent;
}
@media (min-width: 640px) {
  .pill-tab {
    padding: 8px 20px;
    font-size: 14px;
  }
}
.pill-tab.active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* --- Accordion --- */
.ac { max-height:0; overflow:hidden; transition: max-height .5s cubic-bezier(.16,1,.3,1) }
.ac.open { max-height: 500px }
.chv { transition: transform .3s ease }
.chv.rot { transform: rotate(180deg) }

/* --- Compare row --- */
.cr { transition: background .2s ease }
.cr:hover { background: rgba(61,61,58,.15) }

/* --- Section label --- */
.sl { font-size:13px; font-weight:500; letter-spacing:.08em; text-transform:uppercase; color:var(--cta) }

/* --- Floating badge --- */
.float-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}

/* --- Proof grid with parallax-free depth --- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.proof-grid > :nth-child(odd) { transform: translateY(20px) }
@media (max-width: 640px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr) }
}

/* --- Section spacing (mobile-first) --- */
.sec { padding: 64px 0 }
@media (min-width: 640px) { .sec { padding: 100px 0 } }
@media (min-width: 1024px) { .sec { padding: 140px 0 } }

/* --- Hero animated rings --- */
.hero-ring {
  position: absolute;
  will-change: transform, opacity;
}
@keyframes ring-pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%,-50%) scale(1.08); opacity: 0.4; }
}

/* --- Hero orbs (ambient) --- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

/* --- No scrollbar for slider --- */
.no-scrollbar::-webkit-scrollbar { display: none }
.no-scrollbar { scrollbar-width: none }

/* --- Check cards --- */
[data-check] { cursor: pointer; user-select: none; }
[data-check].checked {
  border-color: #0F766E !important;
  background: rgba(233,32,79,0.03);
  box-shadow: 0 0 0 1px rgba(233,32,79,0.15);
}
[data-check].checked .check-icon {
  background: rgba(233,32,79,0.12);
}
[data-check] .check-icon i { transition: color 0.2s ease; }
[data-check].checked .check-icon i { color: #0F766E !important; }
[data-check].checked .check-path { stroke-dashoffset: 0 !important; }

/* --- Materials Accordion (IA Lab style) --- */
.mat-acc {
  display: flex;
  gap: 8px;
  width: 100%;
}
.mat-acc-item {
  position: relative;
  flex: 0 0 60px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(.4, 0, .2, 1);
}
.mat-acc-item.active {
  flex: 1 1 0;
}
.mat-acc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
}
.mat-acc-item.active .mat-acc-img {
  transform: scale(1.02);
}
.mat-acc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.85) 0%, rgba(30,30,30,0.2) 40%, transparent 70%);
  transition: opacity 0.4s ease;
}
.mat-acc-item:not(.active) .mat-acc-overlay {
  background: rgba(30,30,30,0.55);
}
.mat-acc-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: opacity 0.3s ease 0.15s, transform 0.4s ease 0.1s;
}
.mat-acc-item:not(.active) .mat-acc-label {
  opacity: 0;
  transform: translateY(10px);
  transition-delay: 0s;
}
.mat-acc-number {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cta);
  text-transform: uppercase;
}
.mat-acc-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}
.mat-acc-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 360px;
  margin-top: 4px;
}
/* Collapsed state: show number + title vertical */
.mat-acc-item:not(.active)::after {
  content: attr(data-mat-num) " · " attr(data-mat-title);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
/* Collapsed hover: brighten to signal clickable */
.mat-acc-item:not(.active):hover {
  flex: 0 0 72px;
}
.mat-acc-item:not(.active):hover .mat-acc-overlay {
  background: rgba(30,30,30,0.40);
}
.mat-acc-item:not(.active):hover::after {
  color: rgba(255,255,255,0.95);
}
/* Mobile: stack vertically */
@media (max-width: 640px) {
  .mat-acc {
    flex-direction: column;
    height: auto !important;
  }
  .mat-acc-item {
    flex: 0 0 56px;
    border-radius: 16px;
  }
  .mat-acc-item.active {
    flex: 0 0 280px;
  }
  .mat-acc-item:not(.active)::after {
    writing-mode: horizontal-tb;
    bottom: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .mat-acc-item:not(.active):hover {
    flex: 0 0 64px;
  }
}

/* --- Mobile-first touch targets & accessibility --- */
@media (max-width: 640px) {
  /* Ensure min 44px touch targets */
  button, a, [data-acc], [data-check], [data-mat-item] {
    min-height: 44px;
  }
  /* Better tap feedback */
  [data-check], [data-mat-item], .pill-tab, [data-acc] {
    -webkit-tap-highlight-color: rgba(233,32,79,0.1);
  }
  /* Sticky nav mobile */
  .sn .max-w-6xl { padding-left: 16px; padding-right: 16px; }
  /* Hero mobile adjustments */
  #hero { min-height: 100svh; }
  /* Proof grid mobile: 2 cols tight */
  .proof-grid { gap: 6px; }
  /* FAQ mobile full-width */
  .lg\\:grid-cols-3 { display: block; }
}

/* Focus visible for keyboard navigation */
a:focus-visible, button:focus-visible, [data-check]:focus-visible, [data-mat-item]:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Skip to content link (accessibility) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 8px 16px;
  background: var(--cta);
  color: #fff;
  font-size: 14px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Section label legibility fix — ensure readable on all backgrounds */
.sl-light {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cta);
  background: rgba(15,118,110,0.08);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* --- Apple clip reveal --- */
[data-r="clip"] {
  clip-path: inset(6%);
  opacity: 0;
  transition: clip-path 1.4s cubic-bezier(.16,1,.3,1), opacity 0.8s ease;
}
[data-r="clip"].is { clip-path: inset(0); opacity: 1; }

/* --- Price reveal animation --- */
.price-num {
  color: var(--g3);
  transform: scale(0.7);
  opacity: 0;
  transition: transform 1s cubic-bezier(.16,1,.3,1), opacity 0.6s ease, color 0.6s ease 0.4s;
}
.price-num.is {
  color: var(--cta);
  transform: scale(1);
  opacity: 1;
}
/* Price in closing (white version) */
.price-num-w {
  color: rgba(255,255,255,0.2);
  transform: scale(0.7);
  opacity: 0;
  transition: transform 1s cubic-bezier(.16,1,.3,1), opacity 0.6s ease, color 0.6s ease 0.4s;
}
.price-num-w.is {
  color: #fff;
  transform: scale(1);
  opacity: 1;
}

/* --- Flip card (Antes/Depois) --- */
.flip-card {
  perspective: 1000px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.flip-card-inner {
  position: relative;
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.flip-card-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
}
.flip-hint {
  animation: flip-hint 2s ease 2s 1;
}
@keyframes flip-hint {
  0%,100% { transform: rotateY(0); }
  25% { transform: rotateY(15deg); }
  50% { transform: rotateY(0); }
}

/* --- Section transition gradient (light→dark) --- */
.sec-fade-dark {
  height: 80px;
  background: linear-gradient(to bottom, var(--off) 0%, var(--black) 100%);
}
.sec-fade-dark-from-white {
  height: 80px;
  background: linear-gradient(to bottom, var(--white) 0%, var(--black) 100%);
}
.sec-fade-light {
  height: 80px;
  background: linear-gradient(to bottom, var(--black) 0%, var(--white) 100%);
}
.sec-fade-light-off {
  height: 80px;
  background: linear-gradient(to bottom, var(--black) 0%, var(--off) 100%);
}

/* --- Hover/touch polish --- */
[data-acc]:hover { background: rgba(0,0,0,0.02); }
[data-check]:hover:not(.checked) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30,30,30,0.08);
}
.pill-tab { transition: all .4s cubic-bezier(.16,1,.3,1); }
footer a { position: relative; }
footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.4);
  transition: width 0.3s ease;
}
footer a:hover::after { width: 100%; }

/* --- Gallery/museum section --- */
.sec-gallery {
  padding: 100px 0;
  background: var(--black);
}
@media (min-width: 640px) { .sec-gallery { padding: 140px 0; } }
@media (min-width: 1024px) { .sec-gallery { padding: 200px 0; } }

/* --- Sticky scroll (desktop only) --- */
@media (min-width: 1024px) {
  .sticky-panel {
    position: sticky;
    top: 80px;
    align-self: start;
  }
}

/* Stagger refinement */
[data-s] > * { transition-delay: calc(var(--i,0) * 80ms) }

/* --- Image Comparison Slider (Mão na Massa) --- */
.img-compare {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: col-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.img-compare img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.img-compare-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
}
.img-compare-overlay img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.img-compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.img-compare-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.img-compare-grip::before,
.img-compare-grip::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
}
.img-compare-grip::before {
  border-width: 6px 8px 6px 0;
  border-color: transparent var(--g7) transparent transparent;
  left: 8px;
}
.img-compare-grip::after {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--g7);
  right: 8px;
}
.img-compare-label {
  position: absolute;
  top: 16px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
  pointer-events: none;
}
.img-compare-label--left {
  left: 16px;
  background: rgba(30,30,30,0.7);
  color: #fff;
  backdrop-filter: blur(4px);
}
.img-compare-label--right {
  right: 16px;
  background: rgba(255,255,255,0.9);
  color: var(--black);
  backdrop-filter: blur(4px);
}

/* --- Pillar Blocks (3 Pilares: Organização, Processo, IA) --- */

/* G4 Chart: continuous animated line */
.g4-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 2.5s cubic-bezier(.16,1,.3,1);
}
.is .g4-line { stroke-dashoffset: 0; }
.g4-stable-line { transition: opacity 0.8s ease 1.2s; }
.g4-growth-line { transition: opacity 0.8s ease 1.8s; }
.is .g4-stable-line { opacity: 1 !important; }
.is .g4-growth-line { opacity: 1 !important; }

/* Process phase cards */
.process-phase {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.is .process-phase {
  opacity: 1;
  transform: none;
}

/* IA automation bars */
.ia-bar-fill {
  width: 0;
  transition: width 1s cubic-bezier(.16,1,.3,1);
}
.ia-bar-pct {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.is .ia-bar-pct { opacity: 1; }

/* --- Flowchart Mockup (Mão na Massa - Processo) --- */
.flowchart-mockup {
  background: var(--white);
  border: 1.5px solid var(--g1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(30,30,30,.06);
}
.flowchart-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--off);
  border-bottom: 1px solid var(--g1);
}
.flowchart-dots {
  display: flex;
  gap: 5px;
}
.flowchart-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--g3);
}
.flowchart-dots span:first-child { background: #EF4444; }
.flowchart-dots span:nth-child(2) { background: #F59E0B; }
.flowchart-dots span:last-child { background: #22C55E; }
.flowchart-title {
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  color: var(--g7);
  text-align: center;
}
.flowchart-badge {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(15,118,110,.1);
  color: var(--cta);
  padding: 3px 8px;
  border-radius: 100px;
}
.flowchart-body {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.fc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.fc-row--split {
  gap: 8px;
  flex-wrap: wrap;
}
.fc-connector {
  width: 2px;
  height: 20px;
  background: var(--g1);
  margin: 0 auto;
  opacity: 0;
  transition: opacity .3s ease;
}
.fc-connector.visible { opacity: 1; }
@media (max-width: 640px) {
  .flowchart-body { padding: 20px 12px; }
  .fc-hnode { padding: 5px 10px; font-size: 10px; }
  .fc-phase-label { font-size: 9px; padding: 4px 10px; }
}

/* --- WhatsApp Audio Bubble --- */
.wpp-audio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #DCF8C6;
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}
.wpp-audio.visible { opacity: 1; transform: none; }
.wpp-audio-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wpp-audio-play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cta);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: default;
}
.wpp-audio-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 28px;
}
.wpp-wave-bar {
  width: 3px;
  border-radius: 2px;
  background: rgba(15,118,110,.45);
}
.wpp-audio-time {
  font-size: 11px;
  color: rgba(0,0,0,.45);
  font-weight: 500;
  white-space: nowrap;
}

/* --- IA Processing Badge --- */
.fc-ia-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(15,118,110,.08);
  border: 1px solid rgba(15,118,110,.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--cta);
  opacity: 0;
  transform: scale(.9);
  transition: opacity .4s ease, transform .4s ease;
}
.fc-ia-badge.visible { opacity: 1; transform: none; }

/* --- Flowchart Grid (compact) --- */
.fc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.fc-grid.visible { opacity: 1; transform: none; }
@media (max-width: 480px) {
  .fc-grid { grid-template-columns: 1fr; }
}
.fc-phase-card {
  background: var(--white);
  border: 1.5px solid var(--g1);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}
.fc-phase-card.visible { opacity: 1; transform: none; }
.fc-phase-label {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  width: fit-content;
}
.fc-phase-label--teal { background: var(--cta); }
.fc-phase-label--rose { background: #E9204F; }
.fc-phase-label--amber { background: #F59E0B; }
.fc-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.fc-step {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  background: var(--off);
  padding: 4px 10px;
  border-radius: 6px;
}
.fc-step-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--g3);
  flex-shrink: 0;
}

/* --- Dashboard bar group double (Receita vs Custo) --- */
.dash-bar-group--double {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  height: 100%;
  justify-content: flex-end;
}
.dash-bar-group--double {
  flex-direction: row;
  align-items: flex-end;
  gap: 3px;
}
.dash-bar-group--double .dash-bar-fill { width: 48%; }
.dash-bar-group--double span { width: 100%; text-align: center; }

/* --- Laptop Mockup (Dashboard) --- */
.laptop-mockup {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .laptop-mockup { transform: scale(0.85); transform-origin: top center; margin-bottom: -40px; }
  .dash-sidebar { display: none !important; }
  .dash-main { padding: 10px !important; }
  .dash-metrics { grid-template-columns: repeat(2, 1fr) !important; }
}
.laptop-screen {
  background: var(--white);
  border: 2px solid var(--g1);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.laptop-base {
  height: 14px;
  background: linear-gradient(to bottom, var(--g1), var(--g3));
  border-radius: 0 0 6px 6px;
  max-width: 60%;
  margin: 0 auto;
  position: relative;
}
.laptop-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: -33.3%;
  right: -33.3%;
  height: 3px;
  background: var(--g1);
  border-radius: 0 0 3px 3px;
}

/* Dashboard UI inside laptop */
.dash-ui {
  display: flex;
  height: 100%;
}
.dash-sidebar {
  width: 48px;
  background: var(--off);
  border-right: 1px solid var(--g1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 12px;
}
.dash-sidebar-logo { margin-bottom: 8px; }
.dash-sidebar-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g5);
  cursor: default;
}
.dash-sidebar-item.active {
  background: rgba(15,118,110,.1);
  color: var(--cta);
}
.dash-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dash-metric-card {
  background: var(--off);
  border-radius: 10px;
  padding: 12px;
}
.dash-metric-highlight {
  border: 1.5px solid var(--cta);
  background: rgba(15,118,110,.04);
}
.dash-metric-label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--g5);
  margin-bottom: 4px;
}
.dash-metric-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.dash-metric-value--accent {
  color: var(--cta);
  font-size: 12px;
  font-weight: 600;
}
.dash-metric-bar {
  height: 4px;
  background: var(--g1);
  border-radius: 4px;
  overflow: hidden;
}
.dash-chart-area {
  flex: 1;
  background: var(--off);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.dash-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.dash-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding-bottom: 4px;
}
.dash-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.dash-bar-group span {
  font-size: 9px;
  color: var(--g5);
}
.dash-bar-fill {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: var(--g1);
  transition: height 1s cubic-bezier(.16,1,.3,1);
}
.dash-bar-fill--accent { background: var(--cta); }
.dash-bottom-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.dash-donut-card {
  background: var(--off);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  flex-shrink: 0;
}
.dash-donut { width: 60px; height: 60px; }
.dash-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--g7);
}

/* Mobile adjustments for laptop mockup */
@media (max-width: 640px) {
  .dash-sidebar { width: 36px; padding: 8px 0; gap: 8px; }
  .dash-sidebar-item { width: 24px; height: 24px; }
  .dash-sidebar-item i { width: 12px !important; height: 12px !important; }
  .dash-main { padding: 10px; gap: 8px; }
  .dash-metrics { grid-template-columns: 1fr; gap: 6px; }
  .dash-metric-card { padding: 8px; }
  .dash-metric-value { font-size: 14px; }
  .dash-bottom-row { flex-direction: column; }
  .dash-donut-card { width: 100%; flex-direction: row; gap: 10px; }
  .dash-donut { width: 48px; height: 48px; }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  .mq{animation:none}
  [data-r],.h-in,.num,.price-num,.price-num-w{opacity:1;transform:none;animation:none;color:inherit}
  .price-num.is{color:var(--cta)}
  .price-num-w.is{color:#fff}
  [data-r="clip"],[data-r="clip"].is{clip-path:none;opacity:1}
  .sn{transform:none}
  .proof-grid>:nth-child(odd){transform:none}
  .hero-orb,.hero-ring{animation:none}
  .flip-card-inner{transition:none}
  .flip-hint{animation:none}
  .img-compare-overlay{width:50%!important}
  .fc-connector,.wpp-audio,.fc-ia-badge,.fc-grid,.fc-phase-card{opacity:1;transform:none;transition:none}
}
