/* Motion utilities: centralize overlay/content animations and WebView-safe overrides */

/* Overlay fade */
.motion-overlay {
  transition: opacity var(--motion-dur, 200ms) var(--motion-ease, ease-out);
}
.motion-overlay-initial {
  opacity: 0;
}
.motion-overlay-active {
  opacity: 1;
}

/* Content fade + scale + translateY (modal/dialog) */
.motion-content {
  transition: opacity var(--motion-dur, 200ms) var(--motion-ease, ease-out), transform var(--motion-dur, 200ms) var(--motion-ease, ease-out);
  will-change: opacity, transform;
}
.motion-content-initial {
  opacity: 0;
  transform: translateY(0.5rem) scale(0.95); /* ~translate-y-2 scale-95 */
}
.motion-content-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Optional right sheet slide-in (future use) */
.motion-sheet {
  transition: opacity var(--motion-dur, 200ms) var(--motion-ease, ease-out), transform var(--motion-dur, 200ms) var(--motion-ease, ease-out);
  will-change: opacity, transform;
}
.motion-sheet-initial {
  opacity: 0;
  transform: translateX(1rem);
}
.motion-sheet-active {
  opacity: 1;
  transform: translateX(0);
}

/* WebView-safe mode: disable heavy transitions if needed */
.motion-off .motion-overlay,
.motion-off .motion-content,
.motion-off .motion-sheet {
  transition: none !important;
}

/* ===== New: Page-level motion and visual helpers ===== */

/* Scroll reveal (simple, WebView-safe) */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none !important;
  will-change: auto;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.motion-off [data-reveal]{ opacity:1; transform:none; transition:none !important; }

/* Allow per-element delay via CSS var set by script */
[data-reveal][style*="--reveal-delay"] {
  transition-delay: var(--reveal-delay);
}

/* Gradient text for impactful headlines */
.gradient-text {
  background-image: linear-gradient(90deg, var(--accent-blue), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero background blobs (soft, animated) */
.hero-bg { position: relative; }
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  width: 40rem; height: 40rem;
  filter: blur(80px);
  background: radial-gradient(closest-side, rgba(96,165,250,.45), transparent);
  animation: floatBlobA 6s ease-in-out infinite alternate;
}
.hero-bg::before { top: -10rem; left: -10rem; }
.hero-bg::after {
  bottom: -12rem; right: -8rem;
  background: radial-gradient(closest-side, rgba(167,139,250,.42), transparent);
  animation: floatBlobB 7s ease-in-out infinite alternate;
}
/* Controla amplitude de movimento/escala de forma responsiva */
.hero-bg { --blob-shift-x: 85px; --blob-shift-y: -70px; --blob-scale: 1.15; }

@keyframes floatBlobA {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(var(--blob-shift-x), var(--blob-shift-y)) scale(var(--blob-scale)); }
}
@keyframes floatBlobB {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(calc(var(--blob-shift-x) * -1), calc(var(--blob-shift-y) * 0.8)) scale(calc(var(--blob-scale) + 0.02)); }
}

@media (max-width: 640px) {
  .hero-bg { --blob-shift-x: 60px; --blob-shift-y: -45px; --blob-scale: 1.10; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg::before, .hero-bg::after { animation-duration: 12s; }
}

/* Hero pointer glow overlay (segue o cursor do usuário) */
.hero-bg .hero-pointer-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: var(--hero-pointer-opacity, 0);
  transition: opacity 320ms ease;
  background: radial-gradient(
    180px 180px at var(--px, -200px) var(--py, -200px),
    rgba(253, 224, 71, 0.22) 0%,
    rgba(253, 224, 71, 0.14) 40%,
    rgba(253, 224, 71, 0.08) 60%,
    transparent 75%
  );
  filter: saturate(1.02) blur(8px);
  mix-blend-mode: screen;
  will-change: opacity, background-position;
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .hero-bg .hero-pointer-overlay { display: none; }
}
/* Garantir que conteúdo do hero fique acima do overlay */
.hero-bg > * { position: relative; z-index: 3; }

