/* ============================================================
   Ilustrações orgânicas — linhas e ondas
   Usadas sutilmente em transições entre seções
   ============================================================ */

.flow {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
  opacity: 0.55;
}

@keyframes flowDraw {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}

.flow path {
  fill: none;
  stroke: var(--detail);
  stroke-width: 1;
  stroke-linecap: round;
}

.flow.is-hidden path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.flow.in path {
  stroke-dashoffset: 0 !important;
  animation: flowDraw 2.4s var(--ease-out);
}

.flow--center {
  margin: var(--space-5) auto;
}

.flow--terracotta path { stroke: var(--terracotta); opacity: 0.7; }
.flow--sage path { stroke: var(--sage); }

/* Marca d'água editorial — número de seção */
.section-marker {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 3rem;
}

.section-marker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--detail);
  display: block;
}
