/* Mesmo desenho e movimento dos CTAs do modelo01-oficinas. */
.unified-cta, .action.unified-cta {
  font-family: "Elms Sans", sans-serif;
  font-size: .9rem;
  font-weight: 300;
  text-decoration: none;
  color: #fff;
  background: var(--accent, #850216);
  padding: .35rem .35rem .35rem 1.4rem;
  border: 0;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: .8rem;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease, background .3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  line-height: 1;
  letter-spacing: -.01em;
  cursor: pointer;
  height: auto;
  min-height: 44px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: ctaGlowPulse 3.6s ease-in-out infinite;
}
@keyframes ctaGlowPulse {
  0%, 100% { filter: brightness(1); box-shadow: inset 0 0 0 #ffffff00, 0 0 0 #85021600; }
  50% { filter: brightness(1.045); box-shadow: inset 0 0 14px #ffffff1f, 0 0 14px #8502162e; }
}
.unified-cta:hover, .action.unified-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #8502164d;
  background: var(--accent);
  color: #fff;
  animation-play-state: paused;
}
.unified-cta .cta-icon-circle {
  order: 1;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: var(--accent, #850216);
  font-size: 1.05rem;
  font-weight: bold;
}
.unified-cta .cta-icon-circle svg, .unified-cta:hover .cta-icon-circle svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  padding: 0;
  color: var(--accent, #850216);
  transform: none;
  animation: arrowNudge 5s infinite cubic-bezier(.25, 1, .5, 1);
}
@keyframes arrowNudge {
  0%, 90%, 100% { transform: translate(0, 0); }
  92%, 96% { transform: translate(3px, -3px); }
  94% { transform: translate(0, 0); }
}
.unified-cta::after, .whatsapp-float::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 45%;
  height: 100%;
  background: linear-gradient(to right, #ffffff00 0%, #ffffff61 50%, #ffffff00 100%);
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
  animation: ctaShine 8.5s infinite ease-in-out;
}
@keyframes ctaShine { 0% { left: -120%; } 15%, 100% { left: 150%; } }
.unified-cta:disabled { opacity: .5; cursor: not-allowed; animation: none; }
.unified-cta:disabled:hover { transform: none; box-shadow: none; background: var(--accent, #850216); }