/* Empilhamento de títulos: gradiente na frente, glow atrás */
.hero-title-stack { position: relative; }
.hero-title-main { position: relative; z-index: 3; }
.hero-title-glow { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-title-glow .glow-word { color: transparent; }
/* Cor do glow do overlay de título: ciano elétrico por padrão */
.hero-title-glow {
  --hero-glow-strong: rgba(167, 139, 250, 0.36);
  --hero-glow-soft: rgba(167, 139, 250, 0.20);
  --hero-glow-shadow: rgba(167, 139, 250, 0.72);
}

/* Glow por palavra no hero */
.glow-word { position: relative; display: inline; z-index: 0; }
.glow-word { color: inherit; cursor: pointer; transition: text-shadow 240ms ease, transform 240ms ease; }
.glow-word::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: calc(100% + 8px);
  height: calc(100% + 6px);
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: radial-gradient(closest-side,
    var(--hero-glow-strong, rgba(253, 224, 71, 0.34)),
    var(--hero-glow-soft, rgba(253, 224, 71, 0.18)) 40%,
    transparent 75%
  );
  filter: blur(6px);
  opacity: 0;
  transition: opacity 280ms ease, transform 280ms ease;
  mix-blend-mode: screen;
  z-index: -1;
  pointer-events: none;
}
.glow-word:hover::after,
.glow-word:focus-visible::after,
.glow-word.glow::after { opacity: 1; transform: translate(-50%, -50%) scale(1.035); }

/* Fallback de glow direto no texto (garante visibilidade mesmo sem pseudo-elemento) */
.glow-word:hover,
.glow-word.glow { text-shadow: 0 0 14px var(--hero-glow-shadow, rgba(253, 224, 71, 0.65)); transform: translateZ(0) scale(1.02); }


/* Icon sizing + float animation */
.icon-lg { width: 32px; height: 32px; }
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* CTA glow on hover */
.hover-glow { box-shadow: 0 0 30px rgba(96,165,250,.40); transition: box-shadow .2s ease, transform .2s ease; }
.hover-glow:hover { box-shadow: 0 0 42px rgba(96,165,250,.55); transform: translateY(-1px); }

/* Marquee (trusted by) */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 2rem; animation: marquee 20s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { flex: 0 0 auto; padding: .75rem 1rem; border: 1px solid rgba(255,255,255,.12); border-radius: 0.75rem; background: rgba(255,255,255,.06); color: #fff; }

/* Underline reveal for subheads */
.reveal-underline { position: relative; }
.reveal-underline::after { content: ""; position: absolute; left: 50%; bottom: -0.5rem; width: 0; height: 2px; background: linear-gradient(to right, var(--accent-blue), var(--accent)); transition: width .6s ease, left .6s ease; }
.reveal-underline.is-visible::after { width: 60%; left: 20%; }

/* ===== Unified panels: gradient + glass ===== */
.section-panel {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
}
.panel-hover { transition: transform .2s ease; }
.panel-hover:hover { transform: translateY(-2px) scale(1.01); }
.panel-accent::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; width: 80%; height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent));
  opacity: .35; pointer-events: none;
}

/* ===== Section tones: dedicated color styling for panels ===== */
/* Tons leves com alto contraste no dark; mantêm transparência para glass effect */
.section-panel.tone-tagline {
  background: linear-gradient(to bottom, rgba(59,130,246,0.08), rgba(147,197,253,0.06));
  border-color: rgba(59,130,246,0.28);
}
.section-panel.tone-trusted {
  background: linear-gradient(to bottom, rgba(148,163,184,0.08), rgba(148,163,184,0.04));
  border-color: rgba(148,163,184,0.22);
}
.section-panel.tone-benefits {
  background: linear-gradient(to bottom, rgba(20,184,166,0.10), rgba(96,165,250,0.06));
  border-color: rgba(20,184,166,0.35);
}
.section-panel.tone-how {
  background: linear-gradient(to bottom, rgba(245,158,11,0.10), rgba(96,165,250,0.05));
  border-color: rgba(245,158,11,0.32);
}
.section-panel.tone-demo {
  background: linear-gradient(to bottom, rgba(167,139,250,0.10), rgba(96,165,250,0.06));
  border-color: rgba(167,139,250,0.35);
}
.section-panel.tone-faq {
  background: linear-gradient(to bottom, rgba(148,163,184,0.10), rgba(148,163,184,0.06));
  border-color: rgba(148,163,184,0.30);
}
.section-panel.tone-pricing {
  background: linear-gradient(to bottom, rgba(13,18,32,0.80), rgba(10,15,26,0.80));
  border-color: rgba(255,255,255,0.12);
}

/* Aviso/Em breve (amber) */
.section-panel.tone-announce {
  background: linear-gradient(to bottom, rgba(245,158,11,0.10), rgba(253,230,138,0.06));
  border-color: rgba(245,158,11,0.35);
}
.panel-accent.tone-announce::before {
  background: linear-gradient(90deg, #f59e0b, #fb923c, #f472b6);
  opacity: .35;
}

/* Depoimentos dedicados (indigo/violet) */
.section-panel.tone-testimonials {
  background: linear-gradient(to bottom, rgba(99,102,241,0.10), rgba(167,139,250,0.06));
  border-color: rgba(99,102,241,0.30);
}
.panel-accent.tone-testimonials::before {
  background: linear-gradient(90deg, #a78bfa, #60a5fa, #93c5fd);
  opacity: .34;
}

/* ===== Rating stars ===== */
.stars { display: inline-flex; gap: 4px; align-items: center; }
.stars i, .stars svg { width: 16px; height: 16px; color: #facc15; filter: drop-shadow(0 0 2px rgba(250, 204, 21, 0.35)); transition: color 420ms ease, filter 420ms ease, transform 420ms ease; will-change: transform, filter; }
.stars svg, .stars .lucide { fill: currentColor; stroke: currentColor; }
.stars .glow i, .stars .glow svg { color: #fde047; filter: drop-shadow(0 0 10px rgba(253, 224, 71, 0.65)); transform: translateZ(0) scale(1.06); }
.stars.sm i, .stars.sm svg { width: 14px; height: 14px; }

/* Wrapper por estrela para partículas e hover */
.star-node { position: relative; display: inline-flex; width: 16px; height: 16px; align-items: center; justify-content: center; cursor: pointer; }
.star-node.sm { width: 14px; height: 14px; }

/* Partículas do brilho */
.star-particle { position: absolute; left: 50%; top: 50%; width: 4px; height: 4px; border-radius: 9999px; transform: translate(-50%, -50%); pointer-events: none; opacity: .85; background: radial-gradient(circle, #fffbe6 0%, #fde047 40%, #facc15 80%, transparent 100%); }
.star-particle.animate { animation: particle-burst var(--p-dur, 650ms) ease-out forwards; }
@keyframes particle-burst {
  0% { opacity: .85; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(.6); }
}

/* Partículas do hero (explodem a partir do cursor) */
.hero-particle {
  position: absolute;
  left: var(--px, 0px);
  top: var(--py, 0px);
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: .9;
  background: radial-gradient(circle, #fffbe6 0%, #fde047 40%, #facc15 80%, transparent 100%);
  filter: blur(.4px) drop-shadow(0 0 10px rgba(253, 224, 71, 0.55));
}
.hero-particle.animate { animation: hero-burst var(--p-dur, 780ms) ease-out forwards; }
@keyframes hero-burst {
  0% { opacity: .9; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx, 0px) * 2.8), calc(-50% + var(--dy, 0px) * 2.8)) scale(0.35); }
}

/* ===== Avatares (ícones) para depoimentos ===== */
.avatar { width: 40px; height: 40px; border-radius: 9999px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.16); box-shadow: inset 0 1px 8px rgba(0,0,0,.25), 0 6px 16px rgba(0,0,0,.25); }
.avatar i { width: 18px; height: 18px; color: #ffffff; opacity: .95; }
.avatar.sm { width: 32px; height: 32px; }
/* Variações sutis por perfil (gradientes discretos) */
.avatar.mic { background: linear-gradient(135deg, rgba(245,158,11,.35), rgba(250,204,21,.22)); border-color: rgba(245,158,11,.28); }
.avatar.film { background: linear-gradient(135deg, rgba(139,92,246,.34), rgba(99,102,241,.22)); border-color: rgba(99,102,241,.28); }
.avatar.pen-tool { background: linear-gradient(135deg, rgba(6,182,212,.34), rgba(59,130,246,.20)); border-color: rgba(6,182,212,.30); }
.avatar.camera { background: linear-gradient(135deg, rgba(244,63,94,.32), rgba(236,72,153,.22)); border-color: rgba(236,72,153,.28); }
.avatar.video { background: linear-gradient(135deg, rgba(16,185,129,.32), rgba(52,211,153,.20)); border-color: rgba(16,185,129,.28); }
.avatar.headphones { background: linear-gradient(135deg, rgba(148,163,184,.30), rgba(99,102,241,.18)); border-color: rgba(148,163,184,.26); }
.avatar.clapperboard { background: linear-gradient(135deg, rgba(96,165,250,.32), rgba(147,197,253,.20)); border-color: rgba(96,165,250,.28); }
.avatar.book { background: linear-gradient(135deg, rgba(250,204,21,.26), rgba(5,150,105,.18)); border-color: rgba(250,204,21,.26); }
.avatar.music { background: linear-gradient(135deg, rgba(236,72,153,.32), rgba(96,165,250,.20)); border-color: rgba(236,72,153,.28); }

/* Varie a linha de acento superior conforme o tom da seção */
.panel-accent.tone-benefits::before {
  background: linear-gradient(90deg, #22c55e, #14b8a6, #60a5fa);
  opacity: .35;
}
.panel-accent.tone-how::before {
  background: linear-gradient(90deg, #f59e0b, #f59e0b, #60a5fa);
  opacity: .35;
}
.panel-accent.tone-demo::before {
  background: linear-gradient(90deg, #a78bfa, #60a5fa, #f472b6);
  opacity: .38;
}
.panel-accent.tone-faq::before {
  background: linear-gradient(90deg, #94a3b8, #64748b, #94a3b8);
  opacity: .30;
}
.panel-accent.tone-pricing::before {
  background: linear-gradient(90deg, #60a5fa, #2563eb);
  opacity: .38;
}
.panel-accent.tone-trusted::before {
  background: linear-gradient(90deg, #94a3b8, #e2e8f0);
  opacity: .28;
}

/* ===== Section layout separation ===== */
.section-area {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-block: 0.75rem;
}
@media (min-width: 640px) {
  .section-area { margin-top: 2.5rem; margin-bottom: 2.5rem; }
}
@media (min-width: 1024px) {
  .section-area { margin-top: 3rem; margin-bottom: 3rem; }
}
.section-sep {
  height: 1px;
  margin: 1rem auto;
  max-width: 56rem;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.14), transparent);
  opacity: .6;
}
@media (min-width: 1024px) {
  .section-sep { margin: 1.25rem auto; }
}
.section-band {
  position: relative;
  border-radius: 1rem;
  background: linear-gradient(to bottom, rgba(11,15,26,.35), rgba(14,19,32,.25));
  border: 1px solid rgba(255,255,255,.08);
}
.section-band::before,
.section-band::after {
  content: "";
  position: absolute; left: 5%; width: 90%; height: 1px;
  background: linear-gradient(90deg, rgba(96,165,250,.33), rgba(139,92,246,.27));
}
.section-band::before { top: -1px; }
.section-band::after { bottom: -1px; }

/* ===== Morph sequence: roteiro → narração → clipes → download → pronto ===== */
.morph-seq {
  --morph-duration: 7s;
  --morph-size: 84px;
  position: relative;
  width: 240px;
  height: 200px;
  margin: 0 auto;
  perspective: 600px;
}
/* Variante grande para ocupar melhor a área disponível */
.morph-seq.morph-lg { --morph-size: 104px; width: 320px; height: 240px; }
.morph-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.86) translateY(8px) rotate(-3deg);
  transition: opacity 240ms ease, transform 240ms ease;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.35));
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  animation: morphIcon var(--morph-duration) ease-in-out infinite;
}
.morph-item svg, .morph-item i {
  width: var(--morph-size);
  height: var(--morph-size);
}
.morph-item.file { color: #ffffff; animation-delay: 0s; }
.morph-item.mic { color: #ffffff; animation-delay: 1.4s; }
.morph-item.film { color: #ffffff; animation-delay: 2.8s; }
.morph-item.download { color: #60a5fa; animation-delay: 4.2s; }
.morph-item.check { color: #22c55e; animation-delay: 5.6s; animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1); }

/* Halo suave por etapa */
.morph-item::before {
  content: "";
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0;
  mix-blend-mode: screen;
  animation: morphHalo var(--morph-duration) ease-in-out infinite;
}
.morph-item.file::before { background: radial-gradient(closest-side, rgba(96,165,250,.35), transparent); }
.morph-item.mic::before { background: radial-gradient(closest-side, rgba(167,139,250,.35), transparent); }
.morph-item.film::before { background: radial-gradient(closest-side, rgba(244,114,182,.35), transparent); }
.morph-item.download::before { background: radial-gradient(closest-side, rgba(96,165,250,.5), transparent); }
.morph-item.check::before { background: radial-gradient(closest-side, rgba(34,197,94,.55), transparent); }

/* Anel de destaque */
.morph-item::after {
  content: "";
  position: absolute;
  width: 108px; height: 108px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 0 0 0 rgba(255,255,255,.25);
  opacity: 0;
  animation: morphRing var(--morph-duration) ease-in-out infinite;
}

@keyframes morphIcon {
  0%   { opacity: 0; transform: scale(0.86) translateY(8px) rotate(-3deg); filter: drop-shadow(0 6px 16px rgba(0,0,0,.35)); }
  8%   { opacity: .85; transform: scale(0.98) translateY(2px) rotate(-1deg); }
  12%, 24% { opacity: 1; transform: scale(1) translateY(0) rotate(0deg); }
  28%  { opacity: .0; transform: scale(1.06) translateY(-10px) rotate(4deg); filter: drop-shadow(0 10px 22px rgba(0,0,0,.42)); }
  100% { opacity: 0; transform: scale(0.9) translateY(6px) rotate(0deg); }
}

@keyframes morphHalo {
  0% { opacity: 0; transform: scale(0.8); }
  12%, 24% { opacity: .6; transform: scale(1.1); }
  28% { opacity: 0; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(0.9); }
}

@keyframes morphRing {
  0% { opacity: 0; transform: scale(0.8); box-shadow: 0 0 0 0 rgba(255,255,255,.2); }
  12%, 24% { opacity: .8; transform: scale(1); box-shadow: 0 0 12px 2px rgba(255,255,255,.28); }
  28% { opacity: 0; transform: scale(1.15); box-shadow: 0 0 0 0 rgba(255,255,255,.2); }
  100% { opacity: 0; transform: scale(0.9); }
}

.morph-caption { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,.86); }
.morph-caption.morph-lg { font-size: 16px; letter-spacing: .2px; }
.morph-caption .arrow { color: rgba(255,255,255,.7); }
.morph-success-glow { filter: drop-shadow(0 0 22px rgba(34,197,94,.45)); }

.morph-rail {
  --morph-duration: 7s; /* garante escopo da duração para dot/fill/pointer */
  width: 240px;
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,.2), rgba(255,255,255,.06));
  margin: 16px auto 0;
  position: relative;
  border-radius: 2px;
  overflow: visible;
}
.morph-rail.morph-lg { width: 320px; }
.morph-pointer {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent));
  box-shadow: 0 0 0 2px rgba(255,255,255,.25), 0 6px 16px rgba(0,0,0,.35);
  transform: translate(-50%, -50%);
  animation: morphPointer var(--morph-duration) ease-in-out infinite;
  z-index: 2;
}
.morph-fill {
  position: absolute; left: 0; top: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent));
  border-radius: 2px;
  animation: morphFill var(--morph-duration) linear infinite;
}
.morph-dot {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.38);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: morphDotGlow var(--morph-duration) linear infinite;
}
:root .morph-dot:nth-child(2){ left: 0%;  animation-delay: 0s; }
:root .morph-dot:nth-child(3){ left: 25%; animation-delay: 1.4s; }
:root .morph-dot:nth-child(4){ left: 50%; animation-delay: 2.8s; }
:root .morph-dot:nth-child(5){ left: 75%; animation-delay: 4.2s; }
:root .morph-dot:nth-child(6){ left: 100%; animation-delay: 5.6s; }

@keyframes morphPointer {
  0%   { left: 0%;   transform: translate(-50%, -50%) scale(.9); }
  12%  { left: 0%;   transform: translate(-50%, -50%) scale(1.05); }
  20%  { left: 0%; }
  22%  { left: 25%;  transform: translate(-50%, -50%) scale(1.05); }
  40%  { left: 25%; }
  42%  { left: 50%;  transform: translate(-50%, -50%) scale(1.05); }
  60%  { left: 50%; }
  62%  { left: 75%;  transform: translate(-50%, -50%) scale(1.05); }
  80%  { left: 75%; }
  82%  { left: 100%; transform: translate(-50%, -50%) scale(1.1); }
  100% { left: 100%; transform: translate(-50%, -50%) scale(1.0); }
}

/* Variante com movimento mais acentuado “up” */
.morph-seq[data-up] .morph-item { animation-name: morphIconUp; }
@keyframes morphIconUp {
  0%   { opacity: 0; transform: translateY(22px) scale(0.92) rotate(-4deg); filter: drop-shadow(0 6px 16px rgba(0,0,0,.35)); }
  8%   { opacity: .85; transform: translateY(8px) scale(0.98) rotate(-2deg); }
  12%, 20% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
  24%  { opacity: 1; transform: translateY(-6px) scale(1.02) rotate(0.5deg); }
  28%  { opacity: 0; transform: translateY(-14px) scale(1.06) rotate(3deg); filter: drop-shadow(0 10px 22px rgba(0,0,0,.42)); }
  100% { opacity: 0; transform: translateY(6px) scale(0.94) rotate(0deg); }
}

@keyframes morphFill {
  0%  { width: 0%; }
  31% { width: 0%; }
  32% { width: 25%; }
  51% { width: 25%; }
  52% { width: 50%; }
  71% { width: 50%; }
  72% { width: 75%; }
  91% { width: 75%; }
  92% { width: 100%; }
  100% { width: 100%; }
}

@keyframes morphDot {
  0% { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(0.9); }
  15%, 25% { background: rgba(255,255,255,.95); transform: translateY(-50%) scale(1.25); }
  35% { background: rgba(255,255,255,.4); transform: translateY(-50%) scale(1.05); }
  100% { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(0.92); }
}

@keyframes morphDotGlow {
  0%   { background: rgba(255,255,255,.38); box-shadow: none; transform: translateY(-50%) scale(.94); }
  12%  { background: rgba(255,255,255,.95); box-shadow: 0 0 12px 3px rgba(255,255,255,.45); transform: translateY(-50%) scale(1.25); }
  24%  { background: rgba(255,255,255,.55); box-shadow: 0 0 0 0 rgba(255,255,255,0); transform: translateY(-50%) scale(1.0); }
  100% { background: rgba(255,255,255,.38); box-shadow: none; transform: translateY(-50%) scale(.94); }
}

/* Rodar a sequência uma única vez quando necessário */
.morph-seq[data-morph-once] .morph-item,
.morph-seq[data-morph-once] .morph-item::before,
.morph-seq[data-morph-once] .morph-item::after,
.morph-seq[data-morph-once] .morph-dot,
.morph-seq[data-morph-once] .morph-fill {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

/* Rolagem suave para âncoras (ex.: #planos) */
html { scroll-behavior: smooth; }
.hero-waves { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.hero-waves svg { position: absolute; left: 0; bottom: -12%; width: 200%; height: 60%; }
.hero-waves .wave-back { filter: blur(8px); opacity: .18; animation: waveMoveBack 44s linear infinite; }
.hero-waves .wave-mid { filter: blur(6px); opacity: .22; animation: waveMoveMid 32s linear infinite; }
.hero-waves .wave-front { filter: blur(4px); opacity: .28; animation: waveMoveFront 22s linear infinite; }
@keyframes waveMoveFront { from { transform: translateX(0); } to { transform: translateX(-25%); } }
@keyframes waveMoveMid { from { transform: translateX(0); } to { transform: translateX(-18%); } }
@keyframes waveMoveBack { from { transform: translateX(0); } to { transform: translateX(-12%); } }
@media (prefers-reduced-motion: reduce) { .hero-waves .wave-back, .hero-waves .wave-mid, .hero-waves .wave-front { animation: none; } }
/* removed page-enter animation */
